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

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

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

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

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

/* BASIC */
:root {
    --bg: #101012;
    --bg2: #1c1c20;
    --text: #fff;
    --text1: #000;
    --color1: #7651d3;
    --color2: #8359ed;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --gradient: linear-gradient(300deg,#de9fff 5%,#0f50f0 50%,#0f50f0 98%,#0039c6);
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Proxima Nova", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

/* HEADER */
header {
    position: relative;
    background: var(--bg2);
    width: 100%;
    transition: 0.3s;
    z-index: 5;
}

header.fixed {
    position: fixed;
    background: linear-gradient(0deg,rgba(17,17,19,0),rgba(17,17,19,.6));
    top: 0;
}

.header-fixed {
    position: absolute;
    background: linear-gradient(0deg,rgba(17,17,19,0),rgba(17,17,19,.6));
    top: 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

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

.header-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 460px) {
    .header-menu {
        display: none;
    }
}

.header-menu a {
    display: block;
    padding: 15px;
    border-radius: 10px;
    transition: 0.2s;
}

.header-menu a:hover {
    color: var(--text);
}

.header-menu a > i {
    margin-left: 8px;
}

/* HEADER MENU SUB 0.3 */
.header-menu_sub {
    position: relative;
}

.header-menu_sub div a {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
}

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

.header-menu_sub > a i {
    float: right;
    margin: 2px 8px;
}

.header-menu_sub > div {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    column-count: 2;
    background: var(--bg);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 8;
}

@media (min-width: 860px) {
    .header-menu div:hover.header-menu_sub div {
        visibility: visible;
        opacity: 1;
    }
}

.header-menu_sub > div:before {
    content: "";
    position: absolute;
    background: var(--bg);
    top: -5px;
    left: 10%;
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
    z-index: -1;
}

/* MOB MENU 0.3 */
.mobmenu-btn {
    display: none;
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: inline-block;
        background: var(--bg2);
        color: var(--color2);
        border-radius: 5px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        text-align: center;
        margin-left: 10px;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu-btn.active {
        z-index: 9;
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        left: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        background: var(--bg2);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 9;
    }

    .mobmenu.active {
        display: flex;
        align-items: flex-start;
        left: 0;
        padding: 20px;
        box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
        border-radius: 0;
    }

    .mobmenu a + div, .mobmenu a {
        display: block;
        width: 100%;
    }

    .mobmenu div > div {
        display: none;
        width: 100%;
        top: 0;
        column-count: 1;
    }

    .mobmenu div > a.active + div {
        position: relative;
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* HEADER SEARCH */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-left: auto;
    margin-right: 10px;
    transition: 0.3s;
    z-index: 8;
}

@media (max-width: 860px) {
    .header-search.active {
        position: fixed;
        background: var(--bg2);
        padding: 10px;
        border-radius: 0;
        top: 0;
        left: 0;
        width: 100%;
    }
}

.header-search_icon, .header-search_voice {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.4;
}

.header-search_voice {
    background: var(--light2);
    backdrop-filter: blur(5px);
    color: var(--text);
    border-radius: 15px;
    opacity: 1;
}

@media (max-width: 860px) {
    .header-search_voice {
        display: none;
    }
}

.header-search form {
    height: 40px;
    line-height: 40px;
}

@media (max-width: 860px) {
    .header-search form {
        display: none;
    }

    .header-search.active form {
        display: block;
    }
}

.header-search input {
    background: transparent;
    color: var(--text);
    padding: 0;
    width: 160px;
    height: inherit;
    line-height: inherit;
    font-weight: 400;
}

.header-search input::placeholder {
    color: var(--light2);
}

.header-search_close {
    display: none;
}

@media (max-width: 860px) {
    .header-search_close {
        display: inline-block;
        position: absolute;
        opacity: 0.6;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
    }
}

/* HEADER USER */
.header-user {
}

.header-user > img {
    display: block;
    border: 1px solid var(--dark);
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.header-user > div {
    position: absolute;
    background: var(--bg2);
    color: var(--text);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 5px;
    width: 220px;
    top: 50px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

.header-user > div.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_av {
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid var(--light2);
}

.header-user_av > img {
    border: 1px solid var(--dark);
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.header-user_av > span {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 50px;
    margin-left: 10px;
    font-weight: bold;
}

.header-user_av > span span {
    display: block;
    font-size: 12px;
    font-weight: bold;
}

.header-user_menu a {
    display: block;
    padding: 8px 15px;
}

.header-user_menu a:hover {
    background: var(--color1);
}

.header-user_menu a i {
    margin-right: 10px;
    opacity: 0.8;
}

/* HEADER LOGIN */
.header-login {
}

.header-login > span {
    display: inline-block;
    background: var(--gradient);
    color: var(--text);
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
}

.header-login > span:hover {
    background: var(--color2);
}

.header-login > div, .header-reg, .header-lostpass {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
    padding: 40px 80px;
    border-radius: 10px;
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .header-login > div, .header-reg, .header-lostpass {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

.header-login > div.active, .header-reg.active, .header-lostpass.active {
    display: block;
}

.header-login_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.header-login_lost {
    display: block;
    text-align: right;
    margin: 20px 0;
    color: var(--color1);
}

.header-login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-login_btn a {
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 15px 30px;
    margin-left: 20px;
    font-size: 16px;
}

.header-login_btn a:hover {
    opacity: 0.9;
}

/* K1NO SLIDER */
.k1no-slider {
    position: relative;
}

.k1no-slider_item {
    position: relative;
    height: 600px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

@media (max-width: 460px) {
    .k1no-slider_item {
        height: 450px;
        border-radius: 0;
    }
}

.k1no-slider_item:before {
    content: "";
    position: absolute;
    background-image: linear-gradient(90deg,rgb(0 0 0),rgba(25,26,29,0));
    width: 50%;
    height: 100%;
    bottom: 0;
}

.k1no-slider_item:after {
    content: "";
    position: absolute;
    background-image: linear-gradient(180deg,rgba(31,33,37,0) 0,rgb(0 0 0));
    width: 100%;
    height: 60%;
    bottom: -5px;
}

.k1no-slider_bg {
    width: 100%;
    height: 100%;
}

.k1no-slider_content {
    position: absolute;
    width: 60%;
    bottom: 68px;
    padding: 0 60px;
    z-index: 1;
}

@media (max-width: 460px) {
    .k1no-slider_content {
        width: 100%;
        bottom: 50px;
        padding: 0 20px;
    }
}

.k1no-slider_title {
    font-size: 30px;
    font-weight: 700;
}

.k1no-slider_tags {
    margin: 20px 0;
    opacity: 0.8;
}

.k1no-slider_tags span:first-child {
    display: inline-block;
    padding: 4px 9px;
    font-size: 12px;
    border-radius: 4px;
}

.k1no-slider_tags span + span {
    margin-left: 20px;
}

.k1no-slider_btn {
    display: inline-block;
    background: var(--gradient);
    padding: 15px 30px;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    margin-top: 30px;
}

.k1no-slider_btn:hover {
    background: var(--color2);
}

.k1no-slider .swiper-slide-active {
    transform: scale(1) translateY(0%);
    transition: 0.4s;
}

@media (max-width: 425px) {
    .k1no-slider .swiper-slide-active {
        transform: scale(1);
    }
}

.k1no-slider .swiper-slide-prev, .k1no-slider .swiper-slide-next {
    transform: scale(.98) translateY(-3%);
    opacity: 0.3;
    transition: 0.4s;
}

@media (max-width: 425px) {
    .k1no-slider .swiper-slide-prev, .k1no-slider .swiper-slide-next {
        transform: scale(1) translateY(0%);
    }
}

.k1no-slider_nav {
    position: absolute;
    background: var(--light);
    border: 2px solid var(--light);
    backdrop-filter: blur(20px);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    top: 45%;
    left: 15%;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 3;
}

.k1no-slider_nav.fa-chevron-right {
    left: unset;
    right: 15%;
}

@media (max-width: 460px) {
    .k1no-slider_nav {
        display: none;
    }
}

.k1no-slider_nav:hover {
    background: var(--color1);
}

.k1no-slider .swiper-pagination {
    z-index: 4!important;
}

.swiper-pagination-bullet {
    position: relative;
    background: var(--light2);
    width: 30px;
    height: 4px;
    border-radius: 8px;
    overflow: hidden;
}

.swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.swiper-pagination-bullet-active {
    width: 80px;
}

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

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

/* SHORT ITEM */
.saltfilms-head {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.saltfilms-head h1 {
    margin-bottom: 0;
}

.saltfilms-head a {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-left: 30px;
}

.saltoshadows {
    position: relative;
    overflow: visible;
}

@media (min-width: 1440px) {
    .saltoshadows:before, .saltoshadows:after {
        content: "";
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
        left: -35vw;
        background-image: linear-gradient(270deg,rgba(31,33,37,0),var(--bg) 20%);
        z-index: 2;
    }

    .saltoshadows:after {
        left: unset;
        right: -35vw;
        background-image: linear-gradient(90deg,rgba(31,33,37,0),var(--bg) 20%);
    }
}

@media (min-width: 1920px) {
    .saltoshadows:before, .saltoshadows:after {
        left: -30vw;
    }

    .saltoshadows:after {
        left: unset;
        right: -30vw;
    }
}

.saltfilms-nav {
    position: absolute;
    top: 50%;
    left: -20px;
    display: inline-block;
    background: var(--light);
    border: 1px solid var(--light2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    z-index: 4;
    cursor: pointer;
}

@media (max-width: 460px) {
    .saltfilms-nav {
        display: none;
    }
}

.saltfilms-nav.fa-chevron-right {
    right: -20px;
    left: auto;
}

.saltfilms-nav:hover {
    background: var(--color1);
}

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

.saltofilms-item {
    width: 150px;
}

.saltofilms-bg {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    transform: scale(1) translateY(2%);
    transition-duration: 0.5s;
}

@media (max-width: 460px) {
    .saltofilms-bg {
        height: 200px;
    }
}

.saltofilms-bg.saltofilms-bg2 {
    height: 160px;
}

.saltofilms-bg:hover {
    transform: scale(1.04) translateY(0)
}

.saltofilms-bg img {
    border-radius: 5px;
}

.saltofilms-rating {
    left: -8px;
    top: 8px;
    display: inline-block;
    padding: 4px 9px;
    font-size: 12px;
    border-radius: 4px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.saltofilms-content h4 {
    margin-bottom: 5px;
}

.saltofilms-tags {
    opacity: 0.8;
    font-weight: 400;
}

.saltofilms-tags a:nth-child(2) {
    display: inline-block;
    background: var(--light);
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 10px;
}

/* FULL */
.full {
    position: relative;
}

.full-iframe {
    position: relative;
    width: 80%;
    height: 350px;
    left: 50%;
    margin-bottom: -10%;
    transform: translate(-50%,0);
    overflow: hidden;
}

@media (max-width: 460px) {
    .full-iframe {
        width: 100%;
        height: 200px;
        left: 0;
        transform: none;
    }
}

.full-iframe:before, .full-iframe:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg,transparent 36%,var(--bg) 96%),linear-gradient(90deg,transparent 87%,var(--bg) ),linear-gradient(270deg,transparent 87%,var(--bg) );
    z-index: 2;
}

.full .video-background-controls {
    top: 30px!important;
    right: 30px!important;
    z-index: 5!important;
}

.full .mute-toggle {
    display: inline-block;
    background: var(--light2);
    color: #fff;
    backdrop-filter: blur(30px);
    opacity: 0.8;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.full-speedbar {
    position: relative;
    top: 30px;
    opacity: 0.8;
    font-weight: 400;
    z-index: 1;
}

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

.full-speedbar a:after, .full-speedbar span:before {
    content: "\f105";
    padding: 0 10px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

.full-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 820px) {
    .full-content {
        display: block;
    }
}

.full-content_left {
    width: 200px;
}

@media (max-width: 820px) {
    .full-content_left {
        margin: 0 auto;
        display: none;
    }
}

.full-content_left > div + div, .full-content_left > a + div, .full-content_right > div + div, .rating-bar + .rating-bar {
    margin-top: 40px;
}

.full-content_poster {
    position: relative;
    width: 100%;
    height: 300px;
}

@media (max-width: 460px) {
    .full-content_poster {
    }
}

.full-content_poster img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.full-content_poster img:nth-child(2) {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    filter: blur(40px);
    transform: scale(.8);
    transform-origin: 50% 100%;
    opacity: 0.8;
}

.full-content_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px!important;
}

.full-content_center .full-content_link {
    display: none;
}

@media (max-width: 820px) {
    .full-content_center .full-content_link {
        display: flex;
        margin-top: 0!important;
        margin-bottom: 30px;
    }
}

.full-content_link a:nth-child(2) {
    width: 60px;
    padding: 0;
    margin-left: 10px;
}

.full-content_link a {
    width: 90%;
    height: 45px;
    line-height: 45px;
    background: var(--light);
    padding: 0 30px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.full-content_link a:hover {
    background: var(--light2);
}

.favmod-add,.favmod-unset, .favmod.active .favmod-unset {
    display: inline-block;
}

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

.full-content_right .full-content_count {
    display: none;
}

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

    .full-content_right .full-content_count {
        display: block;
        float: right;
    }
}

.rating-bar {
    position: relative;
}

.full-content_count span:nth-child(2) {
    float: right;
}

.full-content_count span:nth-child(3) {
    position: absolute;
    bottom: -25px;
    right: 0;
    float: right;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
}

.rating-bar:nth-child(2) .rating-bar_fill > span {
    background: #f60;
}

.rating-bar_fill {
    position: relative;
    background: var(--light2);
    margin: 10px 0;
    border-radius: 8px;
    height: 5px;
}

.rating-bar_fill > span {
    position: absolute;
    background: var(--color1);
    border-radius: 8px;
    height: 100%;
}

.full-content_center {
    margin: 0 60px;
}

@media (max-width: 820px) {
    .full-content_center {
        margin: 30px 0;
    }
}

.full-content_center > img {
    width: auto;
    height: 80px;
    margin-bottom: 30px;
}

@media (max-width: 460px) {
    .full-content_center > img {
        height: 50px;
    }
}

.full-content_meta {
    color: #a3a3a3;
    margin-bottom: 20px;
}

.full-content_meta .age {
    display: inline-block;
    border: 2px solid var(--light2);
    padding: 4px 8px;
    border-radius: 8px;
    opacity: 0.8;
}

.full-content_meta span + span {
    margin-left: 20px;
}

.expand-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.expand-btn {
    display: inline-block;
    background: var(--light);
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
}

.full-watch {
    margin-top: 30px;
    align-items: center;
}

.full-watch a {
    min-width: 90px;
    height: 100%;
}

.full-watch a > img {
    width: 100%;
    height: 100%;
}

.full-content_detal {
    color: #d1d1d1;
    margin-top: 40px;
}

.full-content_detal li + li {
    margin-top: 20px;
}

.full-content_detal li > span {
    display: inline-block;
    width: 200px;
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 400;
    opacity: 0.8;
}

.full-content_actors img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.full-content_right {
    display: inline-block;
    width: 250px;
}

@media (max-width: 820px) {
    .full-content_right {
        width: 100%;
    }
}

.full-content_ratings span:nth-child(1) {
    display: block;
    font-size: 25px;
    font-weight: 700;
}

.full-content_ratings span:nth-child(2) {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
    margin: 10px 0;
}

.full-content_rating a {
    display: inline-block;
    background: var(--light);
    border-radius: 6px;
    color: #cbcbcb;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.full-content_rating a + a {
    margin-left: 5px;
}

.full-content_player {
    margin: 60px 0;
}

.full-content_player iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .full-content_player iframe {
        height: 400px;
    }
}


.kinobox_player {
    margin: 60px 0;
}

.kinobox_player {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
}

@media (max-width: 860px) {
    .kinobox_player {
        height: 400px;
        border-radius: 15px;
    }
}

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

.trailer-modal.active {
    display: block;
}

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

/* FRANCH */
.franch-item {
    position: relative;
    background: var(--light);
    padding: 15px 25px 15px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.franch-item_poster {
    width: 45px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
}

.franch-item_content {
    margin-left: 15px;
}

.franch-item_content h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.franch-item_meta span {
    opacity: 0.5;
    font-size: 12px;
}

.franch-item_meta span:first-child:after {
    content: "|";
    margin-left: 5px;
    margin-right: 5px;
}

.franch-item_rating {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    border-radius: 0 10px 0 10px;
    font-size: 10px;
}

/* RATING COLOR */
.rating-color {
    background-color: #3bb33b;
    box-shadow: 0 4px 9px rgb(59 179 59 / 50%);
}

.rating-color.low {
    background: #e13535;
    box-shadow: 0 4px 9px rgb(225 53 53 / 50%);
}

.rating-color.middle {
    background: #ff6702;
    box-shadow: 0 4px 9px rgb(255 103 2 / 50%);
}

.rating-color1 {
    color: #3bb33b;
}

.rating-color1.low {
    color: #e13535;
}

.rating-color1.middle {
    color: #ff6702;
}

/* FOOTER */
.footer {
    background: var(--color4);
    padding: 30px 0;
}

.footer_soc a {
    font-size: 25px;
}

.footer_soc a:hover {
    color: var(--color1)
}

.footer_soc a + a {
    margin-left: 50px;
}

.footer_menu {
    margin: 20px 0;
    padding-top: 20px;
    border-top: 3px solid var(--light);
}

.footer_menu a {
    font-weight: 600;
}

.footer_menu a:hover, .footer_menu-static a:hover {
    color: var(--color1)
}

.footer_menu a + a, .footer_menu-static a + a {
    margin-left: 20px;
}

.footer_menu-static a {
    opacity: 0.8;
}

.footer_copyright {
    margin-top: 20px;
    opacity: 0.9;
    border-top: 2px solid var(--color5);
}

.footer_copyright p {
    font-size: 14px;
    margin-top: 10px;
}

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