@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');


.cld-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    color: inherit;
}

.cld-button img {
    width: 16px;
    height: 14px;
}

.cld-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}


.cld-like-dislike-wrap {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.cld-like-dislike-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    gap: 4px;
}

.cld-like-dislike-trigger img {
    max-width: 15px;
    height: auto;
}

.cld-count {
    font-size: 8px;
    font-weight: bold;
    line-height: 1;
}

.cld-common-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    min-width: 25px;
    padding: 0 6px;
    background: #181020;
    border-radius: 3px;
    font-weight: 500;
    font-size: 8px;
    line-height: 18px;
    color: #fff;
    transition: background .3s ease;
    cursor: pointer;
}

.light .cld-common-wrap {
	background: #4d7d41;
}

.light .cld-common-wrap:hover {
	background: #72ad60 !important;
}

.cld-common-wrap:hover {
    background: rgba(255, 255, 255, .1);
}

.cld-like-dislike-wrap .cld-common-wrap:hover {
    background: rgba(255, 255, 255, .1);
}

.cld-like-dislike-wrap .cld-common-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    position: relative;
    color: #fff;
    text-decoration: none !important;
}

.cld-like-dislike-wrap img {
    max-width: 15px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}




.mass_comments_action {display:none;}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}
body {
    min-height:calc(100vh + 10px);
    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;
}

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

.content__item {
position:relative;
}

.content__item-itemsnumber .content__item:before {
    content: counter(n);
    counter-increment: n;
    position: absolute;
    top: -28px;
    left: 50%;
    background: rgba(255, 255, 255, .8);
    color: #111;
    width: 50px;
    height: 50px;
    border-radius: 555px;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 -25px;
    font-size: 20px;
    font-weight: 700;
}

.content__item.active:before {
background: #492e32;
color:#fff;
}

.light .content__item.active:before {
background: #d9efc9;
color:#111;
}



.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__rating a:first-child:hover {
    background: #7a9e1f url(../images/thumb-up.svg?v=1) 7px 7px no-repeat; /* Не меняем саму иконку, только фон */
    background-size: 26px;
}
.full__rating a:last-child:hover {
    background: #e7566f 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: 72.7%;
}
.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 10px;
}
.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;
}
*/

.videoBlockWrapp {
    padding: /*35px*/20px 0;
    font: 14px/1.4 normal verdana,sans-serif;
    padding-top: 0
}

.videoBlockWrapp .video_h {
    margin-top: 10px;
    margin-bottom: 15px
}

.tittle_h {
    font-size: 15px;
    color: #c1c0c0;
    text-align: center;
    font-weight: 500
}

.header_video {
    margin: 15px 0 0;
    font-size: 15px;
    padding: 15px 10px;
    background-color: #eef5cd;
    border-top: 1px solid #acce0d;
	border-bottom: 1px solid #acce0d;
    text-align: center;
    font-weight: 600
}

.header_video.allanimevideo {
    font-family: Verdana;
    font-weight: 500;
    font-size: 20px
}

.b-b-title.the-anime-season {
    border-top: 1px solid #acce0d;
    border-bottom: 0;
    padding-top: 8px;
    margin-top: 25px!important
}

.b-b-title.the-anime-season:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0!important;
}

.title-bottom {
	margin-bottom: auto !important;
}

.b-b-title.the-anime-season.films_title {
    border-top: 1px solid #acce0d;
    padding-top: 8px;
    margin-top: 25px!important
}

.videoContent, .videoBlock {
  width: 100%;
  margin: 0;
  padding: 0;
}
.video-player {
  width: 100%;
  max-width: 100%;
  display: block;
}
.v_epi_nav {
  text-align: center;
  margin-top: 20px;
}
/*
.videoContent {
    padding: 0 50px
}

.videoBlock {
    overflow: hidden;
    position: relative
}
*/
.videoBlock .video {
    margin-bottom: 10px
}

.next,.previous {
    position: relative;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: -2px 2px 1px #85b161;
    background: #bbe65f;
    background: -moz-linear-gradient(top,#bbe65f 0%,#98ce79 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#bbe65f),color-stop(100%,#98ce79));
    background: -webkit-linear-gradient(top,#bbe65f 0%,#98ce79 100%);
    background: -o-linear-gradient(top,#bbe65f 0%,#98ce79 100%);
    background: -ms-linear-gradient(top,#bbe65f 0%,#98ce79 100%);
    background: linear-gradient(to bottom,#bbe65f 0%,#98ce79 100%);
    transition: background ease-out .5s
}

.next:hover,.previous:hover {
    text-decoration: none;
    background: #98ce79;
    background: -moz-linear-gradient(top,#98ce79 0%,#bbe65f 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#98ce79),color-stop(100%,#bbe65f));
    background: -webkit-linear-gradient(top,#98ce79 0%,#bbe65f 100%);
    background: -o-linear-gradient(top,#98ce79 0%,#bbe65f 100%);
    background: -ms-linear-gradient(top,#98ce79 0%,#bbe65f 100%);
    background: linear-gradient(to bottom,#98ce79 0%,#bbe65f 100%)
}

.previous {
    border-radius: 11px 5px 5px 11px;
    padding: 6px 6px 5px 26px
}

.previous:before,.next:before {
    display: inline-block;
    width: 18px;
    height: 18px;
    content: "";
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -9px
}

.previous:before {
    left: 5px
}

.previous:after,.next:after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px
}

.previous:after {
    left: 7px;
    border-top: 5px solid transparent;
    border-right: 10px solid #abd750;
    border-bottom: 5px solid transparent
}

.next {
    border-radius: 5px 11px 11px 5px;
    padding: 6px 26px 5px 6px
}

.next:before {
    right: 5px
}

.next:after {
    right: 8px;
    border-top: 5px solid transparent;
    border-left: 10px solid #abd750;
    border-bottom: 5px solid transparent
}

.technicBatleVideo {
    display: inline-block;
    border: 10px solid #eef5cd;
    padding: 10px 20px;
    overflow: hidden;
    text-align: left
}

.bottom_line {
    border-bottom: 1px solid #acce0d
}

.battle_series {
    margin-top: 20px
}

.battle_series p {
    color: #8ea85f;
    font-size: 14px;
    margin-bottom: 5px
}

.links_series {
    margin-top: 30px
}

.links_series p {
    color: #8ea85f;
    font-size: 14px;
    margin-bottom: 5px
}

.social_vidget {
    overflow: hidden;
    text-align: center
}

.social_vidget:hover {
}

.social_vidget>div {
    display: inline-block;
    vertical-align: middle
}

.social_vidget #share42 {
    display: inline-block;
    padding: 6px 0 0 6px;
    background: #fff;
    border: none;
    border-radius: 4px
}

.social_vidget #share42:hover {
    border: none;
    background: 0 0;
    box-shadow: none
}

.battleVideoWrapp .social_vidget {
}

.videoBlock .social_vidget {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px
}

.mailBlock_h {
    text-align: center
}

.mail_h {
    background: #eef5cc;
    font-weight: 400;
    font-size: 19px;
    color: #adbd5b;
    padding: 10px;
    border: 1px solid #adbd5b;
    border-top: none;
    width: 90%;
    margin: 0 auto 30px
}

.mail_h_div {
    width: 90%;
    text-align: center;
    display: inline-block;
}

.mail_h_h1 {
    background: #eef5cc;
    font-weight: 400;
    font-size: 19px;
    color: #adbd5b;
    padding: 10px;
    border: 1px solid #adbd5b;
    /*border-top: none;*/
    margin: 0 auto 30px
}



.all_anime_title .all_anime_mark_viewed_mini {
    background: url(../images/mark_anime_viewed_mini.png) no-repeat;
    background-position: 0 0;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 62px;
    left: 35px;
    opacity: .5;
    z-index: 3;
    transition: opacity ease-out .34s;
    cursor: pointer
}

.aamv_check .all_anime_title .all_anime_mark_viewed_mini {
    background-position: 0 -30px
}

@media only screen and (max-width: 990px) {
    .all_anime_title .all_anime_mark_viewed_mini {
        opacity:.5
    }
}

.all_anime_title:hover .all_anime_mark_viewed_mini {
    opacity: .7
}

.all_anime_title .all_anime_mark_viewed_mini:hover {
    opacity: .93
}

.aamv_check .all_anime_mark_viewed_star {
    display: block
}

.all_anime_title .all_anime_mark_viewed_star {
    top: -5px;
    left: 91px;
    cursor: pointer
}

.aamv_check:hover .all_anime_mark_viewed_star ul.asr_rating {
    background: url(../images/mark_anime_viewed_star.png) center
}

.all_anime .aaname {
    padding-left: 12px;
    padding-top: 5px;
    padding-right: 9px;
    color: #2c2c2c;
    font-size: 1.3em;
    text-align: center
}

.all_anime .aaname_break {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.all_anime .aailines {
    padding-top: 12px;
    text-align: right;
    padding-right: 9px;
    padding-left: 9px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 80px;
    padding-bottom: 20px
}

.all_anime_bottom {
    width: 186px;
    height: 15px;
    background: #ffdeca;
    border-bottom-left-radius: 93px 15px;
    border-bottom-right-radius: 93px 15px
}

.all_anime_title_halfleft {
    position: absolute;
    left: -3px;
    top: -9px;
    width: 52px;
    height: 52px;
    background-color: #fff
}

.all_anime_title {
    position: absolute;
    left: -3px;
    top: -9px;
    width: 104px;
    height: 104px;
    border-radius: 30px;
    z-index: 2;
    border: 2px solid rgba(172,206,13,.8)
}




a.short-btn {
    color: #fff!important
}

a.short-btn:hover {
    color: #fff!important
}

.short-btn {
    font: bold 14px/20px Helvetica,Helvetica-Neue,Arial,sans-serif!important;
    border: none!important;
    cursor: pointer;
    display: inline-block;
    background: #ffcc02;
    padding: 11px 10px!important;
    color: #fff!important;
    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
}

.short-btn.medium {
    padding: 13px 19px!important;
    font-weight: 700;
    font-size: 15px!important
}

.short-btn.large {
    font-size: 18px!important;
    padding: 17px 29px!important;
    width: auto;
    margin-bottom: 4px
}

.short-btn.video {
    font-size: 17px!important;
    padding: 12px 20px!important;
    width: auto;
    margin-bottom: 4px
}

.short-btn.round {
    padding-left: 20px!important;
    padding-right: 20px!important;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px
}

.short-btn.pink {
    background: #ffadcb
}

.short-btn.pink:hover {
    background-color: #fdccde;
    color: #e35f90!important
}

.short-btn.blue {
    background: #72bbf0
}

.short-btn.blue:hover {
    background-color: #a1d1f3;
    color: #1089e2!important
}

.short-btn.black {
    background: #b2b5b8;
    color: #1f1f1f !important;
}
.short-btn.black:hover {
    background: #9b9ea1;
    color: #fff !important;
}

.short-btn.yellow {
    background: #ffd900
}

.short-btn.yellow:hover {
    background-color: #fbea86;
    color: #aa5800!important
}

.short-btn.red {
    background: #ff6163
}

.short-btn.red:hover {
    background-color: #fcc8c8;
    color: #da3a3c!important
}

.short-btn.green {
    background: #334633;
}

.watch_list_item .short-btn.green {
    background: #334633;
}

.short-btn.green:hover {
    background: #475e47;
    color: #fff!important
}

.light .short-btn.green {
    background: #9dc532;
}

.light .watch_list_item .short-btn.green {
    background: #9ac762
}

.light .short-btn.green:hover {
    background: #bde74c;
    color: #4c6802!important
}

.short-btn.grey {
    background: #8d8e91
}

.short-btn.grey:hover {
    background-color: #b5b6b8;
    color: #585a5e!important
}

.short-btn.purple {
    background: #b482c9
}

.short-btn.purple:hover {
    background: #d9b1eb;
    color: #793894!important
}

.short-btn.orange {
    background: #f5731c
}

.short-btn.orange:hover {
    background: #ffb380;
    color: #b92500!important
}

.v_epi_nav {
    margin: 0 10px;
    margin-top: 20px;
    text-align: center
}

.v_epi_nav i {
    display: none
}

.vnright {
    float: right;
    margin:0 0 0 5px;
}

.vnright:after {
    content: ' \2192'
}

.vnleft {
    float: left;
    margin:0 5px 0 0;
}

.vnleft:before {
    content: '\2190  '
}

.vncenter {
    margin-top: 10px!important
}