/* STYLES 0.1
Developer: t.me/moretheme
Developer site: https://lapse.site/
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #fff;
    --bg2: #f2f2f2;
    --bg3: #0f0f10;
    --bg4: #292929;
    --text: #000;
    --text1: #fff;
    --text2: #939393;
    --color1: #007aff;
    --color2: #238cff;
    --color3: #7ab912;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 20%);
    --dark: rgb(0 0 0 / 15%);
    --radius: 12px;

    --bg: #fff; --bg-darker: #f2f6f8; --bg-darker-1: #e4ebef; --bg-darkest: #888888; 
	--bg-black: #2a2d34; --bg-blackest: #333333;
	--tt: #000; --tt-fade-0: #4b4640; --tt-fade: #80776c; --tt-fadest: #e0e0e0; --tt-on-black: #e3e3e3; 
	--bdc: rgba(0,0,0,0.1); --bsh-long: 0 0 40px rgba(0,0,0,0.6); --bsh: 0 0 40px 0 rgba(0,0,0,0.05);
	--accent: #53cba7; --green: #3bb33b; --red: #eb4d4b; --orange: #f0932b; 
	--grey: #888; --yellow: #ffda4a; --blue: #486bed; --accent-fade: rgba(83, 203, 167,0.6);
--accent-primary: #e76d39; --accent-secondary: #faaf38;
	--ui-elem-height: 40px; --ui-elem-padding: 20px; --ui-elem-gap: 10px; --ui-elem-bdrs: 4px; 
	--ui-bg-btn: #53cba7; --ui-tt-btn: #fff; --ui-bg-btn-hover: #45b392; 
	--ui-bg-inp: #fff; --ui-bdc-inp: #e3e3e3; --ui-bdc-inp-focus: #35c535;
	
	--ui-bg: #fff; --ui-bg-darker: #f2f6f8; --ui-bg-darkest: #e4ebef; --ui-accent: #06c;
	--ui-bdc: rgba(0,0,0,0.1); --ui-tt-fade: #80776c; --ui-fw-bolder: 500; --ui-fw-fa: 300;
	--ui-bsh: 0 12px 40px rgba(0,0,0,0.3); --ui-bsh-inset: inset 1px 2px 5px rgba(0,0,0,0.1); --ui-bdrs: 4px;
	--ui-gradient: linear-gradient(to bottom, #5c4f68, #352d3c); --ui-bg-black: #352d3c;
	 --ui-bg-attention: #fceedf; --ui-bd-attention: #fc9a07;
	--indent-negative: -20px; --indent: 20px; --max-width: 1200px;
 
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* HEADER */
header {
    position: relative;
    background: var(--bg3);
    border-bottom: 1px solid var(--light);
    color: var(--text2);
    width: 100%;
    top: 0;
    padding: 10px 0;
    transition: 0.3s;
    z-index: 7;
}

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

.header-logo, .header-logo img {
    position: relative;
    color:  #8BC34A;
    
    font-size: 28px;
    font-weight: bold;
}
.header-logo span {
    position: relative;
    color:  #fff;
    
    font-size: 28px;
    font-weight: bold;
}
/* HEADER FAST */
.header-fast {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    margin-right: 20px;
}

header + .header-fast {
    display: none;
}

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

    header + .header-fast {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg3);
        color: var(--text2);
        padding: 10px 20px;
        margin-right: 0;
        z-index: 8;
    }
}

.header-fast > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    font-size: 13px;
    font-weight: 200;
}

.header-fast > a:hover i {
    color: #fff;
    font-weight: bold;
}

.header-fast > a i {
    font-size: 20px;
}
.fx-col{display:-ms-flexbox;display:-webkit-flex;display:flex; 
-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}
.fx-last {-ms-flex-order: 10;-webkit-order: 10;order: 10;}
.fx-first {-ms-flex-order: -1;-webkit-order: -1;order: -1;}
/* CATALOG */
.catalog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    background: var(--bg4);
    width: 155px;
    line-height: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.catalog-btn:hover {
    background: var(--color2);
    color: #fff;
}

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

.catalog {
    position: absolute;
    background: var(--bg);
    color: var(--text);
    padding: 20px;
    box-shadow: 0 6px 25px -1px rgb(0 0 0 / 30%);
    border-radius: var(--radius);
    max-width: 500px;
    top: 100%;
    left: 170px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 8;
}

.catalog:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 40%;
    width: 10px;
    height: 10px;
    background: var(--bg2);
    transform: rotate(45deg);
}

@media (max-width: 860px) {
    .catalog:before {
        left: 60%;
    }
}

.catalog.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.catalog > a {
    display: inline-block;
    min-width: 120px;
    padding: 5px;
}

.catalog > a:hover {
    color: var(--color1);
}

/* HEADER SEARCH */
.header-search {
   margin-right: auto;
}

.header-search form {
    display: flex;
    align-items: center;
    background: var(--light);
    border-radius: var(--radius);
}

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

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

.header-search .fa-magnifying-glass, .header-search .fa-xmark {
    background: var(--light);
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    color: #adb7be;
    font-size: 14px;
    text-align: center;
}

.header-search form .fa-magnifying-glass {
    margin: 5px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
}

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

.header-search form input::placeholder {
    color: #8b9297;
}

.header-search form .fa-microphone {
    display: inline-block;
    background: transparent;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
}

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

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

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

.header-search_top.active {
    visibility: visible;
    opacity: 1;
}
button, select, textarea, input[type="text"], input[type="password"], input[type="button"], [type="reset"], input[type="submit"] 
{appearance: none; -webkit-appearance: none; font-size: 16px; font-family: inherit; font-weight: inherit;}
input[type="button"], input[type="submit"] {font-size: 14px; font-weight: 400;}
button, .btn, [type="button"], [type="reset"], [type="submit"], .pmessages__links a, .qq-upload-button, .plupload_button, 
.pagination__btn-loader a 
{display: inline-flex; justify-content: center; align-items: center; cursor: pointer; white-space: nowrap;
	height: var(--ui-elem-height); padding: 0 var(--ui-elem-padding); gap: var(--ui-elem-gap);
	border-radius: var(--ui-elem-bdrs); background: linear-gradient(135deg, var(--color1) 30%, #8BC34A);
	font-size: 14px; font-weight: 500; text-transform: uppercase;}
button:active, input[type="button"]:active, input[type="submit"]:active {box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.1);}
.color-btn, [class*=fr], [class*=plyr], .owl-prev, .owl-next, .owl-dot, [id*=mceu], [class*=tox-], .ui-dialog-titlebar-close {padding: 0; margin: 0; 
	line-height: 1.4; border: 0; box-shadow: none; background: none; border-radius: 0;}

.keep-full_button button {background: var(--bg-darker); color: var(--tt-fade);}
.keep-full_button button.is-active, .page__player .tabs-block__select button:hover {background: linear-gradient(135deg, var(--color1) 30%, #8BC34A); color: #fff;}

/* HEADER USER 2.0 */
.header-user > img {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
}

.header-user > div {
    position: absolute;
    width: 220px;
    top: 100%;
    right: 0;
    background: #fff;
    color: #000;
    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: #fff;
    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);
    margin-bottom: 20px;
}

.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;
    border-radius: var(--radius);
    padding: 10px;
    font-size: 14px;
}

.header-user > div a:hover {
    background: #e6e6e6;
}

.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);
    color: var(--text1);
    padding: 10px 20px;
    border-radius: var(--radius);
    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: 9;
}

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

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

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -220%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    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: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

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

/* KEEP FAST */
.keep-items {
    background: var(--bg2);
    padding: 30px 0;
}

.keep-items_slider {
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    .keep-items_slider {
        overflow: visible;
    }
}

.keep-items_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.keep-items_head h2 {
    margin-bottom: 0;
}
.keep-items_head h1 { margin-bottom: 0;
   font-size: 25px;
    font-weight: bold;
}
.keep-items_head span {
   font-size: 25px;
    font-weight: bold;
}

.dle-comm_head span {
   font-size: 25px;
    font-weight: bold;
}
.keep-items_nav {cursor: pointer;
}

.keep-items_nav > i {
    display: inline-block;
    background: var(--bg2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    
}

.keep-item {
    position: relative;
    width: 100%;
    padding-top: 15px;
    overflow: hidden;
}

.keep-item > img {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    inset: 0px 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: 50% 100%;
}

.keep-item_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/13;
    border-radius: var(--radius);
    transition: 0.3s;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
}

.keep-item_bg:hover {
    transform: translateY(-10px);
}

.keep-item_title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.keep-item_meta {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(50px);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 5px 20px;
    color: #a4a4a4;
    font-size: 12px;
}

.keep-item_meta span + span {
    margin-left: 5px;
}

.keep-item_meta > span.rating-color {
    display: inline-block;
    background: var(--light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light);
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
}

/* KEEP BEST */
.keep-best {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 350px;
}

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

.keep-best_items {
}

.keep-best_item {
    display: grid;
    grid-gap: 0;
    grid-auto-rows: max-content;
    grid-template-columns: 180px 1fr;
}

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

.keep-best_poster {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    border-radius: var(--radius);
    box-shadow: 4px -4px 20px 0 rgb(0 0 0 / 20%);
    transition: 0.3s;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}

.keep-best_content {
    position: relative;
    box-shadow: inset 0 9999px rgb(15 15 16 / 80%);
    color: #fff;
    border-radius: var(--radius);
    padding: 15px 15px 15px 40px;
    margin-top: 20px;
    margin-left: -10px;
    overflow: hidden;
}

.keep-best_content .posterbg {
    position: absolute;
    filter: blur(50px);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.keep-best_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .keep-best_title {
        font-size: 16px;
    }
}

.keep-best_meta {
    color: #a4a4a4;
    font-size: 11px;
    margin-bottom: 15px;
}

.keep-best_meta span + span {
    margin-left: 5px;
}

.keep-best_text, .keep-best_text * {
    color: #e4e4e4;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
}

@media (max-width: 860px) {
    .keep-best_text, .keep-best_text * {
        font-size: 10px;
        -webkit-line-clamp: 4;
    }
}

.keep-best_content > a {
    display: inline-block;
    background: linear-gradient(135deg, var(--color1) 30%, #8BC34A);
    padding: 8px 20px;
    border-radius: var(--radius);
    margin-top: 15px;
    font-size: 12px;
}

/* KEEP UPD */
.keep-upd {
}

.keep-upd_items {
    display: inline-block;
    height: max-content;
    background: var(--bg2);
    padding: 0 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.keep-upd_date {
    display: block;
    background: var(--bg4);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 -2vw 20px;
    padding: 8px 30px;
}

.keep-upd_item {
    position: relative;
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 40px 1fr 100px;
    align-items: center;
    margin-bottom: 10px;
}

.keep-upd_item > img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    border-radius: 5px;
}

.keep-upd_item > div a {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.keep-upd_meta {
    color: var(--text2);
    font-size: 12px;
}

.keep-upd_meta span + span {
    margin-left: 5px;
}

.keep-upd_item > span {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 3px 10px;
    font-size: 12px;
    text-align: center;
}

.sax h2 {margin-top: 30px;}
.page__text p{margin-top: 30px;}
/* Р—Р°С‚РµРјРЅРµРЅРёРµ РЅРёР·Р° */
.page__text.full-text.cleasrfix.js-hide-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent, #1a1a1a); /* РїРѕРґРѕР±СЂР°С‚СЊ РїРѕРґ С„РѕРЅ */
}
/* KEEP CAT */
.keep-cat_item {
    display: inline-block;
    color: #fff;
    border-radius: var(--radius);
    width: 100%;
    height: 180px;
    line-height: 180px;
    font-size: 20px;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

@media (max-width: 860px) {
    .keep-cat_item {
        height: 140px;
        line-height: 140px;
    }
}

.keep-cat_item:hover {
    transform: translateY(-10px);
}

.keep-cat_item:hover.keep-cat_item:before {
    width: 70%;
    height: 70%;
}

.keep-cat_item:before {
    content: "";
    position: absolute;
    background: var(--light);
    border-radius: 30px 0 0 30px;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 60%;
    transition: 0.3s;
}

.keep-cat_item:nth-child(1n) {
    background: #7770fe;
}

.keep-cat_item:nth-child(2n) {
    background: #234eff;
}

.keep-cat_item:nth-child(3n) {
    background: #fe9c03;
}

.keep-cat_item:nth-child(4n) {
    background: #fe6835;
}

/* KEEP FULL */
.keep-full {
    position: relative;
    background: radial-gradient(42% 55% at 70% 35%, rgb(0 0 0 / 0%) 0%, var(--bg3) 100%);
    color: #fff;
    padding-top: 40px;
    padding-bottom: 10px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .keep-full {
        background: radial-gradient(65% 35% at 50% 20%, rgb(0 0 0 / 0%) 0%, var(--bg3) 100%);
        padding-bottom: 80px;
    }
}

.keep-full_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 90%;
    z-index: -1;
}
.lord-full_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 90%;
    z-index: -1;
}
@media (max-width: 860px) {
    .keep-full_bg, .lord-full_bg {
        width: 100%;
        height: 100%;
    }
}

.keep-full .container {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 1fr;
    align-items: end;
    margin-bottom: 40px;
}
.container p{
    
    margin-bottom: 40px;
}
@media (max-width: 860px) {
    .keep-full .container {
        grid-template-columns: 120px 1fr;
        grid-gap: 30px;
    }
}
.img-overlay-icon::before {position: absolute; inset: 0; z-index: 5; border-radius: inherit; opacity: 0;
	background-color: rgba(0,0,0,0.5); color: #fff; font-size: 44px; display: grid; place-items: center;}
.item:hover .img-overlay-icon::before {opacity: 1;}	

.keep-full_left {
}
.km-rates {height: 24px;margin-bottom: 8px;border-bottom: dashed var(--color1);}
.km-rate:before {content: attr(data-text); display: inline; margin-right: 3px; text-transform: uppercase; font-weight: 600;}
.km-rate-kp:before {color: #f60;}
.km-rate-imdb:before {color: #fc0;}

.ks-rates {height: 24px;margin-bottom: 8px;border-bottom: dashed #a4a4a4;}
.ks-rate:before {content: attr(data-text); display: inline; margin-right: 3px; text-transform: uppercase; font-weight: 600;}
.ks-rate-kp:before {color: #f60;}
.ks-rate-imdb:before {color: #fc0;}

.fx-row {display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}

.keep-full_poster {
    position: relative;
}

.keep-full_poster > img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/13;
    border-radius: var(--radius);
    z-index: 2;
}

.keep-full_poster > img:nth-child(2) {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    inset: 0px 0;
    filter: blur(20px);
    transform: scale(0.9);
    transform-origin: 50% 100%;
    z-index: 1;
}

.keep-full_center {
    overflow: hidden;
}

.keep-full_title {
    display: block;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 860px) {
    .keep-full_title {
        font-size: 20px;
    }
}

.keep-full_meta {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: #a4a4a4;
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .keep-full_meta {
        font-size: 12px;
    }
}

.keep-full_meta > span.rating-color {
    display: inline-block;
    background: var(--light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light);
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 14px;
    font-weight: bold;
}

.keep-full_subtitle, .keep-full_subtitle * {
    max-width: 90%;
    color: #bebebe;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .keep-full_subtitle, .keep-full_subtitle * {
        font-size: 12px;
        max-width: 100%;
    }
}

.keep-full_link {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-top: 40px;
}

@media (max-width: 860px) {
    .keep-full_link:not(.keep-full1_content .keep-full_link) {
        position: absolute;
        justify-content: left;
        width: 100%;
        left: 0;
        bottom: -70px;
    }
}

.keep-full_link > a:first-child {
    background: linear-gradient(135deg, var(--color1) 30%, #8BC34A);
    padding: 0 60px;
    width: max-content;
}

.keep-full_link > a {
    display: inline-block;
    background: var(--light);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--radius);
    text-align: center;
}

.keep-detal {
}

.keep-detal .container {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
}

@media (max-width: 860px) {
    .keep-detal .container {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.keep-detal ul {
    border-left: 2px solid var(--bg2);
    padding-left: 30px;
}

@media (max-width: 860px) {
    .keep-detal ul {
        border: none;
        padding-left: 0;
    }
}
.kil-detal {
padding: 10px 0;
}
.kil-detal h2 {
    color: #a4a4a4;
}
.kil-detal ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.kil-detal ul li span:first-child {
    display: inline-block;
    color: #666;
    min-width: 120px;
    margin-right: 20px;
}
.keep-detal ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.keep-detal ul li span:first-child {
    display: inline-block;
    color: #666;
    min-width: 120px;
    margin-right: 20px;
}

.keep-related {
    background: var(--bg2);
    padding: 30px 0;
    overflow: hidden;
}

.keep-full1 {
    position: relative;
    background: radial-gradient(50% 70% at 50% 5%, rgb(0 0 0 / 0%) 0%, var(--bg3) 100%);
    height: 95vh;
    overflow: hidden;
}

@media (max-width: 860px) {
    .keep-full1 {
    height: 600px;
    }
}

.keep-full1_bg {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.keep-full1_content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 60px;
    color: #fff;
    text-align: center;
}

.keep-full1_content .posterlogo {
    display: block;
    max-width: 250px;
    min-width: 250px;
    margin-bottom: 30px;
}

.keep-full1_meta {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: #a4a4a4;
    font-size: 16px;
    margin-bottom: 20px;
}

.keep-full1_meta > span.rating-color {
    display: inline-block;
    background: var(--light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light);
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 14px;
    font-weight: bold;
}

.keep-full1_subtitle {
    max-width: 40%;
    color: #bebebe;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.keep-full1_subtitle p {
    color: #bebebe;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}


/* RATING COLOR */
.rating-color:before {content: attr(data-text); display: inline; margin-right: 3px; text-transform: uppercase; font-weight: 600;}
.rating-color:before {
    color: #3bb33b;
}
.rating-color {
    color: #3bb33b;
}
.rating-color.low {
    color: #e13535;
}

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

/* FOOTER */
footer {
    position: relative;
    background: var(--bg3);
    color: #fff;
    padding: 30px 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 860px) {
    footer .container {
        justify-content: center;
    }
}

.footer-logo {
    font-size: 30px;
    font-weight: bolder;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .footer-logo, .footer-help, .footer-dev {
        display: none;
    }
}

.footer-menu_sub {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu_sub:nth-child(2) {
    color: var(--text2);
    font-size: 12px;
    margin: 20px 0;
}

.footer-menu_sub a + a {
    margin-left: 20px;
}

.footer-soc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-soc > a {
    display: inline-block;
    background: var(--light);
    color: #a3a7bc;
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

.footer-soc > a + a {
    margin-left: 10px;
}

.footer-soc > a:hover {
    background: var(--color1);
    color: var(--text);
}

.footer-help {
    color: var(--text2);
    font-size: 12px;
    text-align: right;
}

.footer-help a {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

.footer-copyright {
    display: block;
    width: 100%;
    flex: 100%;
    color: var(--text2);
    opacity: 0.4;
    font-weight: 400;
    margin-top: 15px;
}

.footer-dev {
    position: absolute;
    color: #797882;
    font-size: 12px;
    right: 0;
    bottom: 0;
}

.footer-dev > a {
    color: var(--color3);
    margin-left: 5px;
}

.loading-kodik {
  	position: absolute;
    width: 5rem;
    height: 5rem;
    transform-style: preserve-3d;
    perspective: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading-kodik .arc {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-bottom: 3px solid var(--primary-color);
}
.loading-kodik .arc:nth-child(1) {
  animation: rotate1 1.15s linear infinite;
  animation-delay: -0.8s;
}
.loading-kodik .arc:nth-child(2) {
  animation: rotate2 1.15s linear infinite;
  animation-delay: -0.4s;
}
.loading-kodik .arc:nth-child(3) {
  animation: rotate3 1.15s linear infinite;
  animation-delay: 0s;
}

@keyframes rotate1 {
  from {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
  }
  to {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
  }
}
@keyframes rotate2 {
  from {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
  }
  to {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
  }
}
@keyframes rotate3 {
  from {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
  }
  to {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
  }
}
