/* STYLES 09.03.2025
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@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;
    --bg3: #2c2c34;
    --engine: #2b2f3c;
    --engine2: #414450;
    --text: #fff;
    --text1: #000;
    --text2: #9a9a9b;
    --color1: #7651d3;
    --color2: #8359ed;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 10px;
}

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

/* MAIN */
.kinoinfo-grid {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 1fr;
}

@media (max-width: 860px) {
    .kinoinfo-grid {
        grid-template-columns: 1fr;
    }
}

.kino-grid #dle-content {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(5, 1fr);
}

.kinoinfo-grid .kino-grid #dle-content {
    grid-template-columns: repeat(4, 1fr);
}

.kino-grid.news #dle-content {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
    .kino-grid #dle-content, .kinoinfo-grid .kino-grid #dle-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .kino-grid.news #dle-content {
        grid-template-columns: 1fr;
    }
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 5px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    right: 6px;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

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

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

header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--bg2);
    box-shadow: 0px 10px 20px rgb(28 56 67 / 10%);
}

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

header.sticky-vis {
    top: 0;
}

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

.header-menu {
    position: relative;
    width: 250px;
    margin-top: -20px;
}

.header-menu.active {
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.header-menu > a {
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 40px 1fr;
    align-items: center;
    color: #9a9a9b;
    padding: 28px 20px 8px;
    font-size: 22px;
    transition: 0.3s;
}

.header-menu > a img {
    width: 170px;
    height: auto;
}

.header-menu > div {
    position: absolute;
    width: inherit;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    background: var(--bg2);
    color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 0 0 var(--radius) var(--radius);
    visibility: hidden;
    opacity: 0;
    transition: background 0.3s;
    z-index: 5;
}

.header-menu.active > div {
    visibility: visible;
    opacity: 1;
}

.header-menu > div > a {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    color: #d0d0d0;
}

.header-menu > div > a:hover {
    color: #fff;
}

@media (min-width: 860px) {
    .header-menu:hover {
        background: var(--bg2);
        box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    }

    .header-menu:hover > div {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 860px) {
    .header-menu.active {
        position: absolute;
        width: 100vw;
        margin-left: -20px;
        padding-left: 20px;
    }

    .header-menu > a {
        padding: 25px 0 0;
    }

    .header-menu.active > a i:before {
        content: "\f00d";
    }

    .header-menu.active > div {
        position: fixed;
        top: 46px;
        left: 0;
        width: 100%;
        height: 100vh;
    }
}

.header-fastlink {
    display: flex;
    align-items: center;
    grid-gap: 35px;
}

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

.header-fastlink a:hover {
    color: var(--color1);
}

/* HEADER SEARCH */
.header-search {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #2c2c346b;
    backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 2px;
    z-index: 2;
}

@media (max-width: 860px) {
    .header-search {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header-search_btn, .header-search .fa-microphone, .header-search .fa-xmark {
    background: var(--light);
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.header-search .fa-magnifying-glass {
    background: transparent;
    color: #777e89;
    margin-left: 15px;
}

.header-search_btn {
    display: none;
}

@media (max-width: 860px) {
    .header-search_btn {
        display: inline-block;
        margin-left: auto;
    }
}

.header-search input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 320px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search input::placeholder {
    color: #b7b7b7;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

.header-search_top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 490px;
    top: 110%;
    left: auto;
    background: #2c2c34;
    box-shadow: 0 10px 20px -2px rgb(0 0 0 / 40%);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    z-index: 8;
}

@media (max-width: 860px) {
    .header-search_top {
        width: 100%;
        left: 0;
    }
}

.header-search_top.active {
    visibility: visible;
    opacity: 1;
}

.header-search_top > span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* HEADER USER 2.0 */
.header-user {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.header-user > a img {
    width: 100%;
    height: 100%;
}

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

.header-user > div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: var(--bg2);
    transform: rotate(45deg);
}

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

.header-user_top {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    padding: 10px;
    border-radius: var(--radius);
}

.header-user_top > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-user_top > div span {
    display: block;
    color: #a5a5a5;
    font-size: 10px;
    margin-top: 2px;
}

.header-user_balance {
    font-size: 18px;
    font-weight: bold;
    border-top: 1px dotted var(--dark);
    border-bottom: 1px dotted var(--dark);
    padding: 10px;
    margin-bottom: 10px;
}

.header-user_balance > span:last-child {
    display: block;
    color: #454252;
    font-weight: 300;
    font-size: 10px;
    margin-top: 3px;
}

.header-user > div a:not(.header-user_top) {
    display: block;
    color: var(--text2);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 14px;
}

.header-user > div a:hover {
    background: var(--light);
}

.header-user > div a i {
    margin-right: 8px;
}

.header-user > div a:last-child {
    color: #F44336;
    font-weight: 500;
}

/* MODAL LOGIN 0.2 */
a[href="#modal-login"] {
    display: inline-block;
    background: var(--color1);
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

a[href="#modal-login"]:hover {
    opacity: 0.8;
}

.modal-login > a i {
    margin-right: 10px;
    margin-top: 1px;
    float: left;
}

.modal-login form {
    position: fixed;
    min-width: 600px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 450px;
    background: var(--bg);
    color: var(--text);
    border-radius: var(--radius);
    text-align: center;
    z-index: 999;
}

@media (max-width: 860px) {
    .modal-login form {
        grid-template-columns: 1fr;
        min-width: 100%;
        border-radius: 0;
    }
}

.modal-login form > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form > i:hover {
    background: var(--color1);
    color: var(--text1);
}

.modal-login_bg {
    background: linear-gradient(225deg, #e14c03, #190900);
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
}

.modal-login_content {
    padding: 35px 60px;
}

@media (max-width: 860px) {
    .modal-login_content {
        padding: 40px;
    }
}

.modal-login .e-float > a {
    position: absolute;
    top: 15px;
    right: 15px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_lost {
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: right;
    text-decoration: underline dotted #20a8d8;
}

.modal-login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.modal-login_btn > a {
    background: var(--bg3);
}

.modal-login_btn > a:hover {
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-login_soc > div a {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    overflow: hidden;
}

.modal-login_soc > div a iframe {
    position: absolute;
    top: 12px;
    left: 0;
    opacity: 0;
}

.modal-login_soc > div a + a {
    margin-left: 15px;
}

.modal-login_soc > div a img {
    border: 2px solid var(--bg2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 8px;
}

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

@media (max-width: 860px) {
    .kino-slider {
        width: 100%;
    }
}

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

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

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

.kino-slider > .fa-chevron-right {
    left: unset;
    right: -3%;
}

@media (max-width: 860px) {
    .kino-slider > .fal {
        display: none;
    }
}

.kino-slider > .fal:hover {
    background: var(--color1);
}

.kino-slider .swiper-pagination-bullets {
    z-index: 3!important;
}

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

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

.kino-slider .swiper-pagination-bullet-active::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: progress var(--swiper-autoplay-time) linear;
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

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

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

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

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

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

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

.kino-slider_content > .xfieldimage.posterlogo {
    max-width: 150px;
    max-height: 200px;
}

.kino-slider_tags {
    color: var(--text2);
    margin: 20px 0;
    font-size: 14px;
}

.kino-slider_tags .rating-color {
    display: inline-block;
    color: #fff;
    padding: 4px 9px;
    font-size: 12px;
    border-radius: 4px;
}

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

.kino-slider_text, .k1no-slider_text * {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.kino-slider_content > a {
    display: inline-block;
    background: var(--color1);
    padding: 15px 30px;
    border-radius: 8px;
    width: 200px;
    text-align: center;
    margin-top: 30px;
    font-weight: 400;
}

.kino-slider_content > a:hover {
    background: var(--color2);
}

.kino-slider_content > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

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

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

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

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

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

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

.saltofilms > .fal {
    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: 860px) {
    .saltofilms > .fal {
        display: none;
    }
}

.saltofilms > .fa-chevron-right {
    right: -20px;
    left: auto;
}

.saltofilms > .fal:hover {
    background: var(--color1);
}

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

.saltofilms-item {
    position: relative;
    width: 100%;
    padding: 12px 6px 0 12px;
    overflow: hidden;
}

.saltofilms-item > a {
    position: absolute;
    inset: 0;
}

.saltofilms-bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/13;
    margin-bottom: 20px;
    transform: scale(1) translateY(2%);
    transition-duration: 0.5s;
}

.saltofilms-bg2 {
    aspect-ratio: 16/9;
}

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

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

.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.6;
    font-weight: 400;
}

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

/* LIM ITEM 10 */
.saltofilms-top10 {
    counter-reset: toc1;
}

.saltofilms-top10 .saltofilms-item {
    overflow: visible;
}

.saltofilms-top10 .saltofilms-item:not(.swiper-slide:first-child .saltofilms-item) {
    filter: drop-shadow(-20px 10px 10px rgb(0 0 0 / 60%));
}

.saltofilms-top10 .saltofilms-item:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    position: absolute;
    right: -40px;
    bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 0.3rem rgb(255 255 255 / 80%);
    text-shadow: 0 0 0.1rem rgb(0 0 0 / 40%);
    font-size: 180px;
    font-family: Montserrat Numbers,sans-serif;
    font-weight: bold;
    font-style: italic;
    z-index: 5;
}

@media (max-width: 860px) {
    .saltofilms-top10 .saltofilms-item:before {
        right: -50px;
        bottom: 20px;
        font-size: 140px;
    }
}

.saltofilms-top10 .saltofilms-bg {
    z-index: -1;
}

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

.full-player > span {
    display: inline-block;
    background: var(--bg2);
    padding: 10px 15px;
    margin: 0px 15px 0px 0px;
    border-radius: var(--radius);
}

.full-player > span.active {
    background: #79c142;
    font-weight: 400;
}

.full-player_content {
    display: none;
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.full-player_content.active {
    display: block;
}

.full-iframe {
    position: relative;
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
    overflow: hidden;
}

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

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

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

.full .mute-toggle i {
    position: relative;
    background: var(--light2);
    backdrop-filter: blur(30px);
    border-radius: var(--radius);
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
}

.full-speedbar {
    grid-column: 1 / -1;
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
    z-index: 1;
}

.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;
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 200px 1fr 280px;
    z-index: 2;
    margin-top: -300px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .full-content {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
}

.full-content_left {
}

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

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

@media (max-width: 860px) {
    .full-content_poster {
        display: block;
        width: 200px;
        height: auto;
        aspect-ratio: 9/12;
        margin: 0 auto;
    }
}

.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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    margin: 20px 0;
    font-weight: 400;
}

@media (min-width: 860px) {
    .full-content_center .full-content_link {
        display: none;
    }
}

@media (max-width: 860px) {
    .full-content_center .full-content_link {
        max-width: 250px;
        justify-content: center;
        margin: 20px auto;
    }
}

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

.full-content_link a {
    flex: 1 1 0;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    background: var(--bg2);
    padding: 0 30px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

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

.full-content_link a[onclick] {
    min-width: 45px;
    max-width: 45px;
    padding: 2px;
    color: #79c142;
}

.rating-bar {
    position: relative;
}

.rating-bar + .rating-bar {
    margin-top: 50px;
}

.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: #79c142;
    border-radius: 8px;
    height: 100%;
}

@media (max-width: 860px) {
    .full-content_center h1 {
        text-align: center;
        overflow-wrap: anywhere;
    }
}

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

@media (max-width: 860px) {
    .full-content_center > img {
        height: 50px;
        margin: 0 auto;
    }
}

.full-content_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    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_full {
    color: #d7d7d7;
    line-height: 1.5;
    font-size: 16px;
}

.full-content_vpechatleniya {
    color: #d7d7d7;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: -20px;
}

.full-content_seoplayer {
    color: #787878;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

.full-soon_tv {
    color: #d7d7d7;
    line-height: 1.5;
    font-size: 16px;
    margin-top: 20px;
}

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

.expand-btn {
    display: inline-block;
    background: var(--bg2);
    color: var(--text2);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
    cursor: pointer;
}

.expand-btn:hover {
    opacity: 0.8;
}

.full-content_detal li {
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 200px 1fr;
    margin-top: 20px;
    font-weight: 400;
}

@media (max-width: 860px) {
    .full-content_detal li {
        grid-template-columns: 150px 1fr;
    }
}

.full-content_detal li > span:first-child {
    color: var(--text2);
}

.full-content_right {
}

.full-content_right > div + div {
    margin-top: 20px;
}

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

/* FRANCH */
.franch-items > span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.franch-item {
    position: relative;
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 50px 1fr;
    background: var(--bg2);
    padding: 15px 25px 15px 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.franch-item > a {
    position: absolute;
    inset: 0;
}

.franch-item > img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}

.franch-item_content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

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

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

/* FRANCH NEWS */
.franch-new > span {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.franch-news {
    position: relative;
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 100px 1fr;
    background: #101012;
    padding: 15px 25px 15px 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.franch-news > a {
    position: absolute;
    inset: 0;
}

.franch-news > img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}

.franch-news_content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.franch-news_meta > span {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
}

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

.franch-news_shortstory > span {
    opacity: 0.5;
    font-size: 14px;
    font-weight: 400;
}

.franch-news_shortstory > span:first-child:after {
    margin-left: 5px;
    margin-right: 5px;
}

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

/* BAGDES */
.badge {
    display: inline-block;
    background-color: #79c142d1;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: pre-wrap;
    vertical-align: baseline;
}

.badge-red {
    color: #ef3d3d;
}

.badge-green {
    color: #008b8b;
}

.badge-blue {
    color: #ffffff;
}

/* RATING COLOR */
.rating-color {
    background-color: #79c142;
}

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

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

.rating-color1 {
    color: #79c142;
}

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

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

/* THING NEWS */
.thing {
}

.thing-items {
    grid-gap: 0;
}

.thing-item {
    position: relative;
    height: 350px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .thing-item {
        min-width: 280px!important;
    }
}

.thing-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.thing-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.thing-content h3 {
    font-size: 18px;
    line-height: 1.3;
}

.thing-meta span > a {
    color: #fff;
}

.thing-meta span:last-child {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.thing-meta span:last-child:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.thing-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.thing-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.thing-item:hover .thing-bg {
    transform: translateX(-4%) scale(1.04);
}

.thing-item:hover .thing-content {
    transform: translateY(-2%);
}

/* FIVE TOP */
.fivetop {
    position: relative;
    display: block;
    background: var(--bg2);
    padding: 20px;
}

.fivetop-item {
    position: relative;
    align-items: center;
}

@media (max-width: 860px) {
    .fivetop-item {
        min-width: 300px;
    }
}

.fivetop-bg {
    position: relative;
    width: 95px;
    height: 95px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.fivetop-content h4 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}

.fivetop-meta {
    font-weight: 300;
    opacity: 0.7;
    font-size: 12px;
}

.fivetop-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fivetop-content h4, .fivetop-bg img {
    transition: 0.4s;
}

.fivetop-item:hover .fivetop-bg img {
    transform: scale(1.04);
}

.fivetop-item:hover .fivetop-content h4 {
    color: var(--color1)
}

/* MAIN, ASIDE */
.main-grid {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
}

aside > div + div {
    margin-top: 20px;
}

@media (max-width: 860px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
}

/* FIXED NEWS */
.fixednews-item {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.fixednews-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.fixednews-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.fixednews-meta span > a {
    color: #fff;
}

.fixednews-meta span:last-child {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.fixednews-meta span:last-child:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.fixednews-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.fixednews-item > i {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #3d55ef;
    color: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    z-index: 2;
}

.fixednews-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fixednews-item:hover .fixednews-bg {
    transform: translateX(-4%);
}

.fixednews-item:hover .fixednews-content {
    transform: translateY(-2%);
}

/* RELATED NEWS */
.relatednews {
    background: var(--bg2);
    padding: 20px;
    border-radius: 10px;
}

.relatednews-item {
    position: relative;
    align-items: center;
}

.relatednews-item + div {
    margin-top: 30px;
}

.relatednews-bg {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.relatednews-content h4 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}

.relatednews-meta {
    font-weight: 400;
    opacity: 0.7;
}

.relatednews-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.relatednews-content h4, .relatednews-bg img {
    transition: 0.4s;
}

.relatednews-item:hover .relatednews-bg img {
    transform: scale(1.04);
}

.relatednews-item:hover .relatednews-content h4 {
    color: var(--color1)
}

/* CAT NEWS */
.catnews {
}

.catnews li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.catnews li + li {
    margin-top: 10px;
}

.catnews li:hover {
    opacity: 0.8;
}

.catnews li a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.catnews li span {
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}

.catnews li span:nth-child(3) {
    display: inline-block;
    background: var(--light);
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    font-size: 16px;
}

.catnews li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.catnews li:nth-child(1n):before {
    background: linear-gradient(to top left, #1c1c20 -10%, #0000 210%);
}

.catnews li:nth-child(2n):before {
    background: linear-gradient(to top left, #1c1c20 -10%, #0000 210%);
}

.catnews li:nth-child(3n):before {
    background: linear-gradient(to top left, #1c1c20 -10%, #0000 210%);
}
.catnews li:nth-child(4n):before {
    background: linear-gradient(to top left, #1c1c20 -10%, #0000 210%);
}

.catnews li > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LAST COMM */
.lastcomm {
    background: var(--bg2);
    padding: 20px;
    border-radius: 10px;
}

.lastcomm-item {
    position: relative;
    align-items: flex-start;
}

.lastcomm-item + div {
    margin-top: 30px;
}

.lastcomm-bg {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
}

.lastcomm-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.lastcomm-content span {
    font-size: 12px;
    opacity: 0.7;
}

.lastcomm-content p {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 10px;
}

.lastcomm-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* PICKED NEWS */
.pick {
    background: var(--bg2);
    padding: 25px;
    border-radius: 10px;
}

@media (max-width: 860px) {
    .pick {
        background: var(--bg);
        padding: 0;
        margin-top: 20px;
    }
}

.pick-items {
    height: 430px;
}

@media (max-width: 860px) {
    .pick-items {
        height: auto;
    }
}

.pick-item {
    display: inline-block;
    position: relative;
    border-radius: 10px;
    width: 350px;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 860px) {
    .pick-item {
        width: 100%;
        height: 300px;
    }
}

.pick-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.pick-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.pick-meta, .pickr-meta {
    font-weight: 400;
    color: #999;
    font-size: 14px;
}

.pick-meta span > a {
    color: #fff;
    font-weight: 600;
}

.pick-meta span + span, .pickr-meta span + span {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.pick-meta span + span:before, .pickr-meta span + span:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.pick-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.pick-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pick-item:hover .pick-bg {
    transform: translateX(-4%) scale(1.04);
}

.pick-item:hover .pick-content {
    color: #fff;
    transform: translateY(-2%);
}

.pickr-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-left: 25px;
}

@media (max-width: 860px) {
    .pickr-items {
        margin-left: 0;
        margin-top: 30px;
    }
}

.pickr-items .pick-item:nth-child(1) {
    display: none;
}

.pickr-item {
    position: relative;
    display: flex;
    width: auto;
    height: auto;
}

.pickr-item + .pickr-item {
    margin-top: 10px;
}

.pickr-bg {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.pickr-bg img {
    transition: 0.3s;
}

.pickr-content {
    padding: 0;
    margin-left: 30px;
    justify-content: center;
}

.pickr-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pickr-meta span > a {
    font-weight: 600;
}

.pickr-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pickr-item:hover .pickr-bg img {
    transform: scale(1.04);
}

.pickr-item:hover .pickr-content h3 {
    color: var(--color1)
}

/* SHORTNEWS */
.shortnews {
    background: var(--bg2);
    padding: 25px;
    border-radius: 10px;
}

.kino-grid.news .shortnews-item {
    grid-template-columns: 1fr;
}

.shortnews-item {
    position: relative;
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 1fr;
    margin-bottom: 40px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .shortnews-item {
        grid-template-columns: 1fr;
    }
}

.shortnews-bg {
    display: inline-block;
    border-radius: 10px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.shortnews-content > a {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.shortnews-item:hover .shortnews-content > a {
    color: var(--color1);
}

.shortnews-content > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.shortnews-text, .shortnews-text * {
    color: var(--text2);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.shortnews-content > .badge, .shortnews-content h3 {
    margin-bottom: 10px;
}

.shortnews-meta {
    color: var(--text2);
    font-weight: 400;
    grid-gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    align-items: center;
}

.shortnews-meta span + span {
    position: relative;
    margin-left: 10px;
}

.shortnews-bg img, .shortnews-content h3 {
    transition: 0.4s;
}

.shortnews-item:hover .shortnews-bg img {
    transform: scale(1.04);
}

/* ADDIT NEWS */
.additnews-item {
    position: relative;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.additnews-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,0) 45%,rgba(0,0,0,.4) 60%,#000000d9 100%);
    z-index: 1;
}

.additnews-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    padding: 30px;
    color: #fff;
    transition: 0.4s;
    z-index: 2;
}

.additnews-meta span > a {
    color: #fff;
}

.additnews-meta span:last-child {
    position: relative;
    padding-left: 15px;
    margin-left: 10px;
}

.additnews-meta span:last-child:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.additnews-bg {
    position: absolute;
    width: 105%;
    height: 100%;
    transition: 0.4s;
}

.additnews-item > i {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #3d55ef;
    color: #fff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    z-index: 2;
}

.additnews-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.additnews-item:hover .additnews-bg {
    transform: translateX(-4%);
}

.additnews-item:hover .additnews-content {
    transform: translateY(-2%);
}

/* FULL NEWS */
.fullnews-title, .fullnews-content {
    background: var(--bg2);
    padding: 25px;
    border-radius: 0 0 10px 10px;
}

.fullnews-title {
    border-bottom: 2px solid var(--bg);
    padding-bottom: 20px;
    border-radius: 10px 10px 0 0;
}

.fullnews-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    font-weight: 400;
    color: #999;
}

.fullnews-meta .badge + span:before {
    display: none;
}

.fullnews-user {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.fullnews-user img, .fullnews-user .dle-avatar {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
    overflow: hidden;
}

.fullnews-tool {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: auto;
}

.fullnews-tool a {
    border: 2px solid var(--bg);
    padding: 8px 10px;
    border-radius: 5px;
}

.fullnews-tool a:nth-child(1) {
    background: rgb(255 241 242);
    color: #f03c3c;
    border: 2px solid transparent;
}

.fullnews-tool a:nth-child(2) {
    background: #f7f7f7;
    border: 2px solid transparent;
}

.fullnews-short.dle-text, .fullnews-short.dle-text * {
    display: block;
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* 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;
    font-weight: 400;
}

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

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