@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}
body {
    background-color: #1f1f1f;
    color: #cdcdd3;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin: 0;
    background-image: url(../images/background.jpg?v=1);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body.light {
    background-color: #fff;
	background-image: url(../images/background_white.jpg?v=1);
}
a {
    color: #fff;
    text-decoration: none;
}
.light a {
    color: #5f762f;
}
a:hover {
    text-decoration: underline;
}

.center {
    text-align: center;
}
.lower {
	text-transform: lowercase;
}
.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.hide {
	display: none;
}

hr {
	border-top: 1px solid #5c675e;
    width: 100%;
    margin: 10px 0;
}
.light hr {
    border-top: 1px solid #5c675e;
	border-top: 1px solid #ACCE0D;
}

.adv-block {
	padding: 10px 10px 0;
    background: #1f1f1f;
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
}
.light .adv-block {
    background: #fff;
	border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
}

.header {
    background: #1c341c;
    background: -moz-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1c341c), color-stop(100%, #334633));
    background: -webkit-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: -o-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: -ms-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: linear-gradient(to bottom, #1c341c 0%, #334633 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c341c', endColorstr='#334633',GradientType=0);
    border-bottom: 1px solid #515b3b;
}
.light .header {
	background: #9bc76c;
    background: -moz-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9bc76c), color-stop(100%, #c3e062));
    background: -webkit-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: -o-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: -ms-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: linear-gradient(to bottom, #9bc76c 0%, #c3e062 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bc76c', endColorstr='#c3e062',GradientType=0 );
    border-bottom: 1px solid #9dc86c;
}
.header__inner {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 2px;
}
.header__moon {
	background: url(../images/moon.png?v=1) no-repeat;
    background-size: contain;
    width: 66px;
    height: 67px;
    cursor: pointer;
    transition: all 1s;
}
.header__moon:hover {
	background: url(../images/moon_white.png?v=1) no-repeat;
    background-size: contain;
}
.light .header__moon:hover {
	background: url(../images/moon_dark.png?v=1) no-repeat;
    background-size: contain;
}
.header__menu {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: flex-end;
    height: 45px;
    align-items: center;
}
.header__menu_visible {
    display: flex !important;
}
.header__menu li {
    width: 92px;
    text-align: center;
}
.header__menu a, .header__menu span {
    color: #b0c0b2;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}
.light .header__menu a, .header__menu span {
    color: #617c42;
}
.header__menu-sub-menu-button {
    position: relative;
}
.header__menu-sub-menu-button::before {
    position: absolute;
    top: -27px;
    left: 0;
    width: 92px;
    height: 90px;
    content: '';
    background: url(../images/nav-bg.png?v=1) no-repeat;
    z-index: 3;
}
.light .header__menu-sub-menu-button::before {
    background: url(../images/nav-bg_white.png?v=1) no-repeat;
}
.header__sub-menu {
    position: absolute;
    top: 45px;
    left: -5px;
    background: rgba(31, 31, 31, 0.95);
    box-shadow: 1px 1px 5px #535f53;
    z-index: 2;
    padding: 36px;
    list-style-type: none;
    flex-wrap: wrap;
    gap: 10px;
    width: 622px;
    justify-content: flex-start;
    display: none;
    border-radius: 0 0 10px 10px;
}
.light .header__sub-menu {
	background: rgba(255, 255, 255, 0.95);    
    box-shadow: 1px 1px 5px #BDDC62;
}
.header__sub-menu li {
    width: 130px;
}
.header__sub-menu a {
    text-transform: none;
}
.header__menu-sub-menu-button:hover .header__sub-menu {
    display: flex;
}
.header__mobile-menu-button {
    display: none;
    width: 40px;
    height: 34px;
    background: #212722 url(../images/mobile-menu.svg?v=1) center no-repeat;
    background-size: 25px;
    border-radius: 5px;
    box-shadow: 1px 1px 0px 0px #1f1f1f, inset 1px 1px 1px #606661;
    cursor: pointer;
}
.light .header__mobile-menu-button {
	box-shadow: 1px 1px 0px 0px #95ad65, inset 1px 1px 1px #fff;
    background-color: #d9f1a7;
}

.logo {
    margin: 25px 0;
}
.logo__link {
    background: url(../images/logo.png?v=1) no-repeat;
    background-size: contain;
    width: 346px;
    height: 116px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.light .logo__link {
	background: url(../images/logo_white.png?v=1) no-repeat;
    background-size: contain;
}

.main__inner {
    max-width: 1020px;
    margin: 0 auto;
}
.main__title {
	width: 100%;
    text-align: center;
    font-weight: bold;
}

.content__header {
    max-width: 1020px;
    width: 100%;
    height: 75px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    padding: 0 45px;
    box-sizing: border-box;
    background: #334633;
    background: -moz-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #334633), color-stop(100%, #1c341c));
    background: -webkit-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: -o-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: -ms-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: linear-gradient(to bottom, #334633 0%, #1c341c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#334633', endColorstr='#1c341c',GradientType=0 );
    box-shadow: 2px 2px 3px 0 #394439;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 1;
}
.light .content__header {
	background: #c6e262;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M2ZTI2MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5NWMzNjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c6e262), color-stop(100%, #95c361));
    background: -webkit-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: -o-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: -ms-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: linear-gradient(to bottom, #c6e262 0%, #95c361 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c6e262', endColorstr='#95c361',GradientType=0 );
	box-shadow: 2px 2px 3px 0 #bbd487;
}
.content__login-button {
	display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font: 10px / 1 Arial;
    position: relative;
    background-color: #212722;
    box-shadow: 1px 1px 0 0 #1f1f1f, inset 1px 1px 1px #606661;
    color: #bee6c3;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.light .content__login-button {
	color: #5d7637;
	background-color: #d9f1a7;
    box-shadow: 1px 1px 0 0 #95ad65, inset 1px 1px 1px #fff;
}
.content__login-button:active {
    position: relative;
    top: 1px;
}
.content__login-button::before {
    width: 35px;
    height: 35px;
    position: absolute;
    right: -18px;
    bottom: 0;
    content: '';
    border-radius: 50%;
    box-shadow: 0 0 1px 1px #4f5e33;
    background: #394129;
    background: -moz-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #394129), color-stop(100%, #585f4b));
    background: -webkit-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: -o-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: -ms-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: linear-gradient(to bottom, #394129 0%, #585f4b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#394129', endColorstr='#585f4b',GradientType=0 );
	z-index: -1;
}
.light .content__login-button::before {
	box-shadow: 0 0 1px 1px #9ab865;
    background: #adc879;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FkYzg3OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiMmNjN2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #adc879), color-stop(100%, #b2cc7c));
    background: -webkit-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: -o-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: -ms-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: linear-gradient(to bottom, #adc879 0%, #b2cc7c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#adc879', endColorstr='#b2cc7c',GradientType=0 );
}
.content__login-button span:first-child {
	font-size: 18px;
}
.content__search {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.search {
    flex-grow: 1;
    width: 100%;
    height: 35px;
    border: 1px solid #a0b771;
    border-radius: 10px;
    padding: 0 25px;
    font: 16px / 1.3 Verdana;
    border-color: #7c817e;
    background: #2e332f;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #606661;
    color: #b0c0b2;
}
.light .search {
    border: 1px solid #a0b771;
	background: #d9f1a7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q5ZjFhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOWYxYTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d9f1a7), color-stop(100%, #d9f1a7));
    background: -webkit-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: -o-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: -ms-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: linear-gradient(to bottom, #d9f1a7 0%, #d9f1a7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9f1a7', endColorstr='#d9f1a7',GradientType=0 );
    box-shadow: 1px 1px 1px #96ad65, inset 1px 1px 1px #fff;
    color: #5f5f5f;
}
.search-button {
    width: 94px;
    height: 30px;
    border: 1px solid #4e5b33;
    border-radius: 7px;
    cursor: pointer;
    float: right;
    color: #b0c0b2;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #536038;
    background: #3d4629;
    background: -moz-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3d4629), color-stop(100%, #272b1e));
    background: -webkit-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -o-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -ms-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: linear-gradient(to bottom, #3d4629 0%, #272b1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d4629', endColorstr='#272b1e',GradientType=0);
}
.light .search-button {
    box-shadow: 1px 1px 1px #8fa75c, inset 1px 1px 1px #fff;
    background: #d7efa7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZWZhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhN2MwNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7efa7), color-stop(100%, #a7c071));
    background: -webkit-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -o-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -ms-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: linear-gradient(to bottom, #d7efa7 0%, #a7c071 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7efa7', endColorstr='#a7c071',GradientType=0 ); 
	border: 1px solid #8ea65c;
    color: #5d7637;
}
.content__socials {
	list-style-type: none;
    display: flex;
    gap: 10px;
}
.content__socials li a {
    width: 46px;
    height: 46px;    
    display: flex;
    background: #212722;
    box-shadow: 1px 1px 0 0 #1f1f1f, inset 1px 1px 1px #606661;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.light .content__socials li a {
	box-shadow: 1px 1px 0 0 #95ad65, inset 1px 1px 1px #fff;
    background: #d9f1a7;
}
.content__socials li a:active {
    position: relative;
    top: 1px;
}
.content__socials li a img {
	width: 26px;
    height: 26px;
}

.content__data {
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    background-color: #1f1f1f;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    gap: 10px;
}
.light .content__data {
	background-color: #fff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
    color: #333;
}

#fullsearch {
	width: 100%;
    background: #363a37;
    padding: 10px;
    border: 1px solid #505b50;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.light #fullsearch {
	background: #eef5cd;
    border: 1px solid #c2df6e;
}
.search-block {
	display: flex;
    flex-direction: column;
    gap: 10px;
}
.search__form {
    display: flex;
    gap: 10px;
}
#searchinput {
	width: 100%;
    padding: 5px 10px;
    background: #2e332f;
    color: #b0c0b2;
    border: 1px solid #505b50;
}
.light #searchinput {
	background: #d9f1a7;
    color: #37523a;
    border: 1px solid #a0b771;
}
.search__button {
    background: #343b25;
    color: #b0c0a4;
    border: 1px solid #505b50;
    padding: 5px 10px;
    cursor: pointer;
}

.sidebar {
    width: 260px;
    min-width: 260px;
}
.sidebar__block {
    border-radius: 10px;
    padding: 10px 10px;
    text-align: center;
    background: #363a37;
    box-shadow: 2px 2px 3px #535f53, inset 1px 1px 1px #535f53;
}
.light .sidebar__block {
	background: #eef5cd;
    box-shadow: 2px 2px 3px #bddc62, inset 1px 1px 1px #bddc62;
}
.sidebar__title {
    font-size: 18px;
    border-bottom: 1px solid #8ca38f;
    text-align: center;
    padding: 10px 0;
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
}
.sidebar__title span {
    color: #accaa6;
}
.light .sidebar__title span {
	color: #81a834;
}
.sidebar__menu {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}
.sidebar__menu li {
    width: 100%;
    text-align: left;
}
.sidebar__menu a {
    color: #b6b6bd;
    display: block;
    padding: 3px;
    padding-left: 25px;
    border-radius: 15px 0 0 15px;
}
.light .sidebar__menu a {
	color: #4f4f4f;
}
.sidebar__menu a:hover {
    color: #1f1f1f;
    background: #889b88;
    text-decoration: none;
}
.light .sidebar__menu a:hover {
    color: #fff;
    background: #98bc1f;
}
.sidebar__menu-line {
    padding: 0 5px 10px 20px;
}
.sidebar__menu-line::before {
    content: '';
    display: block;
    border-bottom: 1px solid #5c675e;
    padding: 5px;
    padding-left: 20px;
}
.light .sidebar__menu-line::before {
	border-bottom: 1px solid #c5d18c;
}

.content__main {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.main__description {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid #5c675e;
    padding-bottom: 30px;
}
.main__description-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main__description-text li {
	list-style-type: circle;
    margin-left: 20px;
}
.main__description-text li::marker {
	color: #f17d00;
    font-size: 20px;
}
.main__description-footer {
	width: 100%;
    max-width: 1010px;
    margin: 0 auto;
    background-color: #1f1f1f;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.light .main__description-footer {
	background-color: #ffffff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
}
.main__description-footer .main__description-text {
    background: #492e32;
    padding: 10px;
    border-radius: 10px;
}
.light .main__description-footer .main__description-text {
	background: #d9efc9;
    color: #505050;
}

.content__title {
    width: 100%;
    background: #363a37;
    border: 1px solid #505b50;
    margin-top: -10px;
    padding: 15px;
    text-align: center;
}
.light .content__title {
	background: #eef5cd;
    border: 1px solid #c2df6e;
}
.content__title h1 {
	font-weight: normal;
    color: #7b8254;
    font-size: 20px;
}

.content__item {
    display: flex;
    flex-direction: column;
    background: #492e32;
    margin-top: 100px;
    border-bottom-left-radius: 93px 15px;
    border-bottom-right-radius: 93px 15px;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
    width: 200px;
}
.light .content__item {
    background: #d9efc9;
}
.content__item:hover {
    text-decoration: none;
}
.content__item-poster {
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-top: -50%;
}
.content__item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content__item-title {
    font-size: 17px;
    color: #d9d9d9;
    padding: 0 10px;
    text-align: center;
}
.light .content__item-title {
	color: #2c2c2c;
}
.content__item-series {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #a7a7a7;
    align-items: flex-end;
    width: 100%;
    padding: 10px;
}
.light .content__item-series { 
	color: #5b5b5b;
}
.content__item-info {
    width: 22px;
    height: 22px;
    background: #1f1f1f8a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    align-self: flex-start;
    margin-left: 10px;
    margin-top: -40px;
    transition: all .25s;
    position: relative;
}
.light .content__item-info {
	background: #f0ffe5;
    color: #93ad95;
}
.content__item-info::before {
    content: 'i';
}
.content__item-info:hover {
    background: #1f1f1f;
}
.light .content__item-info:hover {
    background: #fff;
}
.content__item-info-hidden {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #1f1f1f;
    padding: 5px;
    border: 2px solid #505b50;
    font-size: 12px;
    left: 25px;
    width: 300px;
    position: absolute;
    font-weight: normal;
    z-index: 1;
}
.light .content__item-info-hidden {
    background: #fff;
    border: 2px solid #d4d9d4;
    color: #454545;
}
.content__item-info:hover .content__item-info-hidden {
    display: flex;
}
.info-hidden__titles {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info-hidden__title {
    font-size: 18px;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pagination span, .pagination a {
    background: #363a37;
    color: #b6b6bd;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.light .pagination span, .light .pagination a {
	background: #d9efc9;
    color: #333;
}
.pagination span, .pagination a:hover {
    color: #d9d9d9;
    text-decoration: none;
    background: #492e32;
}
.light .pagination span, .light .pagination a:hover {
    color: #fff;
    background: #98bc1f;
}

.full {
    width: 100%;
}
.full__title {
    position: relative;
    display: flex;
    background: #363a37;
    padding: 20px;
    border-top: 1px solid #666b66;
    border-bottom: 1px solid #666b66;
    border-radius: 35px 0 0 10px;
}
.light .full__title {
	background: #eef5cd;
    border-top: 1px solid #acce0d;
    border-bottom: 1px solid #acce0d;
}
.full__poster {
    border-radius: 50%;
    overflow: hidden;
    width: 90px;
    height: 90px;
    position: absolute;
    top: -10px;
    left: -5px;
    border: 2px solid rgba(102, 107, 102, 0.8);
}
.full__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.full__title h1 {
    padding-left: 80px;
    font-size: 20px;
    font-weight: normal;
}

.full__rating {
	display: flex;
    justify-content: center;
    gap: 10px;
}
.full__rating a {
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all .3s;
    padding-left: 50px;
    padding-right: 15px;
}
.full__rating a:first-child {
    background: #98bc1f url(../images/thumb-up.svg?v=1) 7px 7px no-repeat;
    background-size: 26px;
}
.full__rating a:last-child {
    background: #dd5161 url(../images/thumb-down.svg?v=1) 7px 7px no-repeat;
    background-size: 26px;
}

.full__player {
    border: 5px solid #3f3f3f;
    border-radius: 3px;
    margin-top: 20px;
    position: relative;
    padding-top: 60%;
}
.light .full__player {
	border: 5px solid #d9dfbb;
}
.full__player iframe {
	width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.full__data {
    background: #363a37;
    border-radius: 10px;
    font-size: 13px;
    line-height: 150%;
    padding: 10px 0 5px;
}
.light .full__data {
	background: #eef5cd;
}
.full__data a {
    color: #bee6c3;
}
.light .full__data a {
    color: #75ab0e;
}
.full__data div {
    padding: 0 15px;
}
.full__data div p {
    margin: 10px 0;
}

.full__comments {
	width: 100%;
    margin-top: -10px;
}
.full__comments h2 {
	margin: 0 0 20px;
}
.comment {
	background: #363a37;
    border-radius: 10px;
    font-size: 13px;
    line-height: 150%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.light .comment {
	background: #eef5cd;
}
.comment__top {
	display: flex;
    justify-content: space-between;
}
.comment__login {
	font-weight: bold;
}
.comment__buttons {
	display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.mass_comments_action {
	margin-bottom: 15px;
    text-align: right;
}
input[type="submit"] {
	height: 30px;
    border: 1px solid #4e5b33;
    border-radius: 7px;
    cursor: pointer;
    color: #b0c0b2;
    padding: 0 15px;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #536038;
    background: #3d4629;
    background: -moz-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3d4629), color-stop(100%, #272b1e));
    background: -webkit-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -o-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -ms-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: linear-gradient(to bottom, #3d4629 0%, #272b1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d4629', endColorstr='#272b1e',GradientType=0);
}
.light input[type="submit"] {
	box-shadow: 1px 1px 1px #8fa75c, inset 1px 1px 1px #fff;
    background: #d7efa7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZWZhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhN2MwNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7efa7), color-stop(100%, #a7c071));
    background: -webkit-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -o-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -ms-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: linear-gradient(to bottom, #d7efa7 0%, #a7c071 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7efa7', endColorstr='#a7c071',GradientType=0 );
    border: 1px solid #8ea65c;
    color: #5d7637;
}
input[type="submit"]:hover {
	opacity: .8;
}
#dle-comments-form {
    background: #363a37;
    padding: 10px;
    border-radius: 10px;
}
.light #dle-comments-form {
    background: #eef5cd;
}
#comments {
    width: 100%;
    height: 130px;
    border: 1px solid #3c4c40;
    border-radius: 10px;
    padding: 5px 10px;
    font: 14px / 1.3 Verdana;
    background: #2e332f;
    color: #b0c0b2;
    margin-bottom: 10px;
    min-height: 75px;
}
.light #comments {
	color: #5f5f5f;
    border: 1px solid #a0b771;
    background: #d9f1a7;
}
.comment__input {
    width: 100%;
    border: 1px solid #3c4c40;
    border-radius: 10px;
    padding: 5px 10px;
    font: 14px / 1.3 Verdana;
    background: #2e332f;
    color: #b0c0b2;
    margin-bottom: 10px;
}
.light .comment__input {
    color: #5f5f5f;
    border: 1px solid #a0b771;
    background: #d9f1a7;
}

.ui-dialog {
	background: #1f1f1f;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 0 10px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #3c4c40;
    gap: 10px;
    z-index: 999999;
}
.light .ui-dialog {
	background: #eef5cd;
    color: #333;
    box-shadow: 0 0 10px #00000099;
    border: 4px solid #96c461;
}
.ui-dialog-titlebar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.ui-button {
	height: 30px;
    border: 1px solid #4e5b33;
    border-radius: 7px;
    cursor: pointer;
    color: #b0c0b2;
    padding: 0 15px;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #536038;
    background: #3d4629;
    background: -moz-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3d4629), color-stop(100%, #272b1e));
    background: -webkit-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -o-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -ms-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: linear-gradient(to bottom, #3d4629 0%, #272b1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d4629', endColorstr='#272b1e',GradientType=0);
}
.light .ui-button {
	box-shadow: 1px 1px 1px #8fa75c, inset 1px 1px 1px #fff;
    background: #d7efa7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZWZhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhN2MwNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7efa7), color-stop(100%, #a7c071));
    background: -webkit-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -o-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -ms-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: linear-gradient(to bottom, #d7efa7 0%, #a7c071 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7efa7', endColorstr='#a7c071',GradientType=0 );
    border: 1px solid #8ea65c;
    color: #5d7637;
}
.ui-button:hover {
    opacity: .8;
}
.ui-dialog-buttonset {
    display: flex;
    gap: 10px;
}
.ui-dialog-titlebar-close, .light .ui-dialog-titlebar-close {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(../images/close.svg?v=1) no-repeat;
    background-size: contain;
    text-indent: -9999999px;
    padding: 0;
    transition: all .3s;
    border: 0;
    box-shadow: none;
}
.ui-dialog-titlebar-close:hover {
    opacity: .8;
}
.ui-dialog-title {
    font-weight: 500;
}
.ui-widget-content {
    height: auto !important;
    min-height: 38px !important;
}

.footer {
    max-width: 1010px;
    width: 100%;
    height: 94px;
    margin: 0 auto;
    background: url(../images/footer-bg.png?v=1) center no-repeat;
    background-size: cover;
    background-color: #1f1f1f;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
    border-radius: 0 0 10px 10px;
    font-size: 13px;
}
.light .footer {
	background: url(../images/footer-bg_white.png?v=1) center no-repeat;
    background-size: cover;
    background-color: #fff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
    color: #4d7d41;
}
.footer__menu {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 20px;
    height: 94px;
    align-items: flex-end;
    padding-bottom: 12px;
}
.footer__menu a {
    color: #b0c0b2;
    transition: all .25s;
}
.light .footer__menu a {
	color: #4d7d41;
}
.footer__menu a:hover {
    text-shadow: 1px 1px 2px #000000, -1px -1px 2px #000;
}
.light .footer__menu a:hover {
	text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff;
}

/* player selection */
.tabs-block__select {
    margin: 20px 10px 10px;
    padding: 10px;
    text-align: center;
}
.tabs-block__select-item {
    background-color: #363a37;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
}
.light .tabs-block__select-item {
	background-color: #eef5cd;
    color: #676862;
}
.is-active {
	color: #1f1f1f;
    background-color: #889b88;
    text-decoration: none;
}
.light .is-active {
	color: #fff;
    background: #98bc1f;
}
.tabs-block__select-item + .tabs-block__select-item{
	margin-left: 15px;
}
.d-none {
	display: none;
}

@media screen and (max-width: 1020px) {
    .content__header {
        border-radius: 10px 10px 0 0;
        padding: 0 15px;
    }
    .content__data {
        max-width: none;
        flex-direction: column-reverse;
    }
    .sidebar {
        width: 100%;
    }
    .sidebar__menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .sidebar__menu li {
        width: 24%;
        text-align: center;
    }
    .sidebar__menu li.sidebar__menu-line {
    	width: 100%;
    }
    .sidebar__menu a {
        border-radius: 15px;
        padding-left: 0;
        background: #2e332f;
        padding: 5px;
    }
    .light .sidebar__menu a {
    	background: #a1c529;
    }
}

@media screen and (max-width: 800px) {
    .header__sub-menu {
        display: flex;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        margin-top: 10px;
    }
    .header__sub-menu li {
        width: 31% !important;
    }
    .header__menu {
        position: absolute;
        top: 50px;
        left: 0;
        flex-direction: column;
        background: #314431;
        gap: 10px;
        height: auto;
        padding: 10px;
        width: 100%;
        align-items: flex-start;
        z-index: 9;
        border-radius: 0 0 5px 5px;
        box-shadow: 0 5px 5px #00000057;
        display: none;
    }
    .light .header__menu {
    	background: #b4e382;
    }
    .header__menu-sub-menu-button::before {
        display: none;
    }
    .header__menu li {
        width: 100%;
        text-align: left;
    }
    .header__inner {
        justify-content: space-between;
        padding: 5px 10px;
    }
    .header__moon {
        height: 40px;
    }
    .header__mobile-menu-button {
        display: block;
    }
    .sidebar__menu li {
        width: 23%;
    }
    .content__header {
    	height: 135px;
        padding: 10px 15px;
        align-items: flex-start;
    }
    .content__search {
    	width: calc(100vw - 40px);
        position: absolute;
        top: 85px;
        left: 20px;
        gap: 10px;
    }
    .content__socials {
    	margin-top: 10px;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        height: 50px;
    }
    .footer__menu {
        display: none;
    }
    .sidebar__menu li {
        width: 48%;
    }
    .main__description {
        flex-direction: column;
    }
    .tabs-block__select {
    	display: flex;
    	flex-direction: column;
        text-align: center;
    }
    .tabs-block__select-item {
    	margin: 10px 20px;
    }
}

@media screen and (max-width: 500px) {
    .header__sub-menu li {
        width: 100% !important;
    }
}
.comments-tree-list{list-style:none;}
.comment__text{word-break:break-all;}
.short-btn {
   	font: bold 16px / 22px Helvetica, Helvetica-Neue, Arial, sans-serif !important;
	background: #98bc1f;
    color: #1f1f1f;
    font-size: 17px;
    padding: 12px 20px;
    width: auto;
    margin-bottom: 4px;
    border: none !important;
    cursor: pointer;
    display: inline-block;
    margin: 0 4px 4px 0;
    text-align: center;
    text-decoration: none !important;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.v_epi_nav {
    margin: 0 10px;
    margin-top: 20px;
    text-align: center;
}
        .short-btn .video {
    margin-bottom: 10px;
}
        .vnright {
    float: right;
}
        .vnleft {
    float: left;
}
        .vncenter {
    margin-top: 10px !important;
}
        .short-btn.black {
    background: #b2b5b8;
    color: #1f1f1f !important;
}