@media screen {
	:root {
	--display-width: 940px;
	--menu-width: 170px;
	--tools-width: 250px;
	--header-height: 45px;

	--font-main: 16px;
	--font-title: 20px;
	--font-subtitle: 18px;
	--font-notice: 14px;
	}
}

@media screen and (max-width:768px) and (orientation:landscape) {
	:root {
	--display-width: 100%; 
	--menu-width: 170px;
	--tools-width: 250px;
	--header-height: 45px;
	
	--font-main: 14px;
	--font-title: 18px;
	--font-subtitle: 16px;
	--font-notice: 12px;
	}
}

@media screen and (max-width:940px) and (min-width:768px) and (orientation:landscape) {
	:root {
	--display-width: 768px; 
	--menu-width: 170px;
	--tools-width: 250px;
	--header-height: 45px;
	
	--font-main: 14px;
	--font-title: 18px;
	--font-subtitle: 16px;
	--font-notice: 12px;
	}
}

@media screen and (max-width:1024px) and (min-width:940px) and (orientation:landscape) {
	:root {
	--display-width: 940px; 
	--menu-width: 170px;
	--tools-width: 250px;
	--header-height: 45px;
	
	--font-main: 14px;
	--font-title: 18px;
	--font-subtitle: 16px;
	--font-notice: 12px;
	}
}

@media screen and (min-width:1024px) and (orientation:landscape) {
	:root {
	--display-width: 1024px; 
	--menu-width: 170px;
	--tools-width: 250px;
	--header-height: 45px;
	
	--font-main: 14px;
	--font-title: 18px;
	--font-subtitle: 16px;
	--font-notice: 12px;
	}
}

:root {
	--font-family: 'Montserrat';
	--color-main:#48038c;
	--color-main-light-100: #e1bbe6;
	--color-addit: #86059C;
	--color-menu: #023342;
	--color-contrast: white;
	--color-background-main: #F8F8Ff;
	--color-background-input: #f6f6f6;
	--color-gray-darkest: #1c1c1c;
	--color-gray-dark: #5e5e5e;
	--color-gray-light: #6B606B;
	--color-gray-lightest: #e3e3e3;
	--color-background-modalnav: #C1DEE3;
	--color-modalnav-active: #FFFFFF;
	--color-modalnav: #F2F3F4;
}

* {
    font-family: var(--font-family);
    text-shadow: none!important;
    outline: 0!important
}

::-webkit-scrollbar {
	width: 7px;
}
::-webkit-scrollbar-track {
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    /* background-color: var(--color-gray-light); */
    /* background: -webkit-linear-gradient(0deg,#7773c6,#9d6cc0,#bd64b2); */ /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(0deg,#7773c6,#9d6cc0,#bd64b2); */ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: var(--color-main);
}


/*ÃƒÂÃ‚Â­ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â¸*/
 
.emoji {
    display: inline-block;
    width: 22px !important;
    height: 22px !important;
    margin-right: 4px !important;
    float: none !important;
    border-radius: 0 !important;
    vertical-align: middle;
}

/*ÃƒÂÃ…â€œÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾*/

#overlay {
	visibility:hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 55000;
	overflow: auto;
	opacity: 0;
	transition: opacity 0.3s ease-in 0s;
}

#modalwindow {
	position: absolute;
	background-color: white;
	padding: 0px;
	display: inline-block;
	z-index: 4;
	width: auto;
	max-width: calc(var(--display-width) - 40px);
	max-height: calc(var(--display-height) - 40px);
	box-sizing: border-box;
	border-radius: 15px !important;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 3px;
}
::-webkit-scrollbar-track {
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    /* background-color: var(--color-gray-light); */
    /* background: -webkit-linear-gradient(0deg,#7773c6,#9d6cc0,#bd64b2); */ /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(0deg,#7773c6,#9d6cc0,#bd64b2); */ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: var(--color-gray-lightest);
}

/**/

input, textarea, [contenteditable] {
	outline:none;
}

[contenteditable][placeholder]:empty:before {
	content: attr(placeholder);
	color: #999; 
}
[contenteditable][placeholder]:empty:focus:before {
	content: '';
}


html {
	background-color: var(--color-background-main);
}

body {
	margin: 0;
	position: relative;
}

a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
    text-decoration-color:white;
    color: var(--color-menu);
}

button {
	outline: none !important;
}

.container {
	width: 100%;
	text-align: center;
	overflow-x: hidden;
	margin: auto;
	padding: 0px;
	max-width: var(--display-width);
	color: black;
	font-family: var(--font-family);
	margin-top: 65px;
}

div {
	width: 100%;
	box-sizing: border-box;
}

/*ÃƒÂÃ‚Â¨ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°*/
#header-parent {
    padding: 10px 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 6px -4px rgb(0 0 0 / 20%);
    position: fixed;
    top: 0;
    z-index: 10000;
}

#header {
	height: var(--header-height);
	font-size: var(--font-subtitle);
	color: white;
	max-width: var(--display-width);
	margin: auto;
}

.logo {
    display: inline-block;
    height: 100%;
    width: auto;
    margin-left: 13px;
}

.logo img {
    height: 100%;
}

#header>a {
	display:inline-block;
	float:right;
	margin: 0 13px;
	height: var(--header-height);
	text-align: center;
}

#header>a>img {
	height: 100%;
	width: auto;
	border-radius: 100%;
}

#header>a>span {
	text-decoration:none;
	color: black;
	font-size: 13px;
	vertical-align: top;
}

/*ÃƒÂÃ…â€œÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã…Â½*/

nav#menu {
	position: sticky;
	top: 20px;
	box-sizing: border-box;
	width: auto;
	display: inline-block;
	float: left;
	margin-top: 20px;
	margin-right: 20px;
	width: var(--menu-width);
}

.top-menu {
	margin:0;
	list-style:
	none;
	font-size: var(--font-main);
	font-family: var(--font-family);
	text-align:
	center;
	padding-left: 10px;
	position: fixed;
	top: 85px;
}

.top-menu li {
	margin: 3px auto;
	padding: 10px 10px;
	padding-right: 30px;
	cursor:pointer;
	border-radius: 4px;
	position: relative;
}

.top-menu li:first-child {
	margin-top: 0px;
}

.top-menu li:after {
	content:" ";
	display:table;
	clear:both;
}

.top-menu li:hover {
    background-color: #E6F1FF;
}

.top-menu li>span {
	color: black;
	float:left;
	height: 20px;
}

.top-menu li>span>img {
	width: 20px;
	margin-right: 7px;
}

.top-menu li>span>span {
	vertical-align: top;
	line-height: 20px;
	font-size: 14px;
}

span.countnew {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
    padding: 0 7px;
    height: 20px;
    color: white;
    border-radius: 15px;
    line-height: 20px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px !important;
    background-color: #A60703;
    font-weight: bold;
}

/*ÃƒÂÃ…Â¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡*/

main#content {
	box-sizing:border-box;
	display:inline-block;
	width: calc(100% - var(--menu-width) - var(--tools-width) - 40px);
	max-width: 550px;
	margin-top:20px;
}

/*ÃƒÂÃ…Â¾ÃƒÂÃ‚Â¿Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¸*/

aside#tools {
	position: sticky;
    top: 20px;
	box-sizing:border-box;
	width:var(--tools-width);
	display:inline-block;
	float:right;
	margin-top:20px;
	margin-left:20px;
}

@media (max-width:1210px) {
	aside#tools {
		padding-right:20px;
	}
}

/*ÃƒÂÃ‹Å“ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¿Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â‚¬Â¹*/
select, input {
     outline: 0 !important;
}
/*ÃƒÂÃ‚Â§ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Â¹*/

input[type="checkbox"]:checked, 
input[type="checkbox"]:not(:checked), 
input[type="radio"]:checked, 
input[type="radio"]:not(:checked) 
{
    position: absolute;
    left: -9999px;
}

input[type="checkbox"]:checked + label, 
input[type="checkbox"]:not(:checked) + label, 
input[type="radio"]:checked + label, 
input[type="radio"]:not(:checked) + label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    font-size: 14px;
    cursor: pointer;
}

input[type="checkbox"]:checked + label:before, 
input[type="checkbox"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before, 
input[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

input[type="checkbox"]:checked + label:before, 
input[type="checkbox"]:not(:checked) + label:before {
    border-radius: 2px;
}

input[type="radio"]:checked + label:before, 
input[type="radio"]:not(:checked) + label:before {
    border-radius: 100%;
}

input[type="checkbox"]:checked + label:after, 
input[type="checkbox"]:not(:checked) + label:after, 
input[type="radio"]:checked + label:after, 
input[type="radio"]:not(:checked) + label:after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked + label:after, 
input[type="checkbox"]:not(:checked) + label:after {
    left: 3px;
    top: 4px;
    width: 10px;
    height: 5px;
    border-radius: 1px;
    border-left: 4px solid var(--color-addit);
    border-bottom: 4px solid var(--color-addit);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

input[type="radio"]:checked + label:after, 
input[type="radio"]:not(:checked) + label:after {
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--color-addit);
}

input[type="checkbox"]:not(:checked) + label:after, 
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after, 
input[type="radio"]:checked + label:after {
    opacity: 1;
}

span#tochoosenewsthemes {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    color: #86059c;
    margin-top: 25px;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
}

div#modalthemesheaderparent, div#newsthemesedit {
    position: fixed;
    top: calc(50% - 275px);
    left: calc(50% - 225px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 15px;
}

div#newsthemesedit-parent {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, .4);
}

div#newsthemesedit {
    z-index: 10000;
    padding: 25px;
    overflow-y: auto;
    text-align: left;
    max-width: 450px;
    height: 550px;
    border-radius: 15px;
}

div#newsthemesedit::-webkit-scrollbar {
	width: 0px;
}

div#modalthemesheaderparent {
    width: 450px;
    height: 107px;
    padding: 17px;
    z-index: 1000000;
}

#modalthemes {
    margin-top: 82px;
}

div#toclosethemesparameters, div#toinfothemesparameters {
    display: inline-block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 17px;
    top: 22px;
    cursor: pointer;
    z-index: 10000;
}
div#toinfothemesparameters {
    right: 52px;
}
div#toclosethemesparameters>img, div#toinfothemesparameters>img {
    width: 25px;
    height: 25px;
}
.themesmodalsubheader {
    font-weight: 700;
    margin-bottom: 11px;
    text-align: left;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 35px;
    font-size: 18px;
}
.newsthemeeditlist, span.newsthemeeditinterest, span.newsthemeeditsubject {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 7px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    border-radius: 4px;
    opacity: .6;
    cursor: pointer;
}

.newsthemeeditlist-selected, span.newsthemeeditinterest-selected, span.newsthemeeditsubject-selected {
    opacity: 1;
}

span.newsthemeeditsubject {
    background-color: #4673F0;
}

span.newsthemeeditinterest {
    background-color: #754ee3;
}

span.newsthemeeditlist {
    background-color: #b3289f;
}

div#newsthemesshow:not(:empty) {
    display: inline-block;
    margin-top: 10px;
    text-align: left
}

.newsthemesshow-item-interest, .newsthemesshow-item-list, .newsthemesshow-item-subject {
    display: inline-block;
    width: auto;
    font-size: 14px;
    line-height: 18px;
    height: 18px;
    color: #fff;
    padding: 7px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    border-radius: 4px
}

.newsthemesshow-item-list {
    background-color: #b3289f
}

.newsthemesshow-item-interest {
    background-color: #754ee3
}

.newsthemesshow-item-subject {
    background-color: #4673F0;
}

.newsthemesshow-item-interest>span, .newsthemesshow-item-list>span, .newsthemesshow-item-subject>span {
    line-height: 18px;
    display: inline-block;
    vertical-align: top
}

.newsthemesshow-item-delete {
    display: inline-block;
    width: auto;
    height: 18px;
    margin-left: 10px;
    padding-top: 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
}

.newsthemesshow-item-delete>img {
    width: 14px
}

.tippy-box {
    margin: auto
}

.tippy-content {
    width: auto
}

.tippy-content .newsthemesshow-item-list {
    margin-top: 10px
}

.noty_layout {
    -webkit-filter: none!important;
            filter: none!important;
    z-index: 99999999!important
}

div#modalerror {
    background-color: #c41f33;
    font-family: var(--font-family);
    border-radius: 4px;
}

div#modalsuccess {
    background-color: #0CC434;
    font-family: var(--font-family);
    border-radius: 4px;
}

div#modalconfirm {
    background-color: #c41f33;
    font-family: var(--font-family);
    color: white;
    border-radius: 7.5px;
}

.btn-check {
    width: 100%;
    margin-bottom: 15px;
    background-color: transparent;
    border: none;
    color: white;
    text-align: left;
}

button#notdeleteusernew, button#deleteusernew, button#usereducationeditclosecancel, button#usereducationeditcloseleave, button#deleteuseravatar, button#notdeleteuseravatar, button#notdeleteusercover, button#deleteusercover, button#notdeleteschoolcover, button#deleteschoolcover, button#notexiteditsubjects, button#exiteditsubjects, button#notdeletemessages, button#deletemessages, button#deleteachievementdecline, button#deleteachievementaccept, button#userinterestseditclosecancel, button#userinterestseditcloseleave, button#schoolorderdecline, button#schoolorderconfirm, #confirmfinishorderapply, #confirmfinishordercancel{
    display: inline-block;
    width: calc(50% - 7px);
    /* margin-top: 15px; */
    font-size: var(--font-main);
    color: white;
    font-weight: bold;
    background: inherit;
    border: none;
    cursor: pointer;
}

button#notdeleteusernew, button#usereducationeditclosecancel, button#notdeleteuseravatar, button#notdeleteusercover, button#notdeleteschoolcover, button#notexiteditsubjects, button#notdeletemessages, button#deleteachievementdecline, button#userinterestseditclosecancel, #confirmfinishordercancel {
    margin-right: 14px;
}

.noty_body {
    -webkit-box-sizing: border-box!important;
            box-sizing: border-box!important;
    border-radius: 4px
}

.modalerrortitle, .modalconfirmtitle, .newspage span#countnews, .modalsuccesstitle {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px
}

.newspage div#newcontent {
    max-width: 600px;
    margin: auto;
    margin-bottom: 7px;
    box-shadow: 0 0 10px 3px rgb(221 221 221);
}

.newspage .new {
    display: inline-block;
    margin: auto auto 7px;
    background-color: #fff;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #f6f6f6;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 0 10px 3px rgb(221 221 221);
}

.newspage .infonew {
    position: relative;
    height: 60px;
    margin-bottom: 10px
}

.newspage .authoravatar {
    display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    margin-right: 10px
}

.newspage .usertime {
    display: inline-block;
    width: auto;
    margin: 0;
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
    position: absolute;
    top: 50%
}

.newspage .usertime>span:nth-child(1) {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main);
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer
}

.newspage .usertime>span:nth-child(1)>a {
	color: var(--color-main) !important;
}

.newspage .usertime>span:nth-child(2) {
    font-size: 14px;
    color: #696969;
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer
}

.newspage .newheader {
    margin-bottom: 5px;
    text-align: center;
    font-size: 20px;
    color: #86059c;
    font-family: var(--font-family);
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    border: none;
}

.newspage .newtext {
    font-size: 16px;
    line-height: 20px;
    box-sizing: border-box;
    display: inline-block;
    border: none;
    resize: none;
    width: 100%;
}

.newspage .newtext[contenteditable] {
    min-height: 100px;
}

.newspage .editrow {
    display: none;
}

.newspage .new audio {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 15px;
}

.newspage .editattaching, .newspage .editoutputMulti {
    box-sizing: border-box;
    padding: 10px 10px 0;
}
.newspage .editoutputMulti {
    display: inline-block;
    height: auto;
}

.newspage #outputMulti>div, .newspage .editoutputMulti>div {
    width: auto;
    height: auto;
    display: inline-block;
    float: left;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    margin-bottom: 15px;
    max-height: 100px;
}

.newspage .editattachaudio, .newspage .editattachdocuments, .newspage .editattachphoto, .newspage .editattachvideo {
    height: 30px;
    width: 30px;
    border: 0;
    float: left;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
}

.newspage .editattachaudio>img, .newspage .editattachdocuments>img, .newspage .editattachphoto>img, .newspage .editattachvideo>img {
    height: 30px;
    width: 30px;
}

span.savenewdecline {
	margin-right: 10px;
}
span.savenewdecline, span.savenew {
    display: inline-block;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    width: calc(50% - 5px);
    line-height: 40px;
    padding: 0 20px;
    color: #fff;
    border: 0;
    background-color: var(--color-main);
    background-color: var(--color-main-light-100);
    color: var(--color-main);
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

#outputMulti>div.loaditem, .editoutputMulti>div.loaditem {
    display: inline-block;
    width: 100px;
    height: 100px;
    padding: 35px;
    box-sizing: border-box;
}

.loaditem img {
    width:30px;
    height: 30px;
}

.newspage .allnewsphoto {
    display: none
}

.newspage .newsimg {
    margin-top: 10px;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%
}

.newspage .toleft,.newspage .toright {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    z-index: 5;
    text-align: center;
    background-color: rgba(0,0,0,.1);
    cursor: pointer;
    -webkit-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    transition: background-color 1s ease;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: calc(50% - 15px);
    border-radius: 100%
}

.newspage .toleft {
    left: 5px;
    background-color: rgba(255,255,255,.6);
    color: #86059c
}

.newspage .toright {
    right: 5px;
    background-color: rgba(255,255,255,.6);
    color: #86059c
}
.newspage .newscontaining {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    position: relative
}

.newspage .newscontaining>img,.newspage .newscontaining>video {
	border-radius: 4px;
    display: inline-block;
    width: 100%;
    margin: auto
}

.newspage .newsmodalheadercontaining svg.closemodalnewsphotos, .newspage svg#closecomments {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    right: 10px;
    fill: #6b606b;
}

.newspage svg#closecomments {
    width: 25px;
    height: 25px;
    top: 10px;
    cursor: pointer;
}

.newspage div#newscomments {
    display: none;
    position: fixed;
    margin-bottom: 0;
    overflow-y: hidden;
    padding: 10px 10px 5px;
    box-sizing: border-box;
    top: calc(var(--display-height)/2 - 275px);
    left: calc(50% - 225px);
    -webkit-box-sizing: border-box;
    background-color: #fff;
    border-radius: 15px;
    z-index: 10000000;
    text-align: left;
    max-width: 450px;
    height: 550px;
}

.newspage div#commentsheader {
    color: #86059c;
    margin-bottom: 12px;
    box-sizing: border-box;
    margin-top: 25px;
    border-bottom: none;
    font-size: 18px;
    text-align: left;
    line-height: 35px;
    padding: 10px;
    padding-top: 0;
    font-weight: bold;
}

.newspage #countcomments {
    color: var(--color-gray-dark);
    font-weight: normal;
    display: inline-block;
    margin-left: 7px;
}

.newspage div#photonewscomments {
    display: inline-block;
    width: 100%;
    height: calc(100% - 162px);
    padding: 0 10px;
    box-sizing: border-box;
    overflow-y: auto;
}
#newscomments div#photonewscomments {
    margin-top: 0;
}
.newspage .writecommentblock {
    display: inline-block;
    width: 100%;
    height: 80px;
    box-sizing: border-box;
    padding-bottom: 15px;
    padding-top: 10px;
    border-top: 2px solid var(--color-background-input);
}

.newspage .textareacomment {
    height: 55px;
    box-sizing: border-box;
    width: calc(100% - 42px);
    padding: 7px 10px;
    background-color: var(--color-background-input);
    cursor: text;
    border-radius: 4px;
    display: inline-block;
    text-align: left;
    overflow-y: auto;
    resize: none;
    border: none;
}

.newspage img.tosendcomment {
    height: 25px;
    width: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 10px;
    cursor: pointer;
}

.photonewscomments-child {
    display: block;
    width: auto;
    max-width: 100%;
    padding: 5px 0px;
    box-sizing: border-box;
}
.infocomment {
	position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}
div#photonewscomments {
    margin-top: 22px;
}
.infocomment img {
	width: 45px;
    border-radius: 100%;
    margin-right: 10px;
    display: inline-block;
    float: left;
}
.commusertime {
    display: inline-block;
    width: 225px;
    margin: 0;
    height: 45px;
    float: left;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}
.commusertime>span:nth-child(1) {
	font-size: var(--font-notice);
    color: var(--color-addit);
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer;
}

.commusertime>span:nth-child(2) {
	font-size: calc(var(--font-notice) - 2px);
    color: dimgray;
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer;
}

.commtext {
	font-size: var(--font-notice);
    padding: 5px;
    padding-left: 55px;
    box-sizing: border-box;
    text-align: left;
}

.newspage .newsthemesview-item-list, .newspage .newsthemesview-item-interest, .newspage .newsthemesview-item-subject {
    display: inline-block;
    font-size: var(--font-notice);
    width: auto;
    line-height: 18px;
    height: 18px;
    color: #fff;
    padding: 7px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    border-radius: 4px;
}

.newspage .newsthemesview-item-list {
    background-color: #b3289f;
}

.newspage .newsthemesview-item-interest {
    background-color: #754ee3;
}


.newspage .newsthemesview-item-subject {
    background-color: #4673F0;
}

.newspage .newsthemesview {
    margin-top: 15px;
}

.newtext + .newsthemesview {
	margin-top: 0;
}

.newspage audio + .newsthemesview {
    margin-top: 0;
}

.newspage .like-active {
    width: 30px;
    height: 30px;
    background-image: url(/icons/active-like.png);
    background-size: 30px 30px;
    -webkit-transition: background 1s ease;
    -o-transition: background 1s ease;
    transition: background 1s ease;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px
}

.newspage .like-passive {
    background-image: url(/icons/passive-like.png);
    -webkit-transition: background 1s ease;
    -o-transition: background 1s ease;
    transition: background 1s ease;
    cursor: pointer
}

.newspage span.countcomments,.newspage span.counthearts {
    color: #696969;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
    height: 30px;
    font-weight: 700;
    margin-right: 20px;
    vertical-align: top
}

.newspage .like-passive,.newspage .commentsheader {
    display: inline-block;
    background-size: 30px 30px;
    height: 30px;
    width: 30px;
    margin-right: 5px;
    cursor: pointer;
}

.newspage .commentsheader {
    background-image: url(/icons/comments.png)
}

.newspage .newsactions {
    margin-top: 10px;
    border-top: 1px solid #f6f6f6;
    padding-top: 10px
}

.userintereststitle {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.userinterestssubtitle {
    font-size: 13px;
    display: inline-block;
    margin-bottom: 7px;
    text-align: center;
}

#editinterests .userintereststitle {
    display: inline-block !important;
}

#editinterests .userinterestssubtitle {
    display: inline-block !important;
}




/*ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚ÂµÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸*/

.politicsblock {
    text-align: left;
    font-size: 14px;
    line-height: 25px;
}

.row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.mb-4 {
    margin-bottom: 24px!important;
}

.col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
}

dl, h1, h2, h3, h4, h5, p {
    margin-top: 0;
}

.h1, .h2, .h3, .h4, .h5, h1, h5 {
    font-weight: 500;
}

.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4 {
    margin-bottom: 8px;
}

.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
    font-family: inherit;
    line-height: 1.1;
    color: inherit;
}

.h4, h4 {
    font-size: 23px;
}

h2, h3, h4 {
    font-weight: 300;
}

.h5, h5 {
    font-size: 19px;
}

h5 {
    display: block;
}

.descr, h5 {
    margin-bottom: 24px;
}

.ol {
    margin-bottom: 16px;
    padding-left: 28px;
}

div#installappmodalparent {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 10000;
}

div#installappmodal {
    background-color: white;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 30px);
    max-width: 500px;
    border-radius: 15px;
    display: inline-block;
    height: auto;
    box-sizing: border-box;
}

svg#closeinstallappmodal {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1000000;
    cursor: pointer;
}

#installappmodal span {
    display: inline-block;
    margin: 70px 15px 20px 15px;
    font-size: 15px;
}

button#toinstallapp {
    display: block;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 15px;
    border: none;
    padding: 7px 21px;
    font-weight: bold;
    color: white;
    background-color: #48038c;
    font-size: 15px;
    cursor: pointer;
}

img#installappmodalicon {
    width: 100px;
    height: 100px;
    display: block;
    top: -50px;
    left: calc(50% - 50px);
    background-size: 100px 100px;
    border: none;
    z-index: 10000000;
    position: absolute;
    background-color: white;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: var(--color-background-main);
}

span.messagetext ~ .messageimg {
    margin-top: 0;
}

.newsauthorblock {
    display: inline-block;
    width: 100%;
    padding: 10px;
    padding-left: 0;
    box-sizing: border-box;
    font-weight: bold;
    color: var(--color-main);
}

.newsauthorblock a {
	height: 24px;
	color: var(--color-main) !important;
	display: inline-block;
	line-height: 24px;
	vertical-align: top;
	font-size: 15px;
}

.newsauthorblock img {
	height: 24px;
}

.newsauthorblock span {
	display: inline-block;
	height: 24px;
	vertical-align: top;
	margin-left: 10px;
}



div#cropheadermodalparent {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1000000;
}
div#cropheadermodal {
    display: inline-block;
    /* margin-top: 55px; */
    /* margin-bottom: 55px; */
    border-radius: 15px;
    background: white;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    max-width: calc(var(--display-width) - 150px);
    width: auto;
    height: calc(var(--display-height) - 200px);
    margin-top: 100px;
    box-sizing: border-box;
}
#cropavatar, #cropheader {
    box-sizing: border-box;
    height: 50px;
    font-size: 16px;
    color: #86059c;
    font-weight: bold;
    line-height: 50px;
    text-align: left;
    padding-left: 20px;
}
svg#closecropmodal {
    position: absolute;
    top: 12.5px;
    right: 12.5px;
    cursor: pointer;
}
div#crop-contain {
    position: relative;
    display: flex;
}
#photo, div#crop-contain {
    max-width: 100%;
    max-height: calc(var(--display-height) - 100px);
}

#toapplyavatar, #toapplyheader {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    margin-top: -4px;
    line-height: 50px;
    font-weight: 700;
    background-color: #fff;
    color: var(--color-main);
    position: absolute;
    bottom: 0;
    cursor: pointer;
}
div#croploader {
    position: absolute;
    height: calc(var(--display-height) - 250px);
    width: 100%;
    z-index: 10000;
    background-color: white;
}
#croploader img {
    width: 70px;
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
}


div#complainmodalparent {
    position: fixed;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, .4);
    left: 0;
    top: 0;
    bottom: 0;
    padding: 20px;
    box-sizing: border-box;
}

div#complainmodal {
    position: fixed;
    z-index: 1000000;
    background-color: white;
    border-radius: 15px;
    left: calc(50% - 250px);
    padding: 20px;
    box-sizing: border-box;
    width: 500px;
    top: 50%;
    transform: translate(0, -50%);
}

div#complainmodalheader {
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 18px;
    line-height: 25px;
    font-weight: bold;
    color: var(--color-addit);
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

svg#closecomplainmodal {
    display: inline-block;
    position: absolute;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    border: none;
    fill: #6b606b;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

div#complainmodalcontent {
    text-align: left;
    height: calc(100% - 100px);
    padding: 0 15px;
    box-sizing: border-box;
    overflow-y: auto;
}

.choosecomplaint-checkbox {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    font-size: 15px;
}

textarea[name="complaintext"] {
    display: inline-block;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background-color: var(--color-background-input);
    padding: 7px 10px;
    resize: none;
    border-radius: 4px;
}

button#tosendcomplaint {
    height: 35px;
    margin-top: 20px;
    width: 100%;
    border-radius: 4px;
    border: none;
    color: var(--color-main);
    background-color: var(--color-main-light-100);
    font-weight: bold;
    cursor: pointer;
}

.switch-btn {
    display: inline-block;
    width: 52px;
    height: 16px;
    border-radius: 12px;
    background: #bfbfbf;
    z-index: 0;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms;
    margin-top: 5px;
    margin-left: 10px;
}

.switch-on {
    background: #fff;
    box-shadow: inset 0 0 10px 0 #999999;
}

.switch-btn::after {
    content: "";
    height: 24px;
    width: 24px;
    border-radius: 18px;
    background: #fff;
    top: -4px;
    left: -4px;
    transition-duration: 300ms;
    box-shadow: 0 0 10px 0 #999999;
    position: absolute;
    z-index: 1;
}

.switch-on::after {
    left: 30px;
    background: #ce8fd6;
}
.example-step-extra-class {
    border-width: 2px;
    border-style: ridge;
    border-color: var(--color-main);
}

button.shepherd-button {
    background-color: var(--color-main);
    border: 4px;
    color: white;
}

.step-higlight-class {}

input#searchnewthemeinput {
    border-radius: 4px;
    border: 1px solid var(--color-background-input);
    width: 100%;
    margin-bottom: 11px;
    box-sizing: border-box;
    padding: 5px 10px;
    font-size: calc(var(--font-notice) - 2px);
}

.shepherd-text {
    font-weight: bold;
    line-height: 27px !important;
    font-size: 17px !important;
}

.stepusername {
    color: var(--color-main);
}

.shepherd-header h3 {
    font-size: 20px !important;
    color: var(--color-main);
	font-weight: bold;
	font-style: italic;
}

.slick-track {
    display: flex !important;
    height: auto !important;
}

.slick-slide {
    height: auto !important;
}

div#profileblockmenu-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

div#profileblockmenu-avatar {
    display: inline-block;
    float: left;
    width: 70px;
    margin-bottom: -4px;
}

div#profileblockmenu {
    display: inline-block;
    width: calc(100% - 20px);
    margin-left: 10px;
    float: left;
    margin-bottom: 15px;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 15px;
    background: #ebe3f5;
}

#profileblockmenu > a {
    display: inline-block;
    width: calc(100% - 90px);
    float: right;
}

div#profileblockmenu-name {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}

div#profileblockmenu-progress {
	display: inline-block;
	height: 70px;
	margin-top: 7px;
	width: 100%;
	float: right;
	text-align: left;
	position: relative;
}
div#profileblockmenu-progress-line {
    display: inline-block;
    height: 10px;
    width: calc(100% - 64px);
    float: right;
    background: #d0408e;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 17px;
    margin-bottom: 17px;
    margin-right: 32px;
}

div#profileblockmenu-progress-line-gray {
    position: absolute;
    top: 0;
    right: 0;
    height: 10px;
    background-color: #c0c0c0;
}

div.profileblockmenu-progress-bage {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    z-index: 9;
    top: 5px;
    border-radius: 100%;
    color: white;
}
div#profileblockmenu-progress-bage-begin {
    background: #26b226;
}
div#profileblockmenu-progress-bage-end {
    right: 0;
    background: #008000;
}
div#profileblockmenu-progress-span {
    display: inline-block;
    font-size: 12px;
}
div#profileblockmenu-balance {
    display: inline-block;
    width: calc(100% - 90px);
    text-align: left;
    float: right;
    height: 30px;
    line-height: 30px;
}
div#profileblockmenu-balance-child {
    width: auto;
    display: inline-block;
    background: white;
    padding: 5px 12px;
    border-radius: 15px;
    height: 20px;
}

div#profileblockmenu-balance-child span {
    display: inline-block;
    margin-left: 12px;
    height: 20px;
    line-height: 20px;
    vertical-align: top;
    font-weight: bold;
}

div#profileblockmenu-balance-coin {
    background: url(/icons/coin.png);
    height: 20px;
    width: 20px;
    background-size: 100%;
    display: inline-block;
}

div#profileblockmenu-balance-info {
    display: inline-block;
    height: 30px;
    width: 30px;
    float: right;
    background: url(/icons/info.png);
    background-size: 100%;
    box-sizing: border-box;
    cursor: pointer;
}
div#profileblockmenu-balance-tasks {
    display: inline-block;
    width: 30px;
    height: 30px;
    float: right;
    background: url(/icons/tasks.png);
    background-size: 100%;
    margin-right: 10px;
    cursor: pointer;
}
div#profileblockmenu-taskslist {
    display: none;
}
ul#profileblockmenu-taskslist-ul {
    box-sizing: border-box;
    width: 100%;
    padding-left: 40px;
    list-style: none;
}
ul#profileblockmenu-taskslist-ul li {
    margin-bottom: 7px;
    line-height: 21px;
    position: relative;
}

ul#profileblockmenu-taskslist-ul li img {
    position: absolute;
    width: 19px;
    height: 19px;
    left: -28px;
    top: 2px;
    
}

ul#profileblockmenu-taskslist-ul li:before {
    content: '';
    height: 21px;
    width: 21px;
    border: 1px solid aliceblue;
    border-radius: 4px;
    display: inline-block;
    position: absolute;
    left: -30px;
}
div#setting-block-share {
    background-color: #e6f6e6;
    border-radius: 15px;
    width: calc(100% - 20px);
    padding: 15px 15px;
    box-sizing: border-box;
}
.setting-block-notice {
    font-size: 14px;
    margin-bottom: 20px;
    color: #64747e;
    text-align: left;
}
button#tocopyreferrallink {
    float: left;
    border: none;
    width: 32px;
    height: 32px;
    display: inline-block;
    background-color: initial;
    background-image: url(/icons/copy.png);
    background-size: 100%;
    cursor: pointer;
}
button#tosharereferral {
    width: 100%;
    border: none;
    padding: 8px 0;
    border-radius: 15px;
    background: #d0408e;
    color: white;
    font-weight: bold;
    height: 32px;
    width: calc(100% - 42px);
    display: inline-block;
    float: right;
    cursor: pointer;
}


#userheaderinfo div#profileblockmenu-progress {}

#userheaderinfo div#profileblockmenu-progress-line {
    width: 200px;
    float: left;
    margin-left: 32px;
    margin-right: 17px;
}

#userheaderinfo div#profileblockmenu-progress-span {
    width: auto;
    line-height: 44px;
    height: 44px;
}

div#usermaininfo-parent {}

div#contentrightblocks {
    width: calc(100% - 245px);
    display: inline-block;
    float: right;
}

.noty_buttons {
    box-sizing: border-box;
}