/* BASIC LAYOUT
----------------------------------------------- */
body {position: relative;}
.wrapper {min-width: 320px; overflow: hidden; overflow: clip;}
.wrapper__container {max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 20;}
.wrapper__container--main {background-color: var(--bg-darker); box-shadow: var(--bsh-long);}
.header {padding: 0 var(--indent); position: sticky; z-index: 100; left: 0; top: 0;
	background-color: var(--bg); box-shadow: var(--bsh-block);}
.header-is-sticky .header {translate: 0 -200%;}
.carou {background-color: var(--bg-blackest); margin: 0 var(--indent-negative); padding: 20px var(--indent);}
.content > .carou {margin-top: -20px; margin-bottom: 20px;}
.carou--lastviewed {margin-top: 0 !important; margin-bottom: 0 !important;}
.content {padding: 20px var(--indent); min-height: 100vh;}
.footer {padding: 40px var(--indent); padding-bottom: 20px; background-color: var(--bg-black); 
	color: var(--tt-fade); --tt: #fff; --tt-fade: #ccc; --bdc: rgba(255,255,255,0.2);}
.footer__two {border-top: 1px solid var(--bdc); padding-top: 20px; margin-top: 40px;}
.content:has(.descr), .content:has(.page__related), .content:has(.carou--lastviewed) {padding-bottom: 0;}
.wrapper::before, .wrapper::after {position: absolute; left: 0; top: 0; right: 0; height: 500px; 
	background: url(../images/bg.jpg?v02051) center center / 1400px auto no-repeat; content: ''; filter: grayscale(0.66);
	--left: calc((100vw - 1340px)/2); --right: calc((100vw - 1340px)/2 + 1300px);
	mask-image: linear-gradient(to right, transparent 0%, transparent var(--left), #000 calc(var(--left) + 160px), 
	#000 calc(var(--right) - 160px), transparent var(--right), transparent 100%);}
.wrapper::after {background: linear-gradient(to top, #111 0%, transparent 300px); z-index: 1; mask-image: none;}
.has-branding {padding-top: 100px;}

.scrolltop {position: fixed; width: 40px; height: 40px; right: 10px; bottom: 10px; padding: 0;
	z-index: 990; border-radius: 4px; font-size: 18px; opacity: 0; scale: 0 0;}
.scrolltop.is-active {scale: 1 1; opacity: 1;}
.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%; 
	opacity: 0.8; background-color: #1d1924; cursor: pointer; display: none;}
.toasts {position: fixed; right: 10px; top: 20px; z-index: 990; display: grid; gap: 20px;}
.toast {background-color: #fff; color: #000; border-radius: 6px; overflow: hidden;
	position: relative; width: 400px; display: flex; align-items: center; gap: 20px; 
	padding: 16px 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); --accent: #00a2ff; 
	animation: showToast 0.5s ease forwards; max-width: calc(100vw - 40px);}
.toast__icon {font-size: 28px; color: var(--accent);}
.toast__descr {flex: 1 1 0; max-width: 100%; min-width: 50px;}
.toast__title {font-weight: 700;}
.toast__text {font-size: 14px;}
.toast__close {font-size: 18px; margin: 0 -10px; display: grid; place-items: center; 
	cursor: pointer; opacity: 0.6; width: 40px; height: 40px;}
.toast::after {content: ''; width: 100%; height: 3px; background-color: var(--accent); 
	position: absolute; left: 0; bottom: 0; animation: progressToast var(--toast-timer) linear forwards}
.toast--success {--accent: #41b92f;}
.toast--warning {--accent: #f4bd00;}
.toast--error {--accent: #dd3954;}
.toast--is-hiding {animation: hideToast 0.5s ease forwards;}
@keyframes progressToast {
	100% {width: 0}
}
@keyframes showToast {
	0% {transform: translateX(calc(100% + 20px));}
	40% {transform: translateX(-5%);}
	80% {transform: translateX(0%);}
	100% {transform: translateX(-10px);}
}
@keyframes hideToast {
	0% {transform: translateX(-10px);}
	40% {transform: translateX(0%);}
	80% {transform: translateX(-5%);}
	100% {transform: translateX(calc(100% + 20px));}
}



/* HEADER, TOPMENU, CAROU
----------------------------------------------- */
.logo {display: flex; align-items: center; font-family: 'Righteous-Regular'; font-weight: 800; color: var(--tt);
	padding-left: 50px; text-transform: uppercase; position: relative; font-size: 26px; height: 40px; letter-spacing: 0px;}
.logo::before {content: ''; width: 40px; height: 40px; position: absolute; left: 0; top: 50%; 
	background: url(../images/logo.svg?v1) 0 center / contain no-repeat; translate: 0 -50%;}
.lt .header__logo {--tt: #000;}
.header__logo span {color: var(--bg);
    background-color: var(--tt);
    padding: 5px;
    border-radius: 8px;
    margin-left: 5px;
	box-shadow: 0 0 10px var(--tt);
}
.logo:has(img) {background: none; min-width: 200px;}
.logo:has(img)::before {display: none;}
.logo img {display: block; position: absolute; left: 0; top: 50%; translate: 0 -50%; max-height: 100%;}
.header__theme-select {color: var(--yellow); font-size: 2em;}
.dt .header__theme-select::before {content:"\f755";}
.header__btn-login {height: 34px; padding: 0 20px;}
.header__btns {padding-left: 5px;}
.header__btn1 {height: 30px; font-size: 12px;}
.header__ava {width: 40px; cursor: pointer;}
.header__btn1 span {position: absolute; right: -5px; top: -10px; padding: 2px 3px; font-size: 10px; border-radius: 2px; 
	background-color: var(--accent); color: #fff; display: inline-block; 
	text-align: center; min-width: 20px; line-height: 1;}

.header__menu {margin: 0 5px;}
.header__menu li {position: relative;}
.header__menu > li > a {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	background-color: var(--bg-darker-1);
	margin: 15px 0;
	padding: 4px;
	border-radius: 8px;
}
.header__menu-hidden {background-color: var(--bg); border-top: 3px solid var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
	position: absolute; left: 0; top: 99%; width: 240px; z-index: 10; padding: 20px 26px; display: grid; gap: 6px 26px; 
	opacity: 0; visibility: hidden; translate: 0 30px;}
div.header__menu-hidden {grid-template-columns: repeat(3,1fr); width: 660px;}
.header__menu-hidden-col {display: grid; gap: 6px;}
.header__menu-hidden li:not(:has(a)) {font-weight: 600;}
.header__menu-hidden a {opacity: 0.8;}
.header .header__menu li:has(.header__menu-hidden)::before {content: ''; position: absolute; left: 50%; bottom: 0%; 
	border: 6px solid transparent; border-bottom-color: var(--accent); margin-left: -6px;}

.search-block {position: relative;}
.search-block__input, .search-block__input:focus {padding: 0 40px 0 10px; border: 0; box-shadow: none; 
	height: 34px; line-height: 34px; box-shadow: inset 0 0 0 1px #e3e3e3, inset 1px 2px 5px rgba(0,0,0,0.2);}
.search-block__input:not(:focus)::placeholder {color: var(--tt); opacity: 0.66; font-size: 12px;}
.search-block__btn {position: absolute; right: 0; top: 0; height: 34px; font-size: 16px; width: 40px; color: var(--accent);}


/* SECTION
----------------------------------------------- */
.sect:not(:last-child) {margin-bottom: 20px;}
.sect__header {margin-bottom: 20px;}
.sect__title {font-size: 18px; font-weight: 600;}
.sect__title :is(h1,h2,h3) {font-size: inherit;}
.sect__header:has(.sect__tabs) {margin-bottom: 10px;}
.sect__tabs button {background: none; color: var(--tt); text-transform: uppercase; font-weight: 600; border-radius: 999px; border: 3px solid var(--accent);}
.sect__tabs button.is-active {background-color: var(--bg); color: var(--tt);}
.carou__caption {color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px;}
.carou--lastviewed:not(:has(.item)) {display: none;}

.speedbar {color: var(--tt-fade); font-size: 14px; padding: 15px 0; margin-top: -20px; font-weight: 600;}
.speedbar a {color: var(--tt);}

.descr {color: var(--tt-fade-0); display: grid; gap: 10px; background-color: var(--bg-darker-1); 
	padding: 20px var(--indent); margin: 0 var(--indent-negative);}
.descr :is(h1,h2,h3) {font-size: 18px; font-weight: 600; color: var(--tt);}
.descr a {text-decoration: underline; color: var(--accent);}
.descr ul li {position: relative; padding-left: 25px; margin-left: 25px;}
.descr ul li::before {content:"\f00c"; color: var(--accent); position: absolute; left: 0; top: 0;}
.descr ul lu > * {color: red;}


/* ITEM CAROUSEL, SHORTSTORY
----------------------------------------------- */
.item__img {box-shadow: var(--bsh); overflow: hidden; border-radius: 13px;}
.item__label {font-size: 13px; padding: 0px 3px; font-weight: 800;
	background-color: var(--accent); color: #fff; position: absolute; z-index: 1; top: 3px; left: 3px; border-radius: 13px;}
.item__label-age {font-size: 13px; padding: 0px 3px; font-weight: 600;
	background-color: #FF0000; color: #fff; position: absolute; top: 3px; right: 3px; z-index: 1; font-weight: 800; border-radius: 13px;}
.item__desc {position: absolute; inset: 0; z-index: 3; color: #fff; 
	--tt: #fff; --bdc: rgba(255,255,255,0.3); text-align: center; padding: 10px; line-height: 1.1rem;}
.item__title {font-weight: 700;}
.item__year {opacity: 0.8; font-size: 12px;}
.item__rates {line-height: 1; border-top: 1px dotted var(--grey); padding-top: 5px;}
.item__rates-item::before {content: attr(data-text); display: inline; margin-right: 5px; text-transform: uppercase; font-weight: 600;}
.item__rates-item.kp::before {color: #f60;}
.item__rates-item.imdb::before {color: #fc0;}
.item__btn-info {cursor: pointer; position: absolute; right: 0; top: 0; z-index: 5; 
	border-radius: 0; translate: 0 -100%; opacity: 0;}
.item__rates:not(:has(.item__rates-item:nth-child(2))) {justify-content: center;}


/* TRAILER, POPUP DESC
----------------------------------------------- */
.trl {background-color: rgba(0,0,0,0.9); position: fixed; z-index: 990; left: 0; top: 0; 
	width: 100%; height: 100%; overflow-x: hidden; overflow-y: auto; backdrop-filter: blur(10px);}
.trl__close {position: absolute; right: 20px; top: 20px; font-size: 40px; color: #fff;}
.trl__inner {width: 100%; max-width: 700px; margin: 0 auto; color: #fff; padding: 80px 20px 20px 20px;}
.trl__btn {height: 40px; padding: 0 40px; margin: 15px 0; width: 100%;}
.trl h1 {margin-bottom: 15px; margin-top: 20px; font-size: 24px;}
.trl .page__text, .trl .full-text {color: #ccc; margin: 15px 0 0 0; padding: 0; background: none;}
.trl-is-opened {overflow: hidden;}
.about__desc {font-weight: 700;}


.th-active {z-index: 100;}
.th-text {display: none; background-color: var(--bg); border-left: 3px solid var(--accent); cursor: auto; 
	padding: 20px; text-align: left; position: absolute; z-index: 1000; 
	width: 460px; box-shadow: var(--bsh-long); min-height: 100px; font-size: 12px;}
.pop-left .th-text {border-left: 0; border-right: 3px solid var(--accent);}
.th-text-loader {text-align: center; font-size: 18px; color: var(--accent); padding-top: 20px;}
.th-text .not-shown-ajax, .th-text h1 a, .th-text h1 small {display: none;}
.th-text h1 {font-size: 18px;}
.th-text .full-text {display: -webkit-box; -webkit-line-clamp: 6; line-clamp: 6; 
	-webkit-box-orient: vertical; overflow: hidden; margin: 15px 0;}
.th-text .page__btn-trailer {width: 100%; margin-top: 20px;}


/* FOOTER, PAGINATION
----------------------------------------------- */
.footer__notify {border-left: 1px solid var(--bdc); padding-left: 20px;}
.footer__copyright {font-size: 14px;}
.footer__menu {font-size: 16px; font-weight: 700; text-transform: uppercase; font-family: 'Oswald', sans-serif;;}

.pagination {gap: 20px 10px; padding-top: 10px;}
.pagination__pages a, .pagination__pages span, .pagination > a, .pagination > span 
{display: grid; place-items: center; color: var(--tt-fade);
	height: 36px; min-width: 36px; padding: 0 10px; border-radius: 3px; background-color: var(--bg);}
.pagination__pages {gap: 10px; font-size: 14px;}
.pagination__pages span:not(.nav_ext) {color: #fff; background: var(--accent);}
.pagination__btns {height: 36px; border-radius: 4px; overflow: hidden; background-color: var(--bg); box-shadow: var(--bsh);}
.pagination__btns > * {width: 40px; display: grid; place-items: center; color: var(--accent); font-size: 18px;}
.pagination__btns > span {color: var(--tt-fade);}
.pagination__btn-loader:has(span:not(.fal)) {display: none;}
.pagination__btn-loader a {min-width: 360px;}


/* INNER PAGE
----------------------------------------------- */
.page__bg {box-shadow: var(--bsh-block); background-color: var(--bg); margin: 0 var(--indent-negative);}
.page__cols {display: grid; grid-template-columns: minmax(0,1fr) 280px;}
.page__cols:not(:has(.page__cols-right)) {display: block;}
.page__cols-left {padding: 20px; padding-bottom: 0;}
.page__cols-right {background-color: var(--bg-darker-1); padding: 20px;}
.page__main {display: grid; gap: 15px 20px; grid-template-columns: 200px minmax(0,1fr); 
	grid-template-areas: "poster header" "poster info"; grid-template-rows: auto 1fr; margin-bottom: 25px;}
.page__main-news {display: grid; gap: 15px 20px; grid-template-areas: "poster header" "poster info"; grid-template-rows: auto 1fr; margin-bottom: 25px;}
.page__main-news h2,h3,h4,h5 {margin:15px 0;}
.page__main-news .page__text .full-text {color:#666;!important}
.img__news {display: block; text-align: center; margin: 10px 0;}
.block__iframe {text-align: center;}
.page__poster {grid-area: poster; overflow: hidden; align-self: start;}
.gold-frame-poster {
  padding: 6px;
  background: 
    linear-gradient(135deg, #d4af37 0%, #f9d423 50%, #d4af37 100%),
    linear-gradient(#000, #000);
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gold-frame-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #333;
}

.page__poster .page__img {
	border-radius: 6px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.page__header {grid-area: header;}
.page__info {grid-area: info;}

.page__poster .download {
background: #79C142;
filter: drop-shadow(0px 4px 0px #3BB33B);
text-decoration:none;
display:flex;
align-items:center;
justify-content: center;
gap:5px;
cursor:pointer;
color: #000;
/* font-size: 19px; */
font-style: normal;
font-weight: 700;
line-height: normal;
width:100%;
max-width:329px;
border-radius:10px;
margin:0 0 20px 0;
min-height: 2.25rem;
}

.page__poster .download:hover {
background:#3BB33B;
}

.page__poster .docs {
text-decoration:none;
display:block;
cursor:pointer;
border:2px #000 solid;
padding:10px;
text-align:center;
width:100%;
max-width:329px;
border-radius:10px;
color: #000;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin:0 0 40px 0;
}

.page__poster .docs:hover {
background:#000;
color:#fff;
}

.page__img::after {opacity: 0.5; height: 33%;}
.page__rating-ext {position: relative; z-index: 10; font-size: 12px;}
.page__rating-ext a {display: flex; align-items: center; padding: 0 10px; font-weight: 500; gap: 10px; height: 40px;}
.page__rating-ext a .fal {display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; 
	font-size: 16px; color: #fff; background-color: var(--green);}
.page__rating-ext a + a .fal {background-color: var(--red);}
.page__ratingscore-ring {width: 50px; font-weight: 500; font-size: 16px; 
	background-color: var(--bg); color: var(--tt); box-shadow: var(--bsh); 
	position: absolute; left: 50%; top: 0; translate: -50% -50%; isolation: isolate;}
.page__ratingscore-ring::before {content: ''; position: absolute; z-index: -2; inset: 0; border-radius: 50%; 
	background: conic-gradient(from 0deg, #FDC830 0%, #F37335 var(--p), var(--bg-darker-1)  var(--p));}
.page__ratingscore-ring::after {content: ''; position: absolute; z-index: -1; 
	background-color: var(--bg); inset: 3px; border-radius: 50%;}

.page__header h1 {font-size: 20px; font-weight: 700;}
.page__header h1 a {font-size: 12px; margin-left: 10px;}
.page__text .full-text {color: #888; line-height: 1.4;}
.page__text {margin: 20px 0 20px 0;}
.js-hide-text {max-height: 160px; overflow: auto;}
.show-text {position: absolute; z-index: 2; left: 0; bottom: 0px; width: 100%; height: 34px; font-size: 12px;
	box-shadow:0 0 0 1px #ccc,2px 3px 3px 0 rgba(0,0,0,0.1); background-color: var(--bg); color: var(--tt);}
.js-hide-text[style]::before {content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 60%; 
	background: linear-gradient(to top, var(--bg) 20%, transparent 100%); z-index: 1;}
.page__list {line-height: 1.6; display: grid; gap: 0 20px; 
	grid-template-columns: repeat(auto-fill,minmax(300px,1fr));}
.page__list li > span:first-child {font-weight: 700; margin-right: 5px;}
.page__list-wide {grid-column: 1 / -1;}
.page__list-rates {grid-row: span 2;}
.page__list-rates-item {font-size: 15px; padding-left: 30px; line-height: 20px; font-weight: 600;}
.page__list-rates-item.kp {background: url(../images/kp.svg) 0 center / 20px no-repeat;}
.page__list-rates-item.imdb {background: url(../images/imdb.svg) 0 center / 20px no-repeat;}
.page__list-rates-item.tmdb {background: url(../images/tmdb.svg) 0 center / 20px no-repeat;}
.link-fullstory a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    background: 
        linear-gradient(to right, currentColor 0%, currentColor 100%) 
        left bottom / 0% 2px 
        no-repeat;
    padding-bottom: 2px; /* Отступ для полосы */
    transition: 
        background-size 0.4s ease, 
        color 0.3s ease;
}

.link-fullstory a:hover {
    color: var(--accent);
    background-size: 100% 2px; /* Растягиваем фон на всю ширину */
}
.page__subtitle {border-top: 1px solid var(--bdc); margin: 0 -20px; padding: 10px 15px; 
	text-align: center; font-size: 18px; font-weight: 600;}
.studio-link {
    		display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .studio-link svg {
            display: block;
        }

.page__scr ul {display: grid; gap: 20px; grid-template-columns: repeat(4,1fr);  
	border-top: 1px solid var(--bdc); margin: 0 -20px; padding: 20px 20px;}
.page__scr img {object-fit: cover;}
.page__scr ul li:nth-child(4) ~ li {display: none;}

.page__player {position: relative; background-color: var(--bg-black); padding: 0;}
.page__player .tabs-block__select {gap: 1px; margin-bottom: 0px;}
.page__player .tabs-block__select button {background: var(--bg-blackest); color: #fff; border-radius: 0; font-weight: 600;}
.page__player .tabs-block__select button.is-active, .page__player .tabs-block__select button:hover {background: var(--accent); color: #fff;}
.page__complaint a {display: flex; align-items: center; gap: 10px; color: var(--red); --red: #f37e7c;}
.page__complaint {padding-right: 20px; --tt: #fff; color: #fff; --ui-bg-darker: rgba(255,255,255,0.3);}
.nl .page__player-controls + .tabs-block__content {display: block;}
.page__player .tabs-block__select button.is-active::before {color: rgba(0,0,0,0.8);}
.ya-share2 {min-height: 24px;}
.page__fav a, .page__fav > span {cursor: pointer; display: flex; align-items: center; gap: 5px; 
	color: var(--tt-fade); --tt-fade: #ccc; padding: 4px; font-weight: 600;}
.page__fav .tg_butt {background-color: #f0f0f0; border-radius: 4px; padding: 3px 5px; color: #000000; text-transform: uppercase; font-weight: 600;}
.page__fav a:has(.fav-added) .fal {color: var(--yellow);}
/* .page__player-bottom {padding-left: 20px;} */
.page__player-bottom {padding: 0.5rem;}
.page__likes a {display: flex; align-items: center; gap: 10px; height: 40px; padding: 0 20px;
	background-color: var(--green); color: #fff;}
.page__likes a:last-child {background-color: var(--red);}
.dark-overlay {background: rgba(0,0,0,0.9); position: fixed; width: 100%; height: 100%; z-index: 100; top: 0; left: 0;}
.light-off #scrolltop {visibility: hidden;}
.light-off .page__player {position: relative; z-index: 102;}

.page__cols:has(.page__player) .page__cols-right {background-color: var(--bg-blackest); 
	color: #fff; --tt: #fff; --tt-fade: #ccc;--bdc: rgba(255,255,255,0.2);}
.page__fr {position: absolute; inset: 0;}
.page__fr-caption {height: 40px; display: flex; align-items: center; padding: 0 20px; 
	font-size: 14px; text-transform: uppercase; background-color: #000; font-weight: 600;}
.page__fr .sect__content {padding: 20px; height: calc(100% - 40px); overflow-x: hidden; overflow-y: auto; 
	display: grid; gap: 20px; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); align-content: start;}
.fr.is-active {padding-right: 55px;}
.fr__img {width: 50px;}
.fr__title {font-weight: 500;}
.fr__subtitle, .fr__meta {font-size: 12px; color: var(--tt-fade);}
.fr__meta::before {color: var(--yellow);}
.fr.is-active:after {content: attr(data-text); font-size: 10px; font-weight: 500; color: var(--tt-fade); 
	border-left: 1px solid var(--bdc); width: 35px; padding-left: 10px; padding-right: 0; text-transform: uppercase;
	position: absolute; right: 0; top: 50%; transform: translateY(-50%);}

.page__schedules {border: 1px solid;}
.page__schedule {border: 1px solid var(--bdc);}
.schedule-item {padding: 6px 20px; gap: 10px 20px;}
.schedule-item + .schedule-item {border-top: 1px solid var(--bdc);}
.schedule-item__number {font-weight: 600; width: 280px;}
.schedule-item__descr {color: var(--tt-fade);}
.schedule-item__descr b {display: block; color: var(--tt); font-size: 15px;}
.schedule-item__date {color: var(--tt-fade);}
.schedule-item__status {color: var(--green); font-size: 24px;}
.schedule-item__status .fa-times {color: var(--red);}

.page__cols:has(.page__comments) {margin: 0 var(--indent-negative);}
.top-users__title {font-size: 18px; font-weight: 600; margin-bottom: 20px;}
.top-users__content {display: grid; gap: 10px; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); 
	counter-reset: n; font-size: 12px; font-weight: 500; line-height: 1.1;}
.tuser:not(:last-child) {padding-bottom: 10px; border-bottom: 1px solid var(--bdc);}
.tuser__name {font-weight: 600;}
.tuser::before {
	content: counter(n, decimal-leading-zero);
    counter-increment: n;
    color: var(--bg);
    background-color: var(--accent);
    padding: 5px;
    border-radius: 50%;
    font-weight: 800;}
.tuser__ava {width: 24px;}
.tuser__rating {height: 20px; font-size: 10px; padding: 0 10px; border-radius: 10px; font-weight: 400;
	border: 1px solid var(--bdc); color: var(--tt-fade); line-height: 1; text-transform: uppercase;}
.tuser__rating::before {color: var(--yellow);}
.rkl--holder {display: grid; place-items: center; font-weight: 600; font-size: 24px;
	background: var(--bg-darker); color: rgba(0,0,0,0.2); height: 500px;}
.page__cols-right .rkl {position: sticky; left: 0; top: 20px;}

/* ACTORS, SPOILER */
  .actors-slider {
    display: flex;
    padding: 10px 0;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  .actors-slider::-webkit-scrollbar {
    height: 6px;
  }
  
  .actors-slider::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .actors-slider::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
  }
  
  .div__actors {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--tt);
    transition: all 0.3s ease;
    min-width: 90px;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
  }
  
  .div__actors:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.7);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .tuser__ava {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-radius: 50%;
  }
  
  .div__actors:hover .tuser__ava {
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }
  
  .tuser__ava img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .actor-name {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: #444;
  }
  
  /* Адаптивность */
  @media (max-width: 768px) {
    .actors-slider {
      gap: 12px;
    }
    
    .div__actors {
      min-width: 80px;
    }
    
    .tuser__ava {
      width: 60px;
      height: 60px;
    }
    
    .actor-name {
      font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .actors-slider {
      gap: 10px;
      padding: 10px 5px;
    }
    
    .div__actors {
      min-width: 70px;
      padding: 5px;
    }
    
    .tuser__ava {
      width: 50px;
      height: 50px;
      margin-bottom: 6px;
    }
    
    .actor-name {
      font-size: 11px;
    }
  }
.spoiler_label {display:block;background:#48494b;height:40px;color:#fff;text-align:center;line-height: 40px;font-weight: 600; cursor: pointer; border-radius: 8px;}
.spoiler-block {margin-bottom: 15px;}
.spoiler-block > input[type=checkbox] {display: none;}
.spoiler-block input:checked + label:before {content: "✓ ";}
.spoiler_checkbox {position: absolute;left: 10px;bottom: 51px;}
.title_spoiler{background: var(--tt)!important;display: flex; align-items: center;}
.text_spoiler{background: var(--bg);}
.emoji-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 5px;
}

.emoji-block .emoji {
    font-size: 2em;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.emoji-block .emoji:hover {
    transform: scale(1.2);
    transition: transform 0.3s;
}

/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
----------------------------------------------- */
.page__title {margin-bottom: 30px; font-size: 24px;}
.full-text {line-height: 1.6; font-size: 14px; word-wrap: break-word; color: var(--tt-fade-0);}
.full-text a {text-decoration: underline; color: var(--ui-accent);}
.full-text img:not(.emoji), .full-text p, .full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5, 
.full-text > ul, .full-text > ol, .full-text table {margin-bottom: 25px;}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text > ul li, .full-text > ol li {padding-left: 60px; position: relative;}
.full-text > ul li:before {content: ''; width: 8px; height: 8px; border-radius: 50%; 
	border: 3px solid var(--accent); position: absolute; top: 6px; left: 34px;}
.full-text > ol {counter-reset: num;}
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: var(--accent); color: #fff; 
	position: absolute; top: -3px; left: 17px; width: 24px; height: 30px; font-size: 14px; font-weight: 600;
	display: flex; justify-content: flex-end; align-items: center; padding-right: 6px; box-sizing: border-box;}
.full-text > ol li:after {content: ''; border: 10px solid transparent; border-left-color: var(--accent); 
	position: absolute; left: 41px; top: -3px; transform: scale(0.66,1.5); transform-origin: 0 0;}
.full-text > ul li + li, .full-text > ol li + li {margin-top: 10px;}
.full-text table, .video-inside > * {width:100%;}
.full-text > *:last-child {margin-bottom: 0;}
.video-responsive {height: 450px; position: relative; background-color: #000;}
.video-responsive > iframe, .video-responsive > video {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 21px; margin-bottom: 20px;}
.status__class {background-color: var(--accent);font-weight: 700;font-size: 14px;color: #fff!important;padding: 2px 4px;}
.age__class {background-color: #FF0000;font-weight: 700;font-size: 14px;color: #fff!important;padding: 2px 4px;}
.under__seo {margin: 15px 5px;}
/* COMMENTS
----------------------------------------------- */
.page__comments {padding-bottom: 10px;}
.page__comments-info {color: var(--tt-fade); display: block; margin: 5px 0 20px; font-size: 14px; padding-left: 23px; position: relative;}
.page__comments-info::before {color: var(--red); position: absolute; left: 0; top: 2px;}
.page__ac {margin-bottom: 10px;}
.ac-form {position: relative;}
.ac-form__header, .ac-form__editor, .ac-form .message-info {gap: 10px; margin-bottom: 10px;}
.ac-form__btn {padding: 0 60px;}
.ac-form__bottom {gap: 25px;}
.confidential-check {font-size: 14px;}
.ac-form__header > span {margin-left: 15px;}
.ac-form .comments_subscribe {margin-top: 0px;}

.ac-toggle.ac-form {cursor: pointer;}
.ac-form__header1 input, .ac-form__editor1 textarea {background-color: rgba(0,0,0,0.02);}
.ac-toggle, .ac-toggle .ac-form__editor {position: relative;}
.ac-toggle .ac-form__bottom button {position: absolute; bottom: 20px; right: 10px; z-index: 10; pointer-events: none;}
.ac-form .bb-btn {display: none;}
.ac-form .bb-pane {background: none; box-shadow: none; border: 0; position: absolute; left: 0; bottom: 0; right: 0;}
.ac-form #b_emo, .ac-form #b_leech, .ac-form #b_quote, .ac-form #b_spoiler, 
.ac-form #b_b, .ac-form #b_u, .ac-form #b_s, .ac-form #b_color, .ac-form #b_hide {display: grid;}
.ac-toggle .bb-btn {pointer-events: none;}
.ac-toggle .ac-form__editor .bb-editor textarea {height: 200px; resize: none;}
.ac-form__editor .bb-editor textarea {height: 200px; line-height: 1.4; padding-bottom: 40px;}
.comments_subscribe + br, .ac-form .bb-editor + br {display: none;}
.ac-toggle .has-checkbox {display: none;}

.mass_comments_action {display: none; align-items: center; flex-wrap: wrap; gap: 10px;}
.mass_comments_action select {flex: 1 1 0; margin: 0 -28px 0 0; border-radius: 0; box-shadow: none; min-width: 60%;}
.mass_comments_action .bbcodes {border-radius: 0; padding: 0 10px;}

.comm__title {font-size: 18px; margin-bottom: 20px;}

.comm {margin-bottom: 10px; position: relative; padding: 15px 20px; 
	padding-left: 90px; background-color: var(--bg-darker-1); border-radius: 6px;}
.comm.pos {background-color: rgba(59, 179, 59, 0.1);}
.comm.neg {background-color: rgba(235, 77, 75,0.1);}
.comm__group {height: 20px; display: flex; align-items: center; border-radius: 10px; font-size: 10px; 
	border: 1px solid var(--bdc); padding: 0 10px; text-transform: uppercase;}
.comm__group, .comm__group * {font-weight: 400; color: var(--tt) !important;}
.comm__group.adm, .comm__group.adm * {color: #fff !important; background-color: var(--accent); border-color: var(--accent);}
.comm__img {width: 50px; height: 50px; border-radius: 50%; position: absolute; left: 20px; top: 20px;}
.comm__user-rating {position: absolute; left: 50%; top: 100%; translate: -50% 0; gap: 3px; margin-top: 8px;
	background-color: var(--bg); z-index: 5; white-space: nowrap; padding: 0; width: 48px;}
.comm__letter {width: 100%; height: 100%; text-transform: uppercase; border-radius: inherit;
	position: absolute; left: 0; top: 0; color: #fff; font-size: 18px; font-weight: 600;}
.comm__author, .comm__author a {color: var(--accent); font-weight: 600; font-size: 14px;}
.comm__date {color: var(--tt-fade); font-size: 12px;}
.show-items, .show-text {height: 20px; padding: 0 10px; font-size: 12px;}
.show-text {position: absolute;
    bottom: -5px;
    padding: 15px 0;
    color: var(--accent);
    background: var(--bg);
    text-decoration: none;}
.comm__rating a {color: var(--green); font-size: 18px;}
.comm__rating a:last-child {color: var(--red);}
.comm__rating span {font-size: 14px;}
.comm__rating span .ratingplus {color: var(--green);}
.comm__rating span .ratingminus {color: var(--red);}
.comm__text {margin: 8px 0;}
.comm__action {font-size: 12px; --tt: var(--tt-fade); color: var(--tt-fade);}
.comm__ctrl-btn {font-size: 18px; height: 30px; --tt: var(--tt-fade);}
.comm__ctrl-menu li + li {margin-top: 10px;}
body:has(.pwidget) #dropmenudiv {z-index: 1000 !important;}


/* POPUP WIDGET
----------------------------------------------- */
.pwidget {background-color: var(--bg); color: var(--tt); 
	border-radius: 20px; overflow: hidden; z-index: 999; padding: 20px; padding-top: 24px; 
	position: fixed; left: 20px; bottom: 20px; right: 20px; box-shadow: 0 0 60px rgba(0,0,0,0.5);}
.pwidget::before {content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); 
	background-color: rgba(0,0,0,0.2); height: 4px; width: 40px; border-radius: 2px;}
.pwidget .wctrl__content {display: block; margin-bottom: 20px;}
@media screen and (min-width: 760px) {
	.pwidget {left: 50%; bottom: 50%; right: auto; translate: -50% 50%; width: 400px;}
	.pwidget::before {display: none;}
}

.flexnew {display:flex; gap:30px; margin:0 0 40px 0;}

.flexnew .colright {flex:1;}

.flexnew figure {width:120px;}

.page__fav.p-relative.ml-auto {
    display: flex;
    align-items: center;
	flex-wrap:wrap;
    gap:15px;
}

.b-post__schedule_block:nth-of-type(n+3) {display:none;}
.b-post__schedule_block.active {display:block;}

.showall {
    margin: 20px auto 0 auto;
    cursor: pointer;
    background: #48494b;
    color: #fff;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    padding: 10px;
    width: 100%;


}



@media screen and (max-width: 760px) {

.flexnew {flex-direction:column;}
.flexnew figure {margin:0 auto;}



}


/* LOGIN
----------------------------------------------- */
.lgn {position: fixed; z-index: 999; left: 50%; top: 50%; translate: -50% -50%; width: 500px; max-width: calc(100% - 40px);}
.lgn__content {background-color: var(--bg); box-shadow: var(--bsh-long); padding: 30px 60px; position: relative;}
.lgn__ctrl > * {color: #fff !important; font-size: 19px; font-weight: 600; height: 45px; position: relative; text-transform: uppercase;}
.lgn__ctrl span::before {content: ''; border: 10px solid transparent; border-bottom-color: var(--bg); 
	position: absolute; left: 50%; bottom: 0; margin-left: -10px; z-index: 5;}
.lgn__btn-close {font-size: 40px; color: #fff; position: absolute; right: -50px; top: 0; z-index: 10;}
.lgn__header {position: relative; padding-left: 80px; margin-bottom: 15px;}
.lgn__avatar {width: 60px; background-color: var(--bg-darker); font-size: 24px; 
	position: absolute; left: 0; top: 50%; translate: 0 -50%; overflow: hidden; border-radius: 50%;}
.lgn__title {font-size: 19px; font-weight: 600;}
.lgn__caption {color: var(--tt-fade); margin-top: 5px;}
.lgn__input input {height: 50px; line-height: 50px; border-radius: 0; padding: 0 30px;}
.lgn__input input::placeholder {font-size: 16px;}
.lgn__input input + input {margin-top: -1px;} 
.lgn__input input:focus {position: relative; z-index: 5;}
.lgn__btn button {height: 50px;}
.lgn__cell a {color: var(--ui-accent);}
.lgn__social-caption {font-size: 13px; color: var(--tt-fade); margin-top: 5px;}
.lgn__social-caption::before, .lgn__social-caption::after {content: ''; flex-grow: 1; background: var(--bdc); height: 1px;}
.lgn__social a {border-radius: 50%; width: 34px; height: 34px; display: grid; place-items: center;}
.lgn__social a img {height: 18px; width: 18px; display: block; filter: invert(1);}
.lgn__social-vk {background-color: #587ba1;}
.lgn__social-ok {background-color: #ff9800;}
.lgn__social-fb {background-color: #3b5998;}
.lgn__social-ml {background-color: #2196f3;}
.lgn__social-gg {background-color: #f44336;}
.lgn__social-ya {background-color: #fc3f1d;}
.lgn__social:not(:has(a)) {display: none;}
.lgn--logged {width: 400px;}
.lgn__menu a {display: flex; align-items: center; gap: 10px;}
.c-0 span {display: none;}



/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel {width: 100%; position: relative; z-index: 1;}
.owl-stage {position: relative; display:flex; justify-content:flex-start;}
.owl-stage-outer {position: relative; overflow: hidden; transform: translate3d(0px, 0px, 0px);}
.owl-item {position: relative; min-height: 10px;}
.owl-nav.disabled, .owl-dots.disabled, .owl-carousel.owl-refresh .owl-item {display: none;}
.owl-carousel.owl-drag .owl-item {user-select: none;}
.owl-carousel.owl-grab {cursor: move; cursor: grab;}
.owl-nav {position: absolute; right: 0; top: 0; margin-top: -45px; display: flex; gap: 5px;}
.owl-prev, .owl-next {cursor: pointer; width: 30px; height: 30px; display: grid; place-items: center; 
	font-size: 18px; background-color: transparent; color: #fff; box-shadow: none; border-radius: 4px;}
.owl-prev {opacity: 0.6;}
.owl-next {opacity: 1;}


/* CLS FIX
----------------------------------------------- */
.has-carousel:not(.owl-carousel) {display: flex; overflow: hidden; gap: 20px;}
.has-carousel:not(.owl-carousel) > * {flex-shrink: 0;}
.has-carousel:not(.owl-carousel) > .item {width: calc((100% - 100px)/6);}

@media screen and (max-width: 1220px) {
	.has-carousel:not(.owl-carousel) > .item {width: calc((100% - 80px)/5);}
}
@media screen and (max-width: 950px) {
	.has-carousel:not(.owl-carousel) > .item {width: calc((100% - 60px)/4);}
}
@media screen and (max-width: 760px) {
	.has-carousel:not(.owl-carousel) > .item {width: calc((100% - 40px)/3);}
}
@media screen and (max-width: 470px) {
	.has-carousel:not(.owl-carousel) > .item {width: calc((100% - 20px)/2);}
}

.filter-block {background-color: var(--bg); margin: 0 var(--indent-negative); margin-bottom: 20px; padding: 20px var(--indent);}
.filter {gap: 10px 20px;}
.filter-block__title {font-size: 16px; font-weight: 500; margin-bottom: 20px;}
.filter__col:not(.filter__col--submit) {flex: 1 0 240px; max-width: 100%; min-width: 240px; display: flex; flex-direction: column; gap: 10px;}
.filter__cell select {height: 40px; box-shadow: none; border: 1px solid rgba(0,0,0,0.15);
	background-color: var(--bg); color: var(--tt);}
.filter__cell input[type="text"] {opacity: 0;}
.filter__cell [data-dlefilter="reset"]:not(:hover) {background-color: var(--bg-darker); color: var(--tt-fade);}
.filter__col--ranges {padding: 0 20px;}
.filter-block--full .filter__col--submit {width: 100%;}
.filter-block--full {background: none; box-shadow: none; padding: 0; margin: 0;}

.tail-select, .tail-select * {outline: none; user-select: none;}
.tail-select {position: relative;}
.tail-select-container, .select-label {border: 1px solid rgba(0,0,0,0.15); background-color: var(--bg); 
	padding: 5px 5px; min-height: 40px; position: relative; cursor: pointer; color: var(--tt);
	display: flex; flex-wrap: wrap; align-items: center; gap: 5px; padding-right: 40px; border-radius: 3px;}
.tail-select .label-inner {margin-left: 5px; font-size: 14px;}
.tail-select-container .select-handle {display: flex; align-items: center; height: 28px; padding: 0 8px; border-radius: 2px; 
	background-color: var(--accent); color: #fff; cursor: pointer; font-size: 12px; text-transform: uppercase;}
.tail-select .select-label::before, .tail-select .select-label::after {position: absolute; top: 50%; right: 10px;
	content:"\f0d8"; color: var(--tt); margin-top: -15px; opacity: 0.5;}
.tail-select .select-label::after {margin-top: -5px; transform: rotate(180deg);}

.tail-select .select-dropdown {top: 100%; left: 0; width: 100%; z-index: 100; display: none; position: absolute;
    background-color: var(--bg); border: 1px solid rgba(0,0,0,0.15); box-shadow: var(--bsh); border-radius: 3px;}
.tail-select .select-dropdown .dropdown-inner {padding: 1px 0; overflow-x: hidden; overflow-y: auto; max-height: 300px;}
.tail-select .dropdown-optgroup {padding: 15px;}
.tail-select .select-dropdown .dropdown-empty {padding: 20px; font-size: 14px; text-align: center;}
.tail-select .select-dropdown ul li + li {margin-top: 10px;}
.tail-select .select-dropdown ul li {display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px;}
.tail-select .select-dropdown ul li.dropdown-option::before {content: ""; background-color: var(--bg-darker);
    width: 18px; height: 18px; border-radius: 1px; box-shadow: inset 0 1px 2px rgba(0,0,0,0.2); 
	display: flex; justify-content: center; font-size: 14px; color: #000; flex-shrink: 0; 
	box-sizing: border-box; padding-bottom: 3px;}
.tail-select .select-dropdown ul li.dropdown-option.selected {color: var(--accent);}
.tail-select .select-dropdown ul li.dropdown-option.selected::before 
{background-color: var(--accent); color: #fff; content:"\f00c"; box-shadow: none;}
.tail-select .select-dropdown ul li:hover {color: var(--blue);}
.tail-select-container:hover, .select-label:hover {border-color: var(--accent);}
.tail-select-container .select-handle:hover {background-color: var(--red);}

.irs {position: relative; display: block; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none;
	-moz-user-select: none; -ms-user-select: none; user-select: none;}
.irs-line {position: relative; display: block; overflow: hidden; outline: none !important;}
.irs-line-left, .irs-line-mid, .irs-line-right {position: absolute; display: block; top: 0;}
.irs-line-left {left: 0; width: 11%;}
.irs-line-mid {left: 9%; width: 82%;}
.irs-line-right {right: 0; width: 11%;}
.irs-bar {position: absolute; display: block; left: 0; width: 0;}
.irs-bar-edge {position: absolute; display: block; top: 0; left: 0;}
.irs-shadow {position: absolute; display: none; left: 0; width: 0;}
.irs-handle {position: absolute; display: block; cursor: default; z-index: 1;}
.irs-handle.type_last {z-index: 2;}
.irs-min {position: absolute; display: block; left: 0; cursor: default;}
.irs-max {position: absolute; display: block; right: 0; cursor: default;}
.irs-from, .irs-to, .irs-single {position: absolute; display: block; top: 0; left: 0; cursor: default; white-space: nowrap;}
.irs-grid {position: absolute; display: none; bottom: 0; left: 0; width: 100%; height: 20px;}
.irs-with-grid .irs-grid {display: block;}
.irs-grid-pol {position: absolute; top: 0; left: 0; width: 1px; height: 8px; background: #ec2828;}
.irs-grid-pol.small {height: 4px;}
.irs-grid-text {position: absolute; bottom: 0; left: 0; white-space: nowrap; text-align: center;
font-size: 9px; line-height: 9px; padding: 0 3px; color: #ec2828;}
.irs-disable-mask {position: absolute; display: block; top: 0; left: -1%; width: 102%; height: 100%;
cursor: default; background: rgba(0,0,0,0.0); z-index: 2;}
.irs-disabled {opacity: 0.4;}
.lt-ie9 .irs-disabled {filter: alpha(opacity=40);}
.irs-hidden-input {position: absolute !important; display: block !important; top: 0 !important; left: 0 !important;
width: 0 !important; height: 0 !important; font-size: 0 !important; line-height: 0 !important; padding: 0 !important;
margin: 0 !important; outline: none !important; z-index: -9999 !important; background: none !important;
border-style: solid !important; border-color: transparent !important;}

.irs {height: 40px;}
.irs-line {height: 6px; top: 25px; background-color: var(--bg); border-radius: 3px; 
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);}
.irs-bar {height: 6px; top: 25px; background-color:var(--blue); border-radius:3px;}
.irs-bar-edge {top: 25px; height: 8px; width: 11px; background-color:var(--bg);}
.irs-handle {width: 20px; height: 20px; top: 18px; background-color:var(--bg); border-radius:10px; 
	border: 4px solid var(--blue); box-shadow: 0 1px 3px rgba(0,0,0,0.3); cursor: pointer;}
.irs-from, .irs-to, .irs-single {font-size: 10px; margin-top: -5px; border: 1px solid var(--bdc);
	padding: 0 5px; height: 22px; display: flex; align-items: center; 
	background: var(--bg); color: var(--tt); border-radius: 3px;}


.b-post__schedule_block {
    margin-bottom: 3px;
    background: var(--bg-darker);
}
.b-post__schedule_block_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 10px 18px;
    cursor: pointer;
}
.b-post__schedule_block_title .title {
    color: var(--tt);
    float: left;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}

.b-post__schedule_block_title .fal {margin-right: 10px;}

.b-post__schedule_table {
    color: var(--tt);
    font-size: 14px;
    width: 100%;
}
.b-post__schedule_table td {
    padding: 10px 0 10px 10px;
    border-top: 1px solid var(--tt);
}
.td-1 {
    width: 20%;
}
.td-2 {
    width: 40%;
}
.td-4 {
    text-align: right;
    white-space: nowrap;
    width: 20%;
}
.b-post__schedule_table .td-5 {
    text-align: center;
    width: 10%;
}
.b-post__schedule_table .exists-episode {
    color: var(--tt);
}

/*--- RATING ---*/
.unit-rating{list-style:none;margin:0;padding:0;width:171px;height:17px;position:relative;
background:url(../dleimages/rating.png) repeat-x; display:inline-block;}
.unit-rating li{text-indent:-90000px;padding:0;margin:0;float:left}
.unit-rating li a{display:block;width:17px;height:17px;text-decoration:none;text-indent:-9000px;
z-index:17;position:absolute;padding:0}
.unit-rating li a:hover{background:url(../dleimages/rating.png) 0 -17px;z-index:2;left:0}
.unit-rating a.r1-unit{left:0}
.unit-rating a.r1-unit:hover{width:17px}
.unit-rating a.r2-unit{left:17px}
.unit-rating a.r2-unit:hover{width:34px}
.unit-rating a.r3-unit{left:34px}
.unit-rating a.r3-unit:hover{width:51px}
.unit-rating a.r4-unit{left:51px}
.unit-rating a.r4-unit:hover{width:68px}
.unit-rating a.r5-unit{left:68px}
.unit-rating a.r5-unit:hover{width:85px}
.unit-rating a.r6-unit{left:85px}
.unit-rating a.r6-unit:hover{width:102px}
.unit-rating a.r7-unit{left:102px}
.unit-rating a.r7-unit:hover{width:119px}
.unit-rating a.r8-unit{left:119px}
.unit-rating a.r8-unit:hover{width:136px}
.unit-rating a.r9-unit{left:136px}
.unit-rating a.r9-unit:hover{width:153px}
.unit-rating a.r10-unit{left:153px}
.unit-rating a.r10-unit:hover{width:170px}
.unit-rating li.current-rating{background:url(../dleimages/rating.png) 0 -34px;position:absolute;
height:17px;display:block;text-indent:-9000px;z-index:1}

.footer__notify .download {
background: #79C142;
filter: drop-shadow(0px 4px 0px #3BB33B);
text-decoration:none;
display:flex;
align-items:center;
justify-content: center;
gap:5px;
cursor:pointer;
padding:5px;
color: #000;
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
width:100%;
max-width:329px;
border-radius:10px;
margin: 0 auto;
margin-top:5px;
}

.footer__notify.mr-auto.link_footer a {
    border-bottom: 1px solid;
	font-weight: 600;
}

.footer__notify .download:before {
content:"";
width:24px;
height:25px;
background:url(../images/new-section-icon2.svg) no-repeat;
}

.footer__notify .download:hover {
background:#3BB33B;
}

.lord-rating {background-color: var(--bg-darker-1);
    padding: 5px;
    border-radius: 8px;}

.page__lord_rating {
	display: flex;
}

@media screen and (max-width: 950px) {
	.page__lord_rating {
		flex-wrap: wrap;
	}

	.page__lord_rating .lord_ratings {
		flex-wrap: wrap;
		margin-bottom: 1.5rem;
	}
}

@media screen and (max-width: 760px) {
	.page__lord_rating {
		justify-content: center;
		text-align: center;
	}
}

.page__lord_rating .lord_ratings {
	display: flex;
}

.page__lord_rating .lord_ratings li {
	display: flex;
	flex-direction: column;
	margin-right: 0.7rem;
	align-items: center;
}

.page__lord_rating .lord_ratings li > span:first-child {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.125rem;
}

.page__lord_rating .lord_ratings li > span:last-child {
	color: #888;
    font-weight: 700;
    border-bottom: 1px dotted var(--grey);
}

.page__lord_rating .lord-unit-rating {
	display: flex;
}

.page__lord_rating .lord-unit-rating a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 999px;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 600;
}

.page__lord_rating .lord-unit-rating .lord-r1-unit,
.page__lord_rating .lord-unit-rating .lord-r2-unit,
.page__lord_rating .lord-unit-rating .lord-r3-unit,
.page__lord_rating .lord-unit-rating .lord-r4-unit {
	color: rgb(220 38 38);
}

.page__lord_rating .lord-unit-rating .lord-r5-unit,
.page__lord_rating .lord-unit-rating .lord-r6-unit,
.page__lord_rating .lord-unit-rating .lord-r7-unit {
	color: rgb(245 158 11);
}

.page__lord_rating .lord-unit-rating .lord-r8-unit,
.page__lord_rating .lord-unit-rating .lord-r9-unit,
.page__lord_rating .lord-unit-rating .lord-r10-unit {
	color: rgb(34 197 94);
}

.page__lord_rating .lord-unit-rating .lord-r1-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r2-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r3-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r4-unit:hover {
	color: rgb(239 68 68);
}

.page__lord_rating .lord-unit-rating .lord-r5-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r6-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r7-unit:hover {
	color: rgb(251 191 36);
}

.page__lord_rating .lord-unit-rating .lord-r8-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r9-unit:hover,
.page__lord_rating .lord-unit-rating .lord-r10-unit:hover {
	color: rgb(74 222 128);
}

.lord-current-rating {
	display: none;
}

.page__lord_rating .lord-unit-rating .lord-r1-unit.active,
.page__lord_rating .lord-unit-rating .lord-r2-unit.active,
.page__lord_rating .lord-unit-rating .lord-r3-unit.active,
.page__lord_rating .lord-unit-rating .lord-r4-unit.active {
	background: rgb(220 38 38);
	color: #fff;
}

.page__lord_rating .lord-unit-rating .lord-r5-unit.active,
.page__lord_rating .lord-unit-rating .lord-r6-unit.active,
.page__lord_rating .lord-unit-rating .lord-r7-unit.active {
	background: rgb(245 158 11);
	color: #fff;
}

.page__lord_rating .lord-unit-rating .lord-r8-unit.active,
.page__lord_rating .lord-unit-rating .lord-r9-unit.active,
.page__lord_rating .lord-unit-rating .lord-r10-unit.active {
	background: rgb(34 197 94);
	color: #fff;
}
    .mylists-switch, .mylists-tabs {
	list-style: none;
	margin:10px 0 40px 0px;
	text-align: center;
	display:flex; gap:10px; flex-wrap:wrap;
	transition: color 0.3s, background-color 0.3s, opacity 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s, scale 0.3s, rotate 0.3s, translate 0.3s;
    }
    .mylists-switch li, .mylists-tabs li {
        display: inline-block;
        text-decoration: none;
        padding:5px 20px;
        border:1px #79c142 solid;
            border-radius: 5px;
    }
    .mylists-switch li:hover, .mylists-tabs li:hover {
        background: #79c142;
        color: #fff;
        cursor: pointer;
    }

.mylists-switch li:hover a, .mylists-tabs li:hover a {color:#fff;}

    .mylists-switch li:last-child, .mylists-tabs li:last-child {
        margin: 0px;
    }
    .mylists-switch li.active, .mylists-tabs li.active {
        background: #79c142;
        color: #fff;
    }
    .mylists-tabs li.active a {
        color: #fff;
    }

.newaddlist {position:relative;}

.newaddlist .open {
cursor:pointer;
border:1px solid var(--tt);
padding:10px;
display:flex;
align-items:center;
justify-content: center;
gap:10px;
border-radius: 5px;
margin:0 0 15px 0;
}

.page__poster {
overflow: inherit;
}

.newaddlist .mylists-switch {margin:0px;}

.newaddlist .mylists-switch li {width:100%;}

.newaddlist .hover {
position: absolute;
    top: 0px;
    left: calc(100% + 10px);
    right: 0px;
    z-index: 9;
    background: var(--bg);
    padding: 10px;
    width: 200px;
    border: 1px solid var(--tt);
    border-radius: 5px;
    display:none;
}


@media screen and (max-width: 760px) {

.mylists-switch li, .mylists-tabs li {
    width: calc(50% - 5px);
    font-size: 12px;
}
    
.newaddlist .hover {
    top: 45px;
    left: 0;
    right: 0px;
    width: auto;
}

}

.act-tsgs {color: blue; border-bottom: 1px dotted blue}
.text-main-color-200 {font-weight: 800;}

.comma {
    display: flex;
    align-items: center;
    font-weight: bold; /* Жирный текст */
    margin-right: 5px; /* Отступ от ссылки */
}

.search__title {
    font-weight: 800;
    margin-bottom: 5px;
    margin-left: 5px;
}

.search__title:hover {
    background-color: var(--accent);
}

.carou__caption a {
    color: #fff!important;
}

.warning {
    display: inline-block;
    color: red;
    opacity: 0.5;
}

.warning .fal {
	margin: 0 5px;
}

.player {
width: 100%;
height: 350px;
}
@media (max-width: 768px) {
.player {
width: 100%;
height: 300px;
}
}
@media (max-width: 425px) {
.player {
width: 100%;
height: 200px;
}
}

.player-separator {
  height: 1px;
  background: #ddd;
  margin: 20px 0;
  position: relative;
}
.player-separator:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 1px;
  background: #ddd;
}
.player-separator:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #ddd;
}

.video-players-container {
  max-width: 100%;
}

.player-wrapper {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.player-wrapper:hover {
  transform: translateY(-3px);
}

.player-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}

.player-badge {
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  margin-right: 10px;
  border: 1px solid;
}

.player-title {
  color: #fff;
  margin: 0;
  font-size: 16px;
}

.player-content {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.player-content iframe {
  border-radius: 4px;
}

.player-divider {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.divider-text {
  padding: 0 15px;
  color: #888;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .player-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .player-badge {
    margin-bottom: 5px;
  }
}

.content-ratings {
    position: absolute;
    display: inline-block;
    right: 5px;
    top: 3px;
}

.age-badge {
    font-size: 13px;
    padding: 0px 3px;
    font-weight: 600;
    background-color: #FF0000;
    color: #fff;
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 1;
    font-weight: 800;
    border-radius: 13px;
}

.rating-badges {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.rating-item {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.imdb-rating {
    background-color: rgba(245, 197, 24, 1);
    color: #000;
}

.imdb-rating .rating-logo svg {
    scale: 1.6;
}

.kp-rating {
    background-color: rgba(63, 81, 181, 1);
    color: #fff;
}

.rating-logo {
    margin-right: 4px;
    display: flex;
    align-items: center;
}

.rating-score {
    line-height: 1;
}

  .seasons-carousel {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    margin-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #2c3e50;
  }
                    
	.seasons-carousel a::after {
  content: " сезон";
}
  
  .seasons-carousel.hidden {
    display: none !important;
  }
    .seasons-carousel {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    margin-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #2c3e50;
  }
  
  .seasons-carousel::-webkit-scrollbar {
    height: 6px;
  }
  
  .seasons-carousel::-webkit-scrollbar-track {
    background: #2c3e50;
    border-radius: 3px;
  }
  
  .seasons-carousel::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 3px;
  }
  
  .seasons-carousel a {
    flex: 0 0 auto;
    padding: 8px 16px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    scroll-snap-align: start;
    transition: background 0.3s;
  }
  
  .seasons-carousel a:hover {
    background: var(--accent);
  }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 10;
    
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 5px;
    
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    
    font-family: inherit;
    font-weight: 600;
    font-size: 12px;
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.play-icon {
    width: 26px;
    height: 26px;
}

.item__img {
    position: relative;
}

.item:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.play-btn:hover {
    background: rgba(229, 9, 20, 1);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.7);
}