@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Light.woff2) format("woff2"),url(../fonts/Gilroy-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Regular.woff2) format("woff2"),url(../fonts/Gilroy-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Medium.woff2) format("woff2"),url(../fonts/Gilroy-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-SemiBold.woff2) format("woff2"),url(../fonts/Gilroy-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Bold.woff2) format("woff2"),url(../fonts/Gilroy-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

.header {
    position: absolute;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s;
    background: transparent;
    background-image: linear-gradient( 0deg ,rgba(17,17,19,0),rgba(17,17,19,.6));
}

.header.sticky-hide {
    top: -80px;
}

.header.sticky-vis {
    top: 0;
    background: transparent;
}

.header.sticky {
    left: 0;
    right: 0;
    margin: 0 auto;
    position: fixed;
    background: var(--color6);
}

.header_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    z-index: 998;
}

.header_logo img {
    max-height: 55px;
}

@media (max-width: 768px) {
    .header_logo {
        width: 200px;
    }
}

.header_logo span {
    font-size: 30px;
    font-weight: 700;
}

.header_btn-menu {
    display: none !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 44px;
    width: 44px !important;
    min-width: 44px;
    height: 44px !important;
    padding: 0 !important;
    margin-left: 8px;
    border-radius: 12px;
    background: var(--gradient) !important;
    color: #fff;
    box-shadow: none !important;
    line-height: 1 !important;
    position: relative;
    z-index: 1003;
}

.header_btn-menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 2px;
    background: #fff;
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: margin .2s ease, opacity .18s ease, transform .2s ease;
}

.header_btn-menu span:nth-child(1) { margin-top: -6px; }
.header_btn-menu span:nth-child(2) { margin-top: 0; }
.header_btn-menu span:nth-child(3) { margin-top: 6px; }
.header_btn-menu.active span:nth-child(1) { margin-top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.header_btn-menu.active span:nth-child(2) { opacity: 0; }
.header_btn-menu.active span:nth-child(3) { margin-top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu a:not(.header-menu_hidden a) { display: block; }
.header-menu_submenu { position: relative; }

.header-menu_submenu > a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    vertical-align: 1px;
    transform: rotate(-45deg);
    transition: transform .2s ease;
}

.header-menu_hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -50%;
    top: 100%;
    z-index: 100;
    width: 750px;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--color6);
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
    transform: translateY(30px);
    transition: opacity .3s, transform .3s;
}

.header-menu_hidden a {
    display: block;
    width: calc(100% / 4 - 13px);
    padding: 10px 20px;
    border-radius: 10px;
}

.header-menu_hidden a:hover { background: var(--gradient); }

@media (min-width: 1280px) {
    .header_container {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) 280px auto;
        column-gap: 24px;
    }

    .header_logo { justify-self: start; }

    .header-menu {
        justify-self: center;
        margin: 0;
        gap: 10px 22px;
    }

    .header-search {
        justify-self: end;
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        margin: 0;
    }

    .header-ellipsis { justify-self: end; }

    .header-menu_submenu:hover > a:after { transform: rotate(45deg); }
    .header-menu_submenu:hover .header-menu_hidden {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.header-search {
    flex: 0 1 280px;
    width: 280px;
    min-width: 180px;
    margin-left: auto;
    margin-right: 15px;
    position: relative;
}

.header-search form {
    position: relative;
    z-index: 998;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 44px 15px 45px;
    border-radius: 5px;
    background: var(--light);
    color: var(--text-color1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.header-search form input {
    display: block;
    width: 100%;
    min-width: 0;
    color: var(--text-color1);
    font-family: inherit;
    opacity: .8;
}

.header-search form input::placeholder { color: var(--text-color1); }

.header-search_icon,
.header-search_voice {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1 !important;
}

.header-search_icon {
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--text-color1);
    font-size: 16px;
    opacity: .4;
}

.header-search_voice {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 15px !important;
    font-size: 18px;
    opacity: .6;
}

.header-search_icon:hover,
.header-search_voice:hover { background: transparent !important; }

@media (min-width: 1280px) {
    .header-search {
        flex: none;
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        margin: 0;
    }
}

@media (max-width: 1279px) {
    .header_container.container-fluid {
        width: calc(100% - 32px);
        min-width: 0;
        gap: 10px;
    }

    .header_logo {
        flex: 0 0 auto;
        width: auto;
        max-width: 150px;
        min-width: 0;
    }

    .header_logo img {
        width: auto;
        max-width: 100%;
        height: 48px;
    }

    button.header_btn-menu {
        display: inline-flex !important;
    }

    button.header_btn-menu.active {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 1005;
        margin: 0;
    }

    .header-menu {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1002;
        width: min(420px, 100vw);
        max-width: 100vw;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 78px 22px 32px;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 4px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        background: #2b2a2f;
        box-shadow: -20px 0 50px rgb(0 0 0 / 35%);
        transform: translate3d(100%, 0, 0);
        transition: transform .28s ease, opacity .2s ease, visibility .28s;
    }

    .header-menu.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        box-shadow: 0 0 0 100vmax rgba(8, 8, 11, .62), -20px 0 50px rgb(0 0 0 / 35%);
    }

    .header-menu > a,
    .header-menu_submenu > a {
        width: 100%;
        padding: 12px 10px;
        border-radius: 8px;
        font-size: 16px;
        line-height: 1.25;
    }

    .header-menu > a:hover,
    .header-menu_submenu > a:hover { background: rgb(255 255 255 / 6%); }

    .header-menu_submenu { width: 100%; }
    .header-menu_submenu.active > a:after { transform: rotate(45deg); }

    .header-menu_hidden,
    .header-menu_hidden.active {
        display: none;
        visibility: visible;
        opacity: 1;
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 4px 0 8px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255,255,255,.035);
        box-shadow: none;
        transform: none;
    }

    .header-menu_hidden.active {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
    }

    .header-menu_hidden a {
        width: 100%;
        min-width: 0;
        padding: 9px 10px;
        overflow-wrap: anywhere;
    }

    .header-search {
        flex: 1 1 360px;
        width: auto;
        min-width: 0;
        max-width: 420px;
        margin-left: auto;
        margin-right: 0;
        z-index: 999;
    }

    .header-search form {
        display: block !important;
        width: 100%;
        height: 44px;
        padding: 0 42px 0 40px;
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 10px;
        background: rgba(255, 255, 255, .12);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .header-search form input {
        height: 42px;
        line-height: 42px;
        padding: 0;
        color: #fff;
        opacity: .82;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .header-search_icon {
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        color: #fff;
        opacity: .55;
    }

    .header-search_voice {
        top: 50%;
        right: 0;
        padding: 0 13px !important;
        color: #fff;
        transform: translateY(-50%);
        opacity: .62;
    }

    body.header-menu-open { overflow: hidden; }

    body.header-menu-open .header-search,
    body.header-menu-open .header_logo,
    body.header-menu-open .header-ellipsis {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .header-menu {
        width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
        box-shadow: none;
    }

    .header-menu.active { box-shadow: none; }
    .header-menu_hidden.active { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .header_container.container-fluid {
        width: calc(100% - 24px);
        gap: 8px;
    }

    .header_logo { max-width: 124px; }
    .header_logo img { height: 44px; }

    .header-search {
        flex: 1 1 auto;
        max-width: none;
    }

    .header-search form {
        height: 42px;
        padding-left: 36px;
        padding-right: 38px;
        border-radius: 9px;
    }

    .header-search form input {
        height: 40px;
        line-height: 40px;
        font-size: 13px;
    }

    .header-search_icon { left: 12px; font-size: 15px; }
    .header-search_voice { padding: 0 11px !important; font-size: 16px; }

    .header_btn-menu {
        flex-basis: 42px;
        width: 42px !important;
        min-width: 42px;
        height: 42px !important;
        margin-left: 0;
    }

    button.header_btn-menu.active {
        top: 12px;
        right: 12px;
    }

    .header-menu {
        padding-top: 70px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 380px) {
    .header_container.container-fluid {
        width: calc(100% - 18px);
        gap: 6px;
    }

    .header_logo { max-width: 105px; }
    .header_logo img { height: 40px; }

    .header-search form {
        padding-left: 33px;
        padding-right: 10px;
    }

    .header-search_voice { display: none; }
    .header-search_icon { left: 11px; }
}

.search__rezo {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1004;
}

.search__rezo #searchsuggestions {
    width: 100%;
    max-height: 290px;
    margin: 0;
    padding: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 12px;
    background: var(--bg);
    box-shadow: 0 20px 20px rgb(0 0 0 / 60%);
    color: #999;
}

@media (max-width: 1279px) {
    .header-search .search__rezo {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
    }

    .header-search .search__rezo #searchsuggestions {
        width: 100%;
        max-height: min(420px, calc(100dvh - 84px));
    }
}

.header-ellipsis {
    position: relative;
    z-index: 1000;
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
}

button.header-ellipsis_login {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 7px !important;
    line-height: 1 !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.08) !important;
    box-shadow: none !important;
    overflow: hidden;
    cursor: pointer;
}

button.header-ellipsis_login img {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

button.header-ellipsis_login:hover {
    opacity: 1;
    background: rgba(255,255,255,.14) !important;
}

.fsearch {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
}

.fsearch:hover {
    background: var(--color7);
}

.fsearch_poster {
    position: relative;
    width: 65px;
    height: 55px;
    margin-right: 10px;
}

.fsearch_poster img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.fsearch_info h4 {
    font-weight: 600;
    margin-bottom: 0;
}

.fsearch_tags span {
    font-weight: 400;
    opacity: 0.8;
}

.fsearch_rating {
    color: #01c03a;
    font-weight: 800;
    opacity: 1;
}

.fsearch_rating.low {
    color: #e13535
}

.fsearch_rating.middle {
    color: #ff6702
}

.notfound + .seperator {
    display: none;
}

.seperator {
    display: block;
    background: var(--light);
    padding: 8px 20px;
    text-align: center;
    border-radius: 10px;
}

.seperator:hover {
    background: var(--two-light);
}

.login-page {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--color6);
    width: 500px;
    padding: 40px 80px;
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 425px) {
    .login-page {
        width: 90%;
        padding: 60px 30px;
    }
}

.login-page_close {
    display: inline-block;
    position: absolute;
    background: var(--light);
    border-radius: 10px;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.login-page_btn {
    margin-top: 30px;
    justify-content: center;
}

.login-page_btn a + a {
    margin-left: 20px;
}

.login_log {
    position: absolute;
    top: 64px;
    right: -20px;
    z-index: 5;
    display: none;
    background: var(--color7);
    border-radius: 10px;
    padding: 15px;
    min-width: 240px;
    box-shadow: 0 0.5rem 4rem -0.5rem rgb(0 0 0 / 10%), 0 0.25rem 1.5rem 0 rgb(0 0 0 / 10%), 0 0 0 1px rgb(0 0 0 / 5%);
}

.login_log.active {
    display: block;
}

.login_log-info {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--light);
    padding-bottom: 15px;
}

.login_log-avatar {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.login_log-name {
    display: flex;
    flex-flow: column;
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
}

.login_log-name span {
    font-size: 10px;
}

.login_log-menu {
    display: block;
    margin-top: 12px;
}

.login_log-menu li {
    font-size: 13px;
    margin-top: 12px;
    opacity: 0.8;
}

.login_log-menu li:hover {
    opacity: 1;
}

.login_log-menu li span {
    font-size: 12px;
    float: right;
}

.slider_movie-main {
    position: relative;
    height: 590px;
    overflow: hidden;
}

@media (max-width: 425px) {
    .slider_movie-main {
        height: 550px;
    }
}

.slider_movie + .content {
    margin-top: -20px;
}

.slider_movie-poster {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.slider_movie-poster:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 180deg,rgba(25,26,29,0) 0%, rgb(22 21 26 / 50%) 60%, rgb(22 21 26 / 80%) 80%, var(--bg) 100%);
}

.slider_movie-poster:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient( 90deg,var(--bg),rgba(25,26,29,0));
}

.slider_movie-poster img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: right top;
}

.slider_movie-content {
    position: absolute;
    bottom: 80px;
    width: 100%;
}

.slider_movie-logo {
    display: block;
    max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}
@media (max-width: 1023px) {
.slider_movie-content p {
    width: 95%;
    margin-top: 20px;
}
}
@media (min-width: 1024px) {
.slider_movie-content p {
    width: 600px;
    margin-top: 20px;
}
}

@media (max-width: 425px) {
    .slider_movie-logo {
        max-width: 100px;
        max-height: 150px;
    }
}

.slider_movie-title {
    display: block;
    font-size: 45px;
    margin-bottom: 5px;
}
.slider_movie-title-season {
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
    color: #c5d6ff;
}

@media (max-width: 425px) {
    .slider_movie-title {
        font-size: 30px;
    }
}

.slider_movie-tags span {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .slider_movie-tags span + span {
        margin-bottom: 10px;
    }
}

.slider_movie-tags span.slider_movie-tags_rating {
    color: #01c03a;
    font-weight: 800;
    opacity: 1;
}

.slider_movie-tags span.slider_movie-tags_rating.low {
    color: #e13535
}

.slider_movie-tags span.slider_movie-tags_rating.middle {
    color: #ff6702
}

.slider_movie-tags .slider_movie-tags_age {
    padding: 2px 7px;
    border: 2px solid hsla(0,0%,94.9%,.34);
    border-radius: 4px;
    font-weight: 600;
    opacity: 0.6;
}

.slider_movie-buttons {
    margin-top: 30px;
    align-items: center;
}

.slider_movie-btn {
    display: inline-block;
    background: var(--gradient);
    padding: 18px 30px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
}

.slider_movie-btn:hover {
    background: var(--color2);
}

.slider_movie-fav {
    display: inline-block;
    background: var(--light);
    margin-left: 20px;
    font-size: 16px;
    padding: 18px 22px;
    border-radius: 8px;
    text-align: center;
}

.favmod-add,.favmod-unset {
    display: block;
    margin-right: 25px;
}

.favmod .favmod-unset,.favmod.active .favmod-add {
    display: none
}

.favmod.active .favmod-unset {
    display: block
}

.slider_movie-indicators {
    position: absolute;
    bottom: 95px;
    right: 56px;
    z-index: 1;
}

@media (max-width: 1024px) {
    .slider_movie-indicators {
        bottom: 35px;
    }
}

@media (max-width: 425px) {
    .slider_movie-indicators {
        display: flex;
        justify-content: center;
        bottom: 25px;
        right: 0;
        left: 0;
    }
}

.slider_movie-indicator {
    position: relative;
    align-items: center;
}

.slider_movie-left, .slider_movie-right {
    position: absolute;
    font-size: 28px;
    padding: 0px 15px;
    text-align: center;
    color: var(--two-light);
    opacity: 0;
    cursor: pointer;
    transition: 0.3s all;
}

@media (max-width: 768px) {
    .slider_movie-left, .slider_movie-right {
        display: none!important;
    }
}

.slider_movie:hover .slider_movie-left, .slider_movie:hover .slider_movie-right {
    display: block;
    opacity: 1;
}

.slider_movie-left:hover, .slider_movie-right:hover {
    color: #fff;
}

.slider_movie-left {
    left: 0;
}

.slider_movie-right {
    right: 0;
}

.main-slider .swiper-pagination {
    position: relative;
    display: flex;
    margin: 0 40px;
}

@media (max-width: 1024px) {
    .main-slider .swiper-pagination {
        bottom: 1px;
        padding: 0 24px;
    }
}

@media (max-width: 425px) {
    .main-slider .swiper-pagination {
        bottom: 15px;
        padding: 0 16px;
    }
}

.main-slider .swiper-pagination-bullet {
    position: relative;
    width: 5px;
    height: 5px;
    margin: 0 4px;
    border-radius: 8px;
    background-color: rgba(86,92,103,.4);
    transition: all .10s ease;
    overflow: hidden;
}

.main-slider .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.main-slider .swiper-pagination-bullet-active {
    width: 32px;
}

.main-slider .swiper-pagination-bullet-active::before {
    background-color: #fff;
    -webkit-animation: slide-progress 10s cubic-bezier(0.3, 0, 0.3, 1) forwards;
    animation: slide-progress 10s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.main-slider .swiper-paused .swiper-pagination-bullet-active::before {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes slide-progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.full-subbota {
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
}

@media (max-width: 425px) {
    .full-subbota {
        margin-top: -90px;
    }
}

.full-subbota_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 600px;
}

@media (max-width: 425px) {
    .full-subbota_bg {
        width: 90%;
        height: 250px;
    }
}

.full-subbota_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: opacity;
    transition: opacity .3s ease-out;
    background: radial-gradient(65% 55% at 65% 44%,rgba(0,20,36,0) 32.81%,var(--bg) 100%);
    z-index: 1;
}

.full-subbota_bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    will-change: opacity;
    transition: opacity .3s ease-out;
    image-rendering: auto;
    opacity: 1;
}

.full-subbota_flex {
    display: flex;
    position: relative;
    align-items: flex-end;
    z-index: 2;
}

@media (max-width: 425px) {
    .full-subbota_flex {
        padding-bottom: 80px;
    }
}

.full-subbota_poster {
    position: relative;
    margin-right: 40px;
    width: 280px;
    min-width: 200px;
}

@media (max-width: 425px) {

    .full-subbota_poster {
         display:none;
    }
    .mobile-info {
    margin-top: 170px;
    margin-bottom: 220px;
    }
}

.full-subbota_poster img:nth-child(1) {
    position: absolute;
    border-radius: 10px;
    left: 0;
    bottom: 0;
    opacity: 0.5;
    transform: scale(0.7);
    transform-origin: 0% 100%;
    filter: blur(40px);
    z-index: 1;
}

.full-subbota_poster img:nth-child(2) {
    position: relative;
    border-radius: 10px;
    z-index: 2;
}

.full-subbota_heading {
    max-width: 800px;
}

.full-subbota_heading h1 {
    margin-bottom: 10px;
    text-shadow: 1px 1px 7px black;
}

@media (max-width: 425px) {
    .full-subbota_heading h1 {
        font-size: 25px;
    }
}

.full-movie_stars {
    margin-bottom: 20px;
    align-items: center;
}

.full-movie_stars span {
    display: inline-block;
    background: var(--light);
    padding: 5px;
    border-radius: 10px;
    margin-left: 10px;
}

.full-subbota_heading p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 600px;
}

@media (max-width: 425px) {
    .full-subbota_heading p {
        font-size: 12px;
        line-height: 1.4;
        max-width: none;
    }
}

.full-subbota_parametr {
    align-items: center;
    margin: 20px 0;
}

.full-subbota_parametr.e-flex a {
    color: var(--color11);
   
}
.full-subbota_parametr.e-flex a:hover {
    color: var(--color12);
   
}

@media (max-width: 425px) {
    .full-subbota_parametr {
        display:none;
    }
}

.full-subbota_parametr span {
    font-size: 16px;
    opacity: 0.8;
}

.full-subbota_parametr span + span {
    margin-left: 30px;
}

.full-subbota_parametr-age {
    display: inline-block;
    border: 2px solid var(--light);
    padding: 5px 8px;
    border-radius: 10px;
}

.full-subbota_dopbtn {
    margin: 30px 0;
}

@media (max-width: 425px) {
    .full-subbota_dopbtn {
        flex-wrap: nowrap;
        margin: 10px 0;
        justify-content: space-between;
    }
}

.full-subbota_dopbtn a,
.full-subbota_dopbtn .favmod,
.full-subbota_dopbtn .full-subbota_share {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

@media (max-width: 425px) {
    .full-subbota_dopbtn a,
.full-subbota_dopbtn .favmod,
.full-subbota_dopbtn .full-subbota_share {
        display: block;
    }
}

.full-subbota_dopbtn a + a {
    margin-left: 20px;
}

.full-subbota_dopbtn a i,
.full-subbota_dopbtn .favmod i,
.full-subbota_dopbtn .full-subbota_share > i {
    background: var(--light);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    margin-right: 20px;
}

@media (max-width: 425px) {
    .full-subbota_dopbtn a i,
.full-subbota_dopbtn .favmod i,
.full-subbota_dopbtn .full-subbota_share > i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin-right: 10px;
    }
}

@media (max-width: 425px) {
    .full-subbota_dopbtn a span,
    .full-subbota_dopbtn .favmod span,
    .full-subbota_dopbtn .full-subbota_share > span:not(.full-subbota_fshare) {
        display: block;
        font-size: 9px;
    }
}

.full-subbota_share {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    line-height: normal !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
}

.full-subbota_share.active .full-subbota_fshare {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.full-subbota_fshare {
    position: absolute;
    left: 50%;
    top: 60px;
    z-index: 5;
    background-color: var(--color6);
    width: 222px;
    margin-left: -111px;
    transform: translateY(50px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    border-radius: 5px;
    padding: 15px;
    box-shadow: rgb(0 0 0 / 24%) 0px 10px 40px;
    justify-content: space-between;
}

.full-subbota_fshare:before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: -7px;
    width: 14px;
    height: 14px;
    background: var(--color6);
    -webkit-transform: rotate( 135deg );
    transform: rotate( 135deg );
}

.full-subbota_fshare span {
    display: inline-block;
    background: var(--light);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 10px;
}

.full-subbota_fshare span:hover {
    background: var(--gradient);
}

.full-subbota_buttons {
    align-items: center;
    margin-bottom: 3px;
}

@media (max-width: 425px) {
    .full-subbota_buttons {
        position: absolute;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        bottom: 0;
        left: 0;
        margin: 0;
    }
}

.full-subbota_buttons a {
    display: inline-block;
    background: var(--gradient);
    padding: 18px 40px;
    border-radius: 10px;
    cursor: pointer;
}

.full-subbota_buttons .slider_movie-btn {
    display: inline-block;
    background: var(--gradient2);
    padding: 18px 20px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
}

.full-subbota_buttons .slider_movie-btn:hover {
    background: var(--color3);
}

@media (max-width: 425px) {
    .full-subbota_buttons a {
        padding: 18px 20px;
        text-align: center;
        width: 100%;
    }
}

.full-subbota_buttons a + a {
    margin-left: 20px;
}

.full-subbota_play:hover {
    background: var(--color2);
}

.full-subbota_shadows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: opacity;
    transition: opacity .3s ease-out;
    background: radial-gradient(42.37% 55.04% at 63.88% 44.96%,rgba(0,20,36,0) 32.81%,var(--bg) 100%);
}

.full-subbota_detalis {
    margin-top: 30px;
    justify-content: space-between;
}

.full-subbota_detalis-item {
    width: 200px;
    margin-top: 40px;
    margin-right: 40px;
    color: #bdbdbd;
}
.full-subbota_detalis-item_50 {
    width: 45%;
    margin-top: 40px;
    margin-right: 40px;
    color: #bdbdbd;
}
.full-subbota_detalis-item_100 {
    width: 100%;
    margin-top: 40px;
    margin-right: 40px;
    color: #bdbdbd;
}

@media (max-width: 425px) {
    .full-subbota_detalis-item {
        width: 150px;
        margin-right: 10px;
    }
}

.full-subbota_detalis-item span {
    
    font-size: 16px;
    font-weight: 600;
    
    color: #fff;
}
.full-subbota_detalis-item_50 span {
    
    font-size: 16px;
    font-weight: 600;
    
    color: #fff;
}
.full-subbota_detalis-item_100 span {
    
    font-size: 16px;
    font-weight: 600;
    
    color: #fff;
}

.schema-meta {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.full-subbota_release {
    font-size: 24px;
    color: var(--color5);
    font-weight: 600;
}

.full-subbota_edit {
    display: inline-block;
    margin: 8px 0 0;
}

.full-subbota_edit a {
    color: var(--color11);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fullstory-notice {
    margin-top: 0;
    margin-bottom: 18px !important;
}

.fullstory-notice p {
    color: var(--color11);
    padding: 15px;
    background: var(--color8);
    border-radius: 10px;
    line-height: 1.55;
}

.fullstory-seasons-block {
    margin-top: 0;
    margin-bottom: 26px;
}

.fullstory-seasons-inner {
    max-width: 800px;
}

.fullstory-external-search {
    margin-bottom: 34px;
}

@media (max-width: 768px) {
    .mobile-info { margin-bottom: 0 !important; }
    .fullstory-seasons-block { margin-top: 0; margin-bottom: 22px; }
    .fullstory-external-search { margin-bottom: 28px; }
}

.admin-tools {
    margin-top: 24px;
    margin-bottom: 30px;
}

.admin-tools-panel {
    padding: 22px;
    border: 1px solid rgba(116, 247, 185, .24);
    border-radius: 16px;
    background: rgba(30, 29, 35, .92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

.admin-tools-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-tools-heading h2 {
    margin: 3px 0 0;
    font-size: 22px;
}

.admin-tools-kicker {
    display: block;
    color: var(--color5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.admin-ad-status {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.admin-status-ok { background: rgba(116, 247, 185, .13); color: var(--color5); }
.admin-status-empty { background: rgba(255, 255, 255, .06); color: rgba(255,255,255,.55); }
.admin-status-info { background: rgba(108, 116, 247, .14); color: #aeb4ff; }

.admin-player-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.admin-player-card {
    min-height: 78px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    text-align: left;
    color: #fff;
}

button.admin-player-card {
    width: 100%;
    height: auto;
    line-height: 1.25;
}

.admin-player-card strong,
.admin-player-card span {
    display: block;
}

.admin-player-card strong { font-size: 13px; letter-spacing: .03em; }
.admin-player-card span { margin-top: 7px; font-size: 11px; color: rgba(255,255,255,.62); }
.admin-player-card-ready { cursor: pointer; border-color: rgba(116,247,185,.22); }
.admin-player-card-ready:hover { background: rgba(116,247,185,.1); border-color: rgba(116,247,185,.48); }
.admin-player-card-empty { opacity: .58; }

.admin-tools-section {
    min-width: 0;
}

.admin-tools-section + .admin-tools-section,
.admin-tools-columns {
    margin-top: 20px;
}

.admin-tools-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.admin-tools-section-heading h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.admin-tools-section-heading > span {
    color: rgba(255,255,255,.48);
    font-size: 11px;
    text-align: right;
}

.admin-tools-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 16px;
}

.admin-tools-columns > .admin-tools-section {
    padding: 15px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

.admin-ad-preview-inline {
    margin: 0 0 10px;
    padding: 12px;
}

.admin-ad-preview-inline .admin-ad-preview-label {
    margin: 0 0 9px;
}

.admin-ad-preview-content {
    max-height: 180px;
    overflow: auto;
    overflow-wrap: anywhere;
}

.admin-empty-box,
.admin-external-status {
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.admin-external-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.admin-external-status strong { color: #fff; }
.admin-external-status span { color: #aeb4ff; text-align: right; }

.admin-download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.admin-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: #fff;
}

.admin-download-card strong { font-size: 12px; }
.admin-download-card span { font-size: 11px; color: rgba(255,255,255,.58); text-align: right; }
.admin-download-card-ready { border-color: rgba(116,247,185,.24); }
.admin-download-card-ready:hover { background: rgba(116,247,185,.09); border-color: rgba(116,247,185,.45); }
.admin-download-card-empty { opacity: .52; }

.admin-tools-ajax-preview {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.admin-ad-preview {
    margin: 26px 0 18px;
    padding: 10px;
    border: 1px dashed rgba(255, 214, 102, .7);
    border-radius: 12px;
    background: rgba(255, 214, 102, .035);
}

.admin-ad-preview-label {
    display: inline-block;
    margin: -22px 0 10px 4px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #5b4b16;
    color: #ffe69a;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-player-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #0d0d10;
}

.admin-player-modal.is-open { display: block; }

.admin-player-modal-dialog {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    height: 100%;
}

.admin-player-modal-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 68px;
    padding: 12px 18px;
    background: var(--color6);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.admin-player-modal-heading h4 { margin: 2px 0 0; font-size: 18px; }
.admin-player-modal-actions { display: flex; align-items: center; gap: 14px; }
.admin-player-complaint { font-size: 12px; color: rgba(255,255,255,.7); }

.admin-player-modal-close {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    padding: 0 !important;
    line-height: 1 !important;
    border-radius: 10px;
    background: var(--light) !important;
    font-size: 20px;
}

.admin-player-modal-frame {
    position: relative;
    min-height: 0;
    background: #000;
    overflow: hidden;
}

.admin-player-iframe {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    background: #000;
}

.admin-player-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #000;
    color: rgba(255,255,255,.75);
}

.admin-player-loader.is-hidden { display: none; }
.admin-player-loader span {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: admin-player-spin .8s linear infinite;
}
@keyframes admin-player-spin { to { transform: rotate(360deg); } }

.comments-add-btn {
    background: transparent !important;
    padding: 0 !important;
    height: auto !important;
    line-height: normal !important;
    color: var(--color11) !important;
    box-shadow: none !important;
}

@media (max-width: 1180px) {
    .admin-player-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .admin-tools-columns { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .full-subbota {
        margin-top: 0;
        padding-top: 105px;
        padding-bottom: 28px;
    }
    .full-subbota_bg { width: 100%; height: 350px; }
    .full-subbota_bg:before { background: linear-gradient(to bottom, rgba(22,21,26,.18), var(--bg) 92%); }
    .full-subbota_flex { padding-bottom: 0; align-items: flex-end; }
    .full-subbota_poster { display: none; }
    .full-subbota_heading { max-width: 100%; width: 100%; }
    .full-subbota_heading h1 { font-size: 28px; }
    .full-subbota_parametr { display: flex; flex-wrap: wrap !important; margin: 12px 0; }
    .full-subbota_dopbtn { margin: 14px 0; }
    .full-subbota_buttons {
        position: static;
        width: auto;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    .mobile-info { margin-top: 0; margin-bottom: 20px; }
    .admin-tools-heading { flex-direction: column; }
    .admin-ad-status { justify-content: flex-start; }
    .admin-tools-section-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
    .admin-tools-section-heading > span { text-align: left; }
    .admin-player-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-player-modal-heading { min-height: 60px; padding: 9px 12px; }
    .admin-player-complaint { display: none; }
}

@media (max-width: 420px) {
    .admin-player-grid { grid-template-columns: 1fr; }
    .admin-tools-panel { padding: 16px; }
    .admin-tools-columns > .admin-tools-section { padding: 12px; }
    .admin-external-status { align-items: flex-start; flex-direction: column; }
    .admin-external-status span { text-align: left; }
    .full-subbota_heading h1 { font-size: 25px; }
}

.short-movie_slider-heading h1 {
    margin-bottom: 20px;
}

.short-movie_slider.swiper-container {
    overflow: visible;
    margin-bottom: 60px;
}

.short-movie_slider-left, .short-movie_slider-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    background: var(--color1);
    backdrop-filter: blur(13px);
    width: 42px;
    height: 60px;
    cursor: pointer;
    z-index: 3;
    border-radius: 10px;
}

.short-movie_slider-left {
    left: -30px;
}

.short-movie_slider-right {
    right: -30px;
}

@media (max-width: 1024px) {
    .short-movie_slider-left {
        left: 10px;
    }

    .short-movie_slider-right {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .short-movie_slider-left, .short-movie_slider-right {
        display: none;
    }
}

.swiper-button-disabled {
    display: none;
}

.short-movie_slider.swiper-container:before {
    pointer-events: none;
    right: -10vw;
    background-image: linear-gradient( 90deg,rgba(25,26,29,0),var(--bg));
    content: "";
    display: block;
    position: absolute;
    
    height: 300px;
    top: 50px;
    z-index: 2;
}

.short-movie_slider.swiper-container:after {
    pointer-events: none;
    left: -10vw;
    background-image: linear-gradient( 270deg,rgba(25,26,29,0),var(--bg));
    content: "";
    display: block;
    position: absolute;
    
    height: 300px;
    top: 50px;
    z-index: 2;
}

@media (max-width: 768px) {
    .short-movie_slider.swiper-container:before, .short-movie_slider.swiper-container:after {
        display:none
    }
}

.navigation-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-column: 1/-1;
    margin-top: 40px;
}

.navigation {
    text-align: center
}

.navigation a,.navigation span,.pnext a,.pprev a,.pprev>span,.pnext>span {
    display: inline-block;
    padding: 0 10px;
    margin: 0 3px 10px;
    line-height: 40px;
    min-width: 40px;
    background-color: var(--light);
    border-radius: 6px;
}

.navigation span:not(.nav_ext) {
    background-color: var(--color1);
}

.search-page_table {
    margin-bottom: 30px;
}

.search-page_table div {
    margin: 0!important;
}

#dofullsearch, #dosearch {
    display: none;
}


.short-movie_link {
    cursor: pointer;
}

.short-movie_item-poster {
    position: relative;
    padding-bottom: 150%;
    transform: scale(1) translateY(2%);
    transition-duration: .4s;
    cursor: pointer;
}

.short-movie_item-poster:hover {
    transform: scale(1.04) translateY(0)
}

.short-movie_item-poster:hover.short-movie_item-poster img {
    opacity: 0.8;
}

.short-movie_overlay {
    display: none;
    opacity: 0;
}

.short-movie_item-poster:hover .short-movie_overlay {
    display: block;
    opacity: 1;
}

.short-movie_item-fav {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    z-index: 2;
}

.short-movie_item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s all;
}

.short-movie_item-rating {
    background-color: #3bb33b;
    left: -4px;
    top: -4px;
    display: inline-block;
    padding: 5px 8px;
    font-size: 14px;
    border-radius: 8px 0 8px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.short-movie_item-rating.low {
    background: #e13535
}

.short-movie_item-rating.middle {
    background: #ff6702
}

.short-movie_item-poster .badge {
    position: absolute;
    right: -4px;
    top: -4px;
    z-index: 2;
    border-radius: 0 8px 0;
}

.short-movie_item-heading {
    margin-top: 15px;
}

.short-movie_item-heading h4 {
    margin-bottom: 0;
}

.short-movie_item-tags {
    padding: 5px 0;
    opacity: 0.5;
}

.short-movie_item-tags span:nth-child(1) {
    font-size: 12px;
    background: var(--light);
    padding: 2px 5px;
    border-radius: 3px;
}

.short-movie_item-tags span + span {
    margin-left: 10px;
}

.short-movie_item-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.comments {
    max-width: 800px;
}

.comments_heading {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.comments_heading h1 {
    margin-bottom: 0;
}

@media (max-width: 425px) {
    .comments_heading h1 {
        font-size: 20px;
    }
}

.comments_heading a {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--light);
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.comments_heading a:hover {
    border: 2px solid var(--color1);
}

.comments-no {
    background: var(--light);
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.comment-item {
    background: var(--light);
    color: var(--text-color1);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.comment-item_img {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

.comment-item_letter {
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

.comment-item_author a {
    font-weight: 500;
}

.comment-item_date {
    color: #999;
    margin-top: 6px;
    font-size: 1.2rem;
}

.comment-item_main {
    margin: 12px 0;
}

.comment-item_rating {
    margin-left: 20px;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    background-color: #f2f6f9;
    padding: 0 10px;
    font-size: 1.2rem;
    color: #97a9b7;
}

.comment-item_rating a {
    color: #97a9b7;
}

.comment-item_rating>span {
    margin: 0 5px;
}

.comment-item_rating>span>span.ratingtypeplus, .comment-item_rating>span>span.ratingplus {
    color: #06b601;
}

.comment-item_rating>span>span.ratingminus {
    color: #ff0e0e;
}

.comment-item_reply a {
    background: var(--light);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.comment-item_controls {
    text-align: right;
    font-size: 1.2rem;
}

.comment-item_controls li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 10px;
    height: 20px;
    line-height: 20px;
}

.comment-item_controls a:not(:hover) {
    color: #999;
}

.mass_comments_action {
    display: flex;
    align-items: center;
    max-width: 800px;
}

.mass_comments_action select {
    flex: 1 1 0;
    margin: 0 16px 0 20px;
}

.badge {
    display: inline-block;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    
    vertical-align: baseline;
    border-radius: 3px;
}

.badge-danger {
    color: #fff;
    background-color: #ff4954;
}

.badge-success {
    color: #fff;
    background-color: #3cd458;
}

.badge-primary {
    color: #fff;
    background-color: #50a1ff;
}

.badge-secondary {
    color: #757575;
    background-color: #fff;
    box-shadow: 0 1px 4px rgb(0 0 0 / 16%);
    font-weight: 600;
}

.badge-info {
    color: #fff;
    background-color: #926dde;
    border-color: #926dde;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

.badge-solid {
    border-bottom: 4px solid #926dde;
    font-weight: 800;
    padding: 0;
    margin: 0 5px;
    text-transform: uppercase;
}
.badge_blue {
    color: #fff;
    background: #0f50f0;
}
.badge_trailer {
    color: #fff;
    background: var(--color12);
}

.accordion {
    display: block;
    background: var(--bg);
    color: #000;
    cursor: pointer;
    padding: 12px 30px;
    margin: 8px 0;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    transition: 0.4s;
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    margin: 20px 0;
}

.callback {
    background: transparent;
    color: var(--text-color);
    padding: 0 60px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .callback {
        padding: 30px 0;
    }
}

.callback_content {
    background: var(--bg);
    color: var(--text-color1);
    border-radius: 20px;
    padding: 60px;
}

@media (max-width: 768px) {
    .callback_content {
        padding: 25px;
    }
}

.callback_btn {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .callback_btn {
        justify-content: space-evenly;
    }
}

.callback_btn a {
    display: flex;
    align-items: center;
    padding: 17px 33px;
    color: #fff;
    border-radius: 10px;
    margin-right: 25px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .callback_btn a {
        font-size: 14px;
        padding: 17px 15px;
        margin-right: 5px;
        margin-bottom: 10px;
        width: 130px;
    }
}

.callback_btn a i {
    margin-right: 10px;
    font-size: 18px;
}

.callback_btn a:nth-child(1) {
    background: #26d367;
    box-shadow: 0px 10px 20px rgb(38 211 103 / 20%);
}

.callback_btn a:nth-child(2) {
    background: #2787f5;
    box-shadow: 0px 10px 20px rgb(39 135 245 / 20%);
}

.callback_btn a:nth-child(3) {
    background: #161718;
    box-shadow: 0px 30px 60px rgb(8 15 40 / 10%);
}

.callback_btn a:nth-child(4) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    box-shadow: 0px 30px 60px rgb(253 244 151 / 10%);
}

.footer {
    background: var(--color6);
    color: #fff;
    position: relative;
}

.footer .container {
    padding-top: 40px;
    padding-bottom: 25px;
}

.footer_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_flex:last-child {
    margin-top: 15px;
}

.footer_logo {
    width: 100px;
    margin-right: 40px;
}

@media (max-width: 768px) {
    .footer_logo {
        display: none;
    }
}

.footer_menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer_menu li a {
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: block;
}
.footer_menu2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.footer_menu2 li a {
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: block;
    padding: 7px;
    border-radius: 5px;
    background: #302f36;
    margin-bottom: 8px;
}
.footer_menu2 li a:hover {
    background: var(--gradient);
}

@media (max-width: 768px) {
    .footer_menu li a {
        margin-bottom: 10px;
    }
    .footer_menu2 li a {
        margin-bottom: 10px;
    }
}

.footer_support {
    display: inline-block;
    border: 2px solid rgba(70,76,89,.6);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    margin-left: auto;
}
.seasons_list {
    display: inline-block;
    border: 2px solid var(--color1);
    background: var(--color1);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    margin: 5px;
}
.seasons_list:hover {
    border: 2px solid var(--color2);
    background: var(--color2);
}
.torr__dwnld {
    display: inline-block;
    background: var(--gradient);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    margin: 5px;
}
.torr__dwnld:hover {
    background: var(--color2);
}
.other_info {
    margin: 25px 15px 25px 0px;
}
.other_info a {
    color: var(--color3);
    font-size: 16px;
    font-weight: 500;
    margin: 25px 15px 25px 0px;
}
.other_info a:hover {
    color: var(--color2);
}

@media (max-width: 768px) {
    .footer_support {
       
        margin-left: 15px;
    }
}

.footer_copyright {
    font-size: 16px;
    color: #1395d8;
}

@media (max-width: 425px) {
    .footer_copyright {
        font-size: 14px;
    }
}

.footer_soc {
    display: flex;
    align-items: center;
}

.footer_soc a {
    
    height: 35px;
    border-radius: 5px;
    background: var(--light);
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    padding: 0 10px;

}
.footer_soc i {
    margin-right: 10px;
}

.footer_soc a:nth-child(1):hover {
    background: #23aaea;
}

.footer_soc a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.footer_soc a:nth-child(3):hover {
    background: #f00;
}

.header-search form input:focus,
.header-search form input:focus-visible,
.search-page input[type="text"]:focus,
.search-page input[type="text"]:focus-visible,
.search-page input[type="search"]:focus,
.search-page input[type="search"]:focus-visible,
.search-page_table input:focus,
.search-page_table input:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.footer-directory {
    position: relative;
    padding: 58px 0 54px;
    background:
        radial-gradient(circle at 12% 0%, rgba(15,80,240,.12), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(208,70,255,.08), transparent 30%),
        #18171c;
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-directory_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-directory_kicker,
.footer_label {
    display: block;
    margin-bottom: 8px;
    color: var(--color5);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-directory_head h2 {
    margin: 0;
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 1.1;
    font-weight: 800;
}

.footer-directory_head p {
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.55;
    text-align: right;
}

.footer-directory_quick {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.footer-directory_quick a,
.footer-directory_links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.2;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.footer-directory_quick a {
    min-height: 38px;
    padding-inline: 15px;
    background: rgba(15,80,240,.11);
    border-color: rgba(72,119,255,.18);
    font-weight: 700;
}

.footer-directory_quick a:hover,
.footer-directory_links a:hover {
    color: #fff;
    border-color: rgba(108,116,247,.55);
    background: rgba(76,85,224,.2);
    transform: translateY(-1px);
}

.footer-directory_years,
.footer-directory_group {
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    box-shadow: 0 22px 50px rgba(0,0,0,.12);
}

.footer-directory_years {
    padding: 22px;
    margin-bottom: 18px;
}

.footer-directory_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.footer-directory_group {
    min-width: 0;
    padding: 22px;
}

.footer-directory_title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.footer-directory_title-row h3,
.footer-directory_title-row h3 a {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.footer-directory_all {
    flex: 0 0 auto;
    color: var(--color2);
    font-size: 12px;
    font-weight: 700;
}

.footer-directory_all:hover { color: #fff; }

.footer-directory_links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer-directory_links li { min-width: 0; }

.footer-directory_links-years a {
    min-width: 58px;
    justify-content: center;
    padding-inline: 9px;
    font-variant-numeric: tabular-nums;
}

.footer {
    position: relative;
    background: #111015;
    color: #fff;
    border-top: 1px solid rgba(89,105,255,.22);
}

.footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(520px, 55vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(15,80,240,.85), rgba(208,70,255,.65), transparent);
}

.footer .container { padding: 0; }

.footer_main {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(230px, .85fr) minmax(220px, .7fr);
    gap: 48px;
    padding-top: 38px !important;
    padding-bottom: 34px !important;
}

.footer_brand-logo {
    display: inline-flex;
    align-items: center;
    width: 130px;
    margin-bottom: 15px;
}

.footer_brand-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer_brand p {
    max-width: 440px;
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 13px;
    line-height: 1.65;
}

.footer_contacts,
.footer_service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer_contacts a,
.footer_service a {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.45;
    transition: color .18s ease;
}

.footer_contacts a:hover,
.footer_service a:hover { color: var(--color2); }

.footer_service i { margin-right: 7px; }

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px !important;
    padding-bottom: 22px !important;
    border-top: 1px solid rgba(255,255,255,.065);
    color: rgba(255,255,255,.4);
    font-size: 12px;
    line-height: 1.5;
}

.footer_bottom-note { text-align: right; }

@media (max-width: 980px) {
    .footer-directory_head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .footer-directory_head p { text-align: left; }
    .footer-directory_grid { grid-template-columns: 1fr; }
    .footer_main {
        grid-template-columns: 1fr 1fr;
        gap: 30px 44px;
    }
    .footer_brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .footer-directory { padding: 42px 0 38px; }
    .footer-directory_years,
    .footer-directory_group { padding: 17px; border-radius: 13px; }
    .footer-directory_quick { gap: 7px; margin-bottom: 22px; }
    .footer-directory_quick a,
    .footer-directory_links a { font-size: 12px; padding: 7px 10px; }
    .footer-directory_title-row { align-items: flex-start; }
    .footer_main {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 30px !important;
        padding-bottom: 28px !important;
    }
    .footer_brand { grid-column: auto; }
    .footer_bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
    .footer_bottom-note { text-align: left; }
}

#scrolltop {
    display: none!important;
}

@media (min-width: 768px) {
    #scrolltop {
        position: fixed;
        width: 50px;
        height: 50px;
        line-height: 50px;
        right: 10px;
        bottom: 10px;
        z-index: 990;
        display: none;
        background-color: var(--medium-color);
        color: #848693;
        cursor: pointer;
        font-size: 20px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 5px 10px rgb(0 0 0 / 60%);
    }

    ::-webkit-scrollbar {
        width: 8px;
        height: 3px;
        position: relative;
        z-index: 10;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--color1);
        border-radius: 2px;
    }

    ::-webkit-scrollbar-thumb:focus {
        background-color: #7278e7;
        border-radius: 30px;
    }

    ::-webkit-scrollbar-track {
        background-color: var(--bg);
    }
}

svg .-1{fill:transparent;-webkit-transition:fill 0.8s ease-in-out 1.1s;transition:fill 0.8s ease-in-out 1.1s}svg.active .-1{fill:rgb(255,255,255)}svg .-2{fill:transparent;-webkit-transition:fill 0.8s ease-in-out 1.4500000000000002s;transition:fill 0.8s ease-in-out 1.4500000000000002s}svg.active .-2{fill:rgb(42,170,226)}svg .-3{fill:transparent;-webkit-transition:fill 0.8s ease-in-out 1.8s;transition:fill 0.8s ease-in-out 1.8s}svg.active .-3{fill:rgb(236,34,39)}svg .-4{fill:transparent;-webkit-transition:fill 0.8s ease-in-out 2.15s;transition:fill 0.8s ease-in-out 2.15s}svg.active .-4{fill:rgb(255,255,255)}svg .-5{fill:transparent;-webkit-transition:fill 0.8s ease-in-out 2.5s;transition:fill 0.8s ease-in-out 2.5s}svg.active .-5{fill:rgb(255,255,255)}

#dropmenudiv {
    background-color: #000 !important;
}

#dropmenudiv a:hover {
    background-color: #2a2a5a !important;
}
.badge_posttype {
    
    color: var(--color4);
    
    padding: 5px 0px;
    font-size: 20px;
    font-weight: 700;
    
}
.short-movie_item-heading h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    display: block;
    color: #c5d6ff;
}
.full-subbota_heading h6 {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    display: block;
    color: #959595;
    font-style: italic;
    text-shadow: 1px 1px 2px #000000;
}
.kinopoisk_info span{
font-size: 24px;
    margin-left: 10px;
    margin-top: 0px;
    font-weight: 500;
    color: #fff;
}

.kinopoisk_info img {max-width: 40px;}
.kinopoisk_info a{
position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: flex-start;
}
.short-movie_slider-heading {
display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0;
    padding: 0;
    margin-bottom: 8px;
}
.short-movie_slider-heading h2 {
    display: block;
    color: #eee;
    max-width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.short-movie_slider-heading a {
    display: flex;
    align-items: center;
    color: #ffffff;
    height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    margin-left: 10px;
}
.short-movie_slider-heading a:hover {
    color: var(--color1);
}
.inner-page__text {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}

.inner-page__text a {
    color: var(--color1);
    font-weight: 700;
}

.inner-page__text a:hover {
    color: var(--color3);
}

@media (min-width: 1024px) {
.categories_subcats, .categories_subcats2, .categories_subcats3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    
}
.categories_first {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    
    align-items: center;
    
}
.categories_first li {
    
    margin: 5px;
   
    font-size: 24px;
}

.categories_subcats li {
    padding: 25px;
    margin: 5px;
    width: 19%;
    background: var(--color2);
    font-size: 18px;
}
.categories_subcats li:hover {
    background: var(--gradient);

}
.categories_subcats2 li {
    padding: 5px;
    margin: 5px;
    width: 6%;
    background: var(--color2);
    font-size: 18px;
}
.categories_subcats2 li:hover {
    background: var(--gradient);

}
.categories_subcats3 li {
    padding: 15px;
    margin: 5px;
    width: 9%;
    background: var(--color2);
    font-size: 18px;
}
.categories_subcats3 li:hover {
    background: var(--gradient);

}
}
@media (max-width: 1023px) {
.categories_subcats, .categories_subcats2, .categories_subcats3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    
}
.categories_first {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    
    align-items: center;
    
}
.categories_first li {
    
    margin: 5px;
   
    font-size: 24px;
}

.categories_subcats li {
    padding: 20px 10px;
    margin: 5px;
    width: 47%;
    background: var(--color2);
    font-size: 18px;
}
.categories_subcats li:hover {
    background: var(--gradient);

}
.categories_subcats2 li {
    padding: 5px;
    margin: 5px;
    width: 9%;
    background: var(--color2);
    font-size: 18px;
}
.categories_subcats2 li:hover {
    background: var(--gradient);

}
.categories_subcats3 li {
    padding: 10px;
    margin: 5px;
    width: 19%;
    background: var(--color2);
    font-size: 18px;
}
.categories_subcats3 li:hover {
    background: var(--gradient);

}
}
.categories_subcats a, .categories_subcats2 a, .categories_subcats3 a {
    display: block;
    text-align: center;
}
.categories_subcats li, .categories_subcats2 li, .categories_subcats3 li {
   border-radius: 8px;
}
.categories_first li a {
    text-decoration: underline dashed;
}

.categories_first li a:hover {
    color: var(--color2);
}
.zakadr_img {margin: 0px 5px -20px 5px;}
.social-cont {
      display: flex;
      box-sizing: border-box;
      align-items: center;
    justify-content: center;
    }
    .social-container {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
      
      width: 100%;
      background: linear-gradient(135deg, #00a7e5, #753685);
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      padding: 20px;
      box-sizing: border-box;
      color: white;
      margin-top: 50px;
      margin-bottom: 50px;
      align-items: center;
    }
    .social-text-section {
      flex: 1 1 100%;
      text-align: left;
      font-size: 24px;
      line-height: 1.5;
      display: flex;
      align-items: center;
    }
.social-text-section p {
      font-size: 24px;
    }
    .social-button-section {
      flex: 1 1 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      justify-content: center;
      align-items: flex-end;
    }
    .social-button {
      background-color: white;
      color: #00a7e5;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
    }
    .social-button a {
      text-decoration: none;
      color: inherit;
      font-size: inherit;
    }
    .social-button:hover {
      background-color: #00a7e5;
      color: white;
      transform: scale(1.05);
    }
    @media (max-width: 600px) {
      .social-button {
        flex: 1;
      }
        .social-container {
      max-width: 90%;
    }
    }
 @media (max-width: 599px) {
      .social-text-section {
        text-align: center;
        justify-content: center;
      }
      .social-button-section {
        align-items: center;
      }
     .social-container {
      flex-wrap: wrap;
         max-width: 90%;
    }
    }

    @media (min-width: 600px) and (max-width: 1023px) {
      .social-text-section {
        flex: 1 1 50%;
        text-align: center;
        justify-content: center;
      }
      .social-button-section {
        flex: 1 1 50%;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
      }
     .social-container {
      flex-wrap: wrap;
         max-width: 90%;
    }
    }

    @media (min-width: 1024px) {
      .social-text-section {
        flex: 1 1 50%;
        text-align: left;
        justify-content: flex-start;
      }
      .social-button-section {
        flex: 1 1 50%;
        flex-direction: row;
        gap: 50px;
        justify-content: flex-end;
      }
    }

.full-subbota_ofilme.section {
    margin-bottom: 48px;
}

.full-subbota_detalis {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px 32px;
    margin-top: 28px;
    justify-content: normal;
}

.full-subbota_detalis > .full-subbota_detalis-item,
.full-subbota_detalis > .full-subbota_detalis-item_50,
.full-subbota_detalis > .full-subbota_detalis-item_100 {
    width: auto;
    margin: 0;
}

.full-subbota_detalis > .full-subbota_detalis-item { grid-column: span 2; }
.full-subbota_detalis > .full-subbota_detalis-item_50 { grid-column: span 3; }
.full-subbota_detalis > .full-subbota_detalis-item_100 { grid-column: 1 / -1; }

.social-container {
    margin-top: 24px;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .full-subbota_ofilme.section { margin-bottom: 36px; }
    .full-subbota_detalis { gap: 22px 20px; }
    .full-subbota_detalis > .full-subbota_detalis-item { grid-column: span 3; }
}

@media (max-width: 480px) {
    .full-subbota_detalis > .full-subbota_detalis-item,
    .full-subbota_detalis > .full-subbota_detalis-item_50 { grid-column: 1 / -1; }
}

.login__modal-title {font-weight: 600;
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 20px;
    display: block;}
.main__slider-title {
    margin-bottom: 20px;
font-weight: bold;
    font-size: 45px;
    position: relative;
}

.noplayer--poster {
  display: block;
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}

button.noplayer--poster {
  display: block !important;
  width: 100% !important;
  max-width: 800px !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  min-height: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
  line-height: normal !important;
  text-align: inherit;
  background-color: transparent !important;
  box-shadow: none !important;
}

button.noplayer--poster:hover,
button.noplayer--poster:active {
  background-color: transparent !important;
  box-shadow: none !important;
}

.noplayer--poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.noplayer--poster:hover .noplayer--poster-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.noplayer--play-button {
  width: 80px;
  height: 80px;
  background: white;
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><polygon points="70,55 70,145 145,100" fill="black"/></svg>') center / contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><polygon points="70,55 70,145 145,100" fill="black"/></svg>') center / contain no-repeat;
  margin-bottom: 20px;
}

.noplayer--poster-text {
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  padding: 0 10px;
}

.noplayer--poster-text strong {
  display: block;
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.noplayer--poster-text > span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .noplayer--play-button {
    width: 60px;
    height: 60px;
  }

  .noplayer--poster-text strong {
    font-size: 18px;
  }

  .noplayer--poster-text > span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .noplayer--play-button {
    width: 50px;
    height: 50px;
  }

  .noplayer--poster-text strong {
    font-size: 16px;
  }

  .noplayer--poster-text > span {
    font-size: 11px;
  }
}

.tvh-erid-cntnr {margin-top: 30px;
    padding: 10px;
    border-radius: 5px;
background: #2f424a;}
.tvh-erid-cntnr a {color:#0c9bdc}
.tvh-erid-cntnr a:hover {color:#465aae}

.full-subbota_dopbtn .favmod {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    line-height: normal !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    text-align: left;
}
.full-subbota_dopbtn .favmod:hover { background: transparent !important; box-shadow: none !important; }

.full-subbota_heading {
    flex: 1 1 auto;
    max-width: 900px;
    min-width: 0;
}

.full-subbota_title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 100%;
}

.full-subbota_title-row h1 {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0 0 10px;
}

.full-subbota_edit {
    display: inline-flex;
    flex: 0 0 auto;
    margin: 4px 0 0;
}

.full-subbota_edit a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: var(--color11);
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.full-subbota_edit a:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.22);
    color: #fff;
    transform: translateY(-1px);
}

.full-subbota_edit-icon,
.full-subbota_edit-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.full-subbota_edit-icon svg {
    fill: currentColor;
}

.full-subbota_edit-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.full-subbota_episode-line {
    margin: 2px 0 0;
    line-height: 1.4;
}

.full-subbota_hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px 34px;
    margin: 20px 0 24px;
}

.full-subbota_hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 92px;
}

.full-subbota_hero-meta-item-wide {
    flex: 1 1 260px;
    max-width: 560px;
}

.full-subbota_hero-meta-item > span {
    color: rgba(255,255,255,.54);
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .045em;
}

.full-subbota_hero-meta-item > strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.fullstory-description {
    width: 100%;
    max-width: none;
}

.fullstory-description > h2 {
    max-width: 1120px;
    margin: 0 0 28px;
    font-size: clamp(28px, 2.15vw, 36px);
    line-height: 1.25;
    font-weight: 700;
}

.fullstory-summary,
.fullstory-content {
    max-width: 1120px;
    color: #fff;
    font-size: 17px;
    line-height: 1.68;
    font-weight: 400;
}

.fullstory-summary {
    margin-bottom: 22px;
}

.fullstory-content {
    margin-top: 20px;
}

.fullstory-summary p,
.fullstory-content p {
    margin: 0 0 1.05em;
    line-height: inherit;
}

.fullstory-details-list {
    width: 100%;
    max-width: 1180px;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.fullstory-detail-row {
    display: grid;
    grid-template-columns: minmax(150px, 205px) minmax(0, 1fr);
    column-gap: 34px;
    align-items: start;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.075);
}

.fullstory-detail-label {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.fullstory-detail-value {
    min-width: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.fullstory-detail-value a {
    color: inherit;
}

.fullstory-detail-row-accent .fullstory-detail-value {
    color: var(--color11);
}

.fullstory-detail-value .kinopoisk_info {
    margin-top: -5px;
}

.fullstory-complaint {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .full-subbota_title-row { gap: 9px; }
    .full-subbota_edit { margin-top: 1px; }
    .full-subbota_edit a { width: 32px; height: 32px; border-radius: 9px; }
    .full-subbota_edit-icon,
    .full-subbota_edit-icon svg { width: 16px; height: 16px; }
    .full-subbota_hero-meta { gap: 14px 24px; margin: 17px 0 20px; }
    .full-subbota_hero-meta-item-wide { flex-basis: 100%; }
    .fullstory-description > h2 { margin-bottom: 22px; font-size: 28px; }
    .fullstory-summary,
    .fullstory-content { font-size: 16px; line-height: 1.65; }
    .fullstory-details-list { margin-top: 30px; }
    .fullstory-detail-row {
        grid-template-columns: 1fr;
        row-gap: 5px;
        padding: 15px 0;
    }
    .fullstory-detail-label { font-size: 13px; }
    .fullstory-detail-value { font-size: 15px; line-height: 1.55; }
}

@media (max-width: 480px) {
    .full-subbota_title-row h1 { font-size: 25px; }
    .full-subbota_edit a { width: 30px; height: 30px; }
    .full-subbota_hero-meta { gap: 12px 20px; }
    .full-subbota_hero-meta-item { min-width: 80px; }
    .fullstory-description > h2 { font-size: 25px; line-height: 1.3; }
}

.search-results-shell {
    width: calc(100% - 40px);
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.search-results-grid > form,
.search-results-grid > .search-page,
.search-results-grid > .attention,
.search-results-grid > .navigation-page,
.search-results-grid > .navigation,
.search-results-grid > .berrors {
    grid-column: 1 / -1;
    min-width: 0;
}

.search-results-grid > form {
    width: 100%;
    margin: 0;
}

.search-results-grid > form .search-page {
    width: 100%;
}

.search-page {
    width: 100%;
    margin-bottom: 8px;
}

.search-page h1 {
    margin-bottom: 8px;
}

.search-page h4 {
    color: rgba(255,255,255,.58);
    font-weight: 500;
    line-height: 1.5;
}

.search-page_table {
    width: 100%;
    margin-top: 22px;
    margin-bottom: 28px;
}

.search-page_table table {
    width: 100%;
}

.search-result-card {
    min-width: 0;
    height: 100%;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    box-shadow: 0 12px 34px rgba(0,0,0,.16);
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.search-result-card:hover {
    border-color: rgba(108,116,247,.38);
    background: rgba(255,255,255,.052);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

.search-card-layout {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
    height: 100%;
}

.search-card-poster {
    display: block;
    width: 138px;
    align-self: start;
    overflow: hidden;
    border-radius: 11px;
    background: rgba(255,255,255,.05);
    box-shadow: 0 10px 26px rgba(0,0,0,.23);
}

.search-card-poster img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.search-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 2px 0;
}

.search-card-type {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 8px;
    color: var(--color4);
    font-size: 13px;
    font-weight: 700;
}

.search-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.search-card-title-row h2 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
}

.search-card-title-row h2 a {
    color: #fff;
}

.search-card-title-row h2 a:hover {
    color: var(--color2);
}

.search-card-edit {
    display: inline-flex;
    flex: 0 0 auto;
}

.search-card-edit a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.search-card-edit a:hover {
    background: var(--color1);
    border-color: rgba(255,255,255,.28);
    transform: translateY(-1px);
}

.search-card-edit-icon,
.search-card-edit-icon svg {
    display: block;
    width: 17px;
    height: 17px;
}

.search-card-edit-icon svg {
    fill: currentColor;
}

.search-card-edit-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.search-card-origname {
    margin-top: 6px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
    font-style: italic;
    line-height: 1.35;
}

.search-card-season {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.search-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
    margin-top: 15px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.4;
}

.search-card-meta-wide {
    flex-basis: 100%;
}

.search-card-release {
    margin-top: 14px;
    color: var(--color5);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.search-card-actions {
    margin-top: auto;
    padding-top: 18px;
}

.search-card-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 17px;
    border-radius: 9px;
    background: var(--color1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: filter .2s ease, transform .2s ease;
}

.search-card-more:hover {
    color: #fff;
    filter: brightness(1.12);
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .search-results-shell {
        width: calc(100% - 32px);
    }
    .search-results-grid {
        gap: 18px;
    }
    .search-card-layout {
        grid-template-columns: 122px minmax(0, 1fr);
        gap: 15px;
    }
    .search-card-poster {
        width: 122px;
    }
    .search-card-title-row h2 {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    .search-card-layout {
        grid-template-columns: 132px minmax(0, 1fr);
    }
    .search-card-poster {
        width: 132px;
    }
}

@media (max-width: 600px) {
    .search-results-shell {
        width: calc(100% - 24px);
    }
    .search-result-card {
        padding: 14px;
        border-radius: 14px;
    }
    .search-card-layout {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 13px;
    }
    .search-card-poster {
        width: 108px;
        border-radius: 9px;
    }
    .search-card-title-row h2 {
        font-size: 18px;
    }
    .search-card-edit a {
        width: 31px;
        height: 31px;
    }
    .search-card-origname,
    .search-card-meta,
    .search-card-release {
        font-size: 13px;
    }
    .search-card-season {
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .search-result-card {
        padding: 12px;
    }
    .search-card-layout {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 11px;
    }
    .search-card-poster {
        width: 92px;
    }
    .search-card-title-row {
        gap: 7px;
    }
    .search-card-title-row h2 {
        font-size: 17px;
    }
    .search-card-edit a {
        width: 29px;
        height: 29px;
        border-radius: 8px;
    }
    .search-card-edit-icon,
    .search-card-edit-icon svg {
        width: 15px;
        height: 15px;
    }
    .search-card-meta {
        gap: 5px 12px;
        margin-top: 11px;
    }
    .search-card-actions {
        padding-top: 14px;
    }
}

.full-subbota_edit a {
    width: 40px;
    height: 40px;
    border-color: rgba(255,255,255,.34);
    background: linear-gradient(135deg, rgba(15,80,240,.98), rgba(153,64,232,.96));
    color: #fff;
    box-shadow: 0 7px 22px rgba(15,80,240,.34), 0 2px 8px rgba(0,0,0,.35);
}

.full-subbota_edit a:hover {
    background: linear-gradient(135deg, #2f6eff, #b153ef);
    border-color: rgba(255,255,255,.58);
    color: #fff;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 10px 28px rgba(15,80,240,.42), 0 3px 10px rgba(0,0,0,.38);
}

.full-subbota_edit-icon,
.full-subbota_edit-icon svg {
    width: 19px;
    height: 19px;
}

.fullstory-details-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 0;
}

.fullstory-detail-row {
    padding: 0;
    border-bottom: 0;
}

@media (max-width: 768px) {
    .full-subbota_edit a {
        width: 36px;
        height: 36px;
    }
    .full-subbota_edit-icon,
    .full-subbota_edit-icon svg {
        width: 17px;
        height: 17px;
    }
    .fullstory-details-list {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .full-subbota_edit a {
        width: 34px;
        height: 34px;
    }
}

.content .container,
.main-seo-copy,
.footer-directory > .container,
.footer > .container {
    max-width: 1480px;
}

.main-seo-copy {
    margin-bottom: 60px;
}

.catalog-results-grid,
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.catalog-results-grid > .short-movie_item,
.search-results-grid > .search-result-card {
    min-width: 0;
}

.catalog-results-grid > *:not(.short-movie_item),
.catalog-results-grid > .navigation,
.catalog-results-grid > .navigation-page,
.catalog-results-grid > .attention,
.catalog-results-grid > .berrors {
    grid-column: 1 / -1;
}

.search-result-card-fixed {
    border-color: rgba(35, 96, 255, .72);
    box-shadow: 0 0 0 1px rgba(35, 96, 255, .18), 0 15px 38px rgba(0,0,0,.22);
}

.search-card-layout {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 15px;
}
.search-card-poster { width: 116px; }
.search-card-title-row h2 { font-size: 19px; }
.search-card-type { margin-bottom: 6px; font-size: 12px; }
.search-card-origname { font-size: 13px; }
.search-card-season { margin-top: 8px; font-size: 14px; }
.search-card-meta { margin-top: 12px; gap: 6px 13px; font-size: 13px; }
.search-card-release { margin-top: 11px; font-size: 13px; }
.search-card-actions { padding-top: 15px; }
.search-card-more { min-height: 36px; padding: 0 15px; }

@media (max-width: 1240px) {
    .catalog-results-grid,
    .search-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .search-card-layout {
        grid-template-columns: 124px minmax(0, 1fr);
        gap: 15px;
    }
    .search-card-poster { width: 124px; }
    .search-card-title-row h2 { font-size: 20px; }
}

@media (max-width: 780px) {
    .catalog-results-grid,
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    .search-card-layout {
        grid-template-columns: 128px minmax(0, 1fr);
    }
    .search-card-poster { width: 128px; }
}

@media (max-width: 600px) {
    .content .container,
    .main-seo-copy,
    .footer-directory > .container,
    .footer > .container {
        width: calc(100% - 24px);
    }
    .search-card-layout {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 13px;
    }
    .search-card-poster { width: 108px; }
    .search-card-title-row h2 { font-size: 18px; }
}

@media (max-width: 390px) {
    .search-card-layout {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 11px;
    }
    .search-card-poster { width: 92px; }
    .search-card-title-row h2 { font-size: 17px; }
}

.social-container {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(130, 220, 255, .48);
    background:
        linear-gradient(118deg, #00b9ff 0%, #1265ff 36%, #7138ff 68%, #d20bd1 100%);
    box-shadow:
        0 18px 48px rgba(20, 82, 255, .24),
        0 8px 28px rgba(182, 20, 220, .18),
        inset 0 1px 0 rgba(255,255,255,.24);
}

.social-container::before,
.social-container::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}
.social-container::before {
    width: 300px;
    height: 300px;
    left: -95px;
    top: -185px;
    background: radial-gradient(circle, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 68%);
}
.social-container::after {
    width: 340px;
    height: 340px;
    right: -130px;
    bottom: -235px;
    background: radial-gradient(circle, rgba(255,80,230,.45) 0%, rgba(255,80,230,0) 68%);
}
.social-text-section {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.social-button {
    border: 1px solid rgba(255,255,255,.9);
    background: rgba(255,255,255,.96);
    color: #155be9;
    box-shadow: 0 8px 22px rgba(0,0,0,.16);
}
.social-button:hover {
    background: #fff;
    color: #7b2cff;
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
