@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
----------------------------------------------- */
.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 {
}

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

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

.header_btn-menu {
    background: var(--gradient);
    color: #fff;
    width: 40px;
    height: 40px;
    padding: 13px 11px;
    border-radius: 8px;
    font-size: 14px;
    margin-left: 12px;
    z-index: 8;
}

@media (min-width: 768px) {
    .header_btn-menu {
        display: none;
    }
}

.header_btn-menu span {
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    border-radius: 1.5px;
    margin: 0 0 5px 0;
    transition: .3s;
}

.header_btn-menu span:nth-child(2) {
    position: absolute;
}

.header_btn-menu.active span {
    opacity: 0;
    transition: .3s;
}

.header_btn-menu.active span:nth-child(2) {
    opacity: 1;
    transform: rotate( 45deg);
}

.header_btn-menu.active span:nth-child(3) {
    opacity: 1;
    transform: rotate(-45deg);
}

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

@media (max-width: 768px) {
    .header-menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        width: 80%;
        right: -20px;
        top: 0;
        min-height: 100vh;
        background: var(--color7);
        padding: 64px 20px 64px 20px;
        z-index: 5;
        align-items: flex-start;
        transform: translateX(100%);
        transition: all .3s;
    }
}

@media (max-width: 768px) {
    .header-menu.active {
        visibility: visible;
        opacity: 1;
        flex-direction: column;
        transform: translateX(0);
    }
}

.header-menu a:not(.header-menu_hidden a) {
    display: block;
    margin-right: 30px;
    padding: 14px 20px;
}

.header-menu_submenu {
    position: relative;
}

.header-menu_submenu>a:after {
    content: "\f054";
    font-weight: 300;
    font-family: "font awesome 5 pro";
    margin-left: 7px;
    transition: all .2s;
    display: inline-block;
    font-size: .8em
}

.header-menu_submenu:hover>a:after {
    transform: rotate(90deg)!important
}

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

@media (min-width: 768px) {
    .header-menu_submenu:hover .header-menu_hidden {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .header-menu_hidden.active {
        visibility: visible;
        opacity: 1;
        position: relative;
        left: 0;
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        transform: translateY(0px);
    }
}

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

@media (max-width: 768px) {
    .header-menu_hidden a {
        width: calc(100% / 2 - 13px);
    }
}

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

.header-search {
}

@media (max-width: 768px) {
    .header-search {
        margin-left: auto;
        margin-right: 15px;
    }
}

.header-search_mobile {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-search_mobile {
        display: block;
    }
}

.header-search form {
    position: relative;
    background: var(--light);
    display: inline-block;
    border-radius: 5px;
    padding: 15px 20px 15px 45px;
    width: 280px;
    color: var(--text-color1);
    backdrop-filter: blur(5px);
    z-index: 998;
}

@media (max-width: 768px) {
    .header-search form {
        background: var(--color7);
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 20px 50px 20px 50px;
    }
}

.header-search form input {
    width: 100%;
    opacity: 0.8;
    color: var(--text-color1);
    font-family: inherit;
}

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

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

@media (max-width: 768px) {
    .header-search_icon {
        top: 19px;
    }
}

.header-search_close {
    display: none;
}

@media (max-width: 768px) {
    .header-search_close {
        opacity: 0.6;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 12px 15px;
        font-size: 28px;
    }
}

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

@media (max-width: 768px) {
    .header-search_voice {
        font-size: 28px;
        right: 45px;
        padding: 12px 15px;
    }
}

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

.header-ellipsis_login {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.header-ellipsis_login:hover {
    opacity: 0.8;
}

/* FAST SEARCH
----------------------------------------------- */
.search__rezo {
    position: absolute;
}

@media (max-width: 425px) {
    .search__rezo {
        left: 0;
        width: 100%;
    }
}

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

@media (max-width: 425px) {
    .search__rezo #searchsuggestions {
        width: 100%;
    }
}

.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
----------------------------------------------- */
.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;
}

/* MAIN SLIDER
----------------------------------------------- */
.slider_movie-main {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.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: 100%;
    object-fit: cover;
}

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

.slider_movie-content p {
    width: 600px;
    margin-top: 20px;
}

.slider_movie-logo {
    display: block;
    max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

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

.slider_movie-title {
    display: block;
    font-size: 45px;
    margin-bottom: 20px;
}

@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
}

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

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

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

@media (max-width: 425px) {
    .slider_movie-indicators {
        display: flex;
        justify-content: center;
        bottom: 0;
        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: 71px;
        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 NEWS
----------------------------------------------- */
.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: 100%;
    height: 100vh;
        z-index: 0;
}

@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;
    background-color: #18181cad;
}

.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: 80px;
    width: 250px;
    min-width: 200px;
}

@media (max-width: 425px) {
    .full-subbota_poster {
        margin-right: 20px;
        width: 130px;
        min-width: 120px;
    }
}



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

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

.full-subbota_heading h1 {
    margin-bottom: 10px;
}

@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;
}

@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 {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

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

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

.full-subbota_dopbtn a 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 {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin-right: 10px;
    }
}

@media (max-width: 425px) {
    .full-subbota_dopbtn a span {
        display: block;
        font-size: 9px;
    }
}

.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;
}

@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_buttons .full-subbota_trailer {
    background: var(--color7);
}

.full-subbota_buttons .full-subbota_trailer:hover {
    background: var(--color8);
}

.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;
}

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

.full-subbota_detalis-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
}

.trailer-modal {
    display: none;
    position: fixed;
    background: var(--bg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.trailer-modal_heading {
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.trailer-modal_heading h4 {
    margin-bottom: 0;
}

.trailer-modal_close {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    right: 0;
    top: 5px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.trailer-modal_iframe {
    position: relative;
    padding-bottom: 85vh;
}

.trailer-modal_iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* SHORT SLIDER
----------------------------------------------- */
.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;
    width: 80px;
    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;
    width: 80px;
    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
----------------------------------------------- */
.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
----------------------------------------------- */
.search-page_table {
    margin-bottom: 30px;
}

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

#dofullsearch {
    display: none;
}

/* SHORT
----------------------------------------------- */
.short-movie_item {
    height: 320px;
   
}

.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: -5px;
    top: 5px;
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 4px;
    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: 0;
    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
----------------------------------------------- */
.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;
}

/* BAGDES
----------------------------------------------- */
.badge {
    display: inline-block;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    /* white-space: pre-wrap; */
    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;
}

/* ACCORDION
----------------------------------------------- */
.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
----------------------------------------------- */
.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;
}

@media (max-width: 768px) {
    .footer_menu 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;
}

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

.footer_copyright {
    opacity: 0.4;
    font-size: 12px;
}

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

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

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

.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;
}

/* SCROLLER 
----------------------------------------------- */
#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);
    }
}

.grid_season {display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); grid-gap: 20px 20px; grid-auto-flow: row dense;}
.grid_season a {    transition: opacity .3s ease-out; }
.grid_season a:hover {opacity: 0.4;}
.grid_season img {    width: 100%; height: 100%; object-fit: cover;}
.season.active {opacity: 0.4;}
.grid_series {    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); grid-gap: 20px 20px; grid-auto-flow: row dense;}
.grid_series img {    width: 100%; height: 100%; object-fit: cover;}
.grid_series a:hover {opacity: 0.4;}
.series.active {opacity: 0.4;}


#player_overlay {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 16 / 9; /* Задаем соотношение сторон 16:9 */
    background-color: black;
    cursor: pointer;
}

#player_overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hovplay {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.hovplay::before {
    content: '▶';
}

#player_overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gridmain  {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}
.gridmain .short-item {
    width: 100%;
}
.series  {   height: 150px;position: relative;}
.series a {   display: block;    width: 100%;
    height: 100%;}
.series span {    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: center;    background-color: #0000007a;
    padding: 10px 0;}
.season {    height: 220px;}
.season a {   display: block;    width: 100%;
    height: 100%;position: relative;}

.season a span{position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    background-color: #141413a8;
    padding: 10px;}
.season {position: relative;}
.season  span{position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    background-color: #141413a8;
    padding: 10px;}
.season {}
#timer {    display: flex;
    justify-content: center;
    padding: 15px;
    font-size: 25px;
    gap: 15px;
    border-radius: 15px;
    margin-top: 25px;}




 #days, #hours, #minutes, #seconds  { width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2160ab40;
    padding: 15px;
       border-radius: 15px;}
