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

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

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

header.sticky-hide {
    position: fixed;
    background: var(--bg2);
    top: -80px;
}

header.sticky-vis {
    top: 0;
}

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

.header-logo span {
    font-size: 25px;
    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(--color1);
}

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

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

.header-menu_sub div {
    position: absolute;
    background: var(--bg);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    padding: 20px;
    border-radius: 20px;
    width: 350px;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.header-menu_sub:hover.header-menu_sub div {
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

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

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 280px;
    height: 100%;
    background: var(--bg);
    color: #fff;
    padding: 30px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 998;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu_btn {
    display: inline-block;
    float: right;
    background: var(--color1);
    color: var(--text);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

@media (min-width: 460px) {
    .mobile-menu_btn {
        display: none;
    }
}

header .mobile-menu_btn {
    margin-left: 15px;
}

.mobile-menu .header-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.mobile-menu .header-menu_sub:hover.header-menu_sub div {
    position: relative;
}

/* POISK */
.header-search {
    display: flex;
    align-items: center;
    background: var(--light);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-left: auto;
    margin-right: 20px;
    z-index: 998;
}

.header-search_icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    opacity: 0.5;
}

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

@media (max-width: 460px) {
    .header-search form {
        display: none;
        position: fixed;
        background: var(--bg2);
        padding: 10px 30px;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 995;
    }
}

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

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

.header-search_close {
    display: none;
}

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

.search__rezo {
    position: absolute;
    top: 100%;
}

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

.search__rezo #searchsuggestions {
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0/10%);
    color: var(--text);
    width: 268px;
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 15px;
    margin-top: 20px;
    border-radius: 12px;
    z-index: 997
}

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

.fsearch {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    color: var(--text);
}

.fsearch:hover {
    background: var(--light)
}

.fsearch_poster {
    position: relative;
    max-width: 40px;
    min-height: 40px;
    margin-right: 10px;
}

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

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

.fsearch_tags span {
    font-size: 12px;
    font-weight: 400;
    opacity: .8
}

.notfound+.seperator {
    display: none
}

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

.searchtable {
    margin-bottom: 30px
}

.searchtable div {
    margin: 0!important
}

#searchinput {
    width: 100%!important;
}

#dofullsearch {
    display: none
}

/* HEADER USER */
.header-user {
    position: relative;
    cursor: pointer;
}

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

.header-user > img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.user_menu {
    position: absolute;
    background: #fff;
    color: #000;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    padding: 15px;
    border-radius: 20px;
    width: 220px;
    top: 100%;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 5;
}

.user_menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.user_menu-avatar {
    align-items: center;
    margin-bottom: 5px;
    padding-bottom: 10px;
}

.user_menu-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgb(255 255 255 / 0.3);
    margin-right: 15px;
}

.user_menu-name {
    font-size: 16px;
    font-weight: 700;
}

.user_menu-name span {
    display: block;
    font-size: 12px;
}

.user-menu_link {
}

.user-menu_link a {
    display: flex;
    align-items: center;
    padding: 8px;
    color: #000;
}

.user-menu_link a:hover {
    background: var(--color1);
    color: #fff;
    border-radius: 10px;
}

.user-menu_link i {
    font-size: 16px;
    margin-right: 10px;
    opacity: 0.8;
}

/* LOGIN */
.user-login {
    position: fixed;
    display: none;
    min-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    color: var(--text-color);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    padding: 40px 80px;
    border-radius: 20px;
    text-align: center;
    z-index: 999;
}

@media (max-width: 460px) {
    .user-login {
        min-width: 100%;
        width: 100%;
        padding: 40px;
    }
}

.user-login_content input {
    border: 1px solid var(--light2);
}

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

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

.user-login_btn a {
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 14px 20px;
    margin-left: 20px;
}

.user-login_soc {
    align-items: center;
    justify-content: center;
}

.user-login_soc span {
    width: 100%;
    margin: 15px 0;
}

.user-login_soc a + a {
    margin-left: 15px;
}

.user-login_soc a {
    display: inline-block;
    background: transparent;
    border: 1px solid rgb(0 0 0 / 10%);
    box-shadow: 0 3px 14px 0 rgb(0 0 0 / 3%);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 55px;
    text-align: center;
}

.user-login_soc a:hover {
    background: var(--bg2);
}

.user-login_close {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
}

/* K1NO SLIDER */
.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,rgba(25,26,29,.6),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,rgba(31,33,37,.8));
    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 + span {
    margin-left: 20px;
}

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

.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_prev, .k1no-slider_next {
    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%;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 3;
}

.k1no-slider_prev {
    left: 25px;
}

.k1no-slider_next {
    right: 25px;
}

@media (min-width: 1920px) {
    .k1no-slider_prev, .k1no-slider_next {
        top: 45%;
    }

    .k1no-slider_prev {
        left: 15%;
    }

    .k1no-slider_next {
        right: 15%;
    }
}

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

.k1no-slider .swiper-pagination {
    width: 100%;
    bottom: 20px;
    z-index: 2;
}

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

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

.k1no-slider .swiper-pagination-bullet {
    position: relative;
    background: var(--light);
    border-radius: 5px;
    height: 5px;
    opacity: 1;
    transition: all .10s ease;
    overflow: hidden;
}

.k1no-slider .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    background: var(--light);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.k1no-slider .swiper-pagination-bullet-active {
    width: 60px;
}

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

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

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

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

.saltfilms-head h2 {
    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 {
    overflow: visible;
}

.saltoshadows.swiper-container:before, .saltoshadows.swiper-container:after {
    content: "";
    position: absolute;
    width: 150px;
    height: 300px;
    top: 50px;
    right: -10vw;
    background-image: linear-gradient( 90deg,transparent,var(--bg));
    z-index: 2;
}

.saltoshadows.swiper-container:after {
    content: "";
    left: -10vw;
    background-image: linear-gradient( 270deg,transparent,var(--bg));
}

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

.saltfilms-left, .saltfilms-right {
    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-left, .saltfilms-right {
        display: none;
    }
}

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

.saltfilms-left:hover, .saltfilms-right: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 .year {
    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: absolute;
    width: 80%;
    height: 350px;
    left: 50%;
    top: 0;
    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: 40px;
    opacity: 0.8;
    font-weight: 400;
    z-index: 3;
}

@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;
    margin-top: 20%;
    z-index: 2;
}

@media (max-width: 820px) {
    .full-content {
        display: block;
        padding-top: 40%;
        margin-top: 0;
    }
}

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

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

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

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