/* STYLES 25.0
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Light.woff2) format("woff2"),url(../fonts/Gilroy-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

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

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

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

/* BASIC */
:root {
    --bg: #12151f;
    --bg2: #1c202d;
    --engine: #2b2f3c;
    --engine2: #414450;
    --text: #fff;
    --text1: #000;
    --text2: #c0bec9;
    --color1: #54b2f5;
    --color2: #6bbef9;
    --color3: #fcee85;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 20%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 20px;
}

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

/* MAIN, ASIDE, SPEEDBAR, CAT NAME*/
aside.mobmenu {
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 25px;
    background: url(https://www.nastol.com.ua/large/202205/492479.jpg) center/cover no-repeat;
    box-shadow: inset 0 9999px rgb(22 20 30 / 60%);
    border-right: 1px solid var(--bg2);
    z-index: 7;
    overflow: hidden;
}

.aside-logo {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.aside-logo > img {
    display: inline-block;
    width: 100px;
    height: auto;
    object-position: center;
}

.aside-menu {
    margin: auto 0;
}

.aside-menu > span {
    display: block;
    color: #bbb6c8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.aside-menu > a + span {
    margin-top: 40px;
}

.aside-menu a {
    display: block;
    color: #d1cddc;
    font-weight: 500;
    margin-bottom: 10px;
}

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

.aside-menu a:nth-child(2n + 1):hover i {
    background: #ff7551;
}

.aside-menu a:nth-child(2n + 2):hover i {
    background: #32a7e2;
}

.aside-menu a:nth-child(2n + 3):hover i {
    background: #6c5ecf;
}

.aside-menu a i {
    background: var(--light);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
}

main {
    margin-left: 220px;
}

@media (max-width: 860px) {
    main {
        margin-left: 0;
    }
}

.speedbar {
    color: #808191;
    font-size: 14px;
    margin-bottom: 30px;
}

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

header + h1 + p, .dle-form h1 + p {
    color: #a5a1b2;
    max-width: 600px;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1500px;
    }
}

/* HEADER */
header {
    position: relative;
    background: var(--bg2);
    padding: 10px 0;
}

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

.header-logo {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-store {
    position: relative;
    display: inline-block;
    color: #a5a1b2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
}

.header-store > span {
    position: absolute;
    top: -5px;
    right: 0;
    display: inline-block;
    background: #F44336;
    border-radius: 50%;
    color: #fff;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
}

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

.mobmenu-sub, .mobmenu-sub > a {
    position: relative;
    display: inline-block;
}

.mobmenu-sub > a + div {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    padding: 10px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    color: var(--text);
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.mobmenu-sub > a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    margin-left: auto;
}

.mobmenu-sub > a.active {
}

.mobmenu-sub > a.active:after {
    transform: rotate(180deg);
}

.mobmenu-sub > a.active + div {
    visibility: visible;
    opacity: 1;
    height: auto;
    border-radius: 0 var(--radius) var(--radius) var(--radius);
}

.mobmenu-sub > a.active + div a {
    display: block;
    margin: 10px 0;
    line-height: 1.5;
}

.mobmenu-sub > a.active + div a:hover {
    color: var(--color1)
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--color1);
        font-size: 25px;
        text-align: center;
        margin-left: 15px;
    }

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

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

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

    .mobmenu.active {
        display: flex;
        left: 0;
        padding: 20px;
        border-radius: 0;
    }
}

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

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

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

@media (max-width: 860px) {
    .header-search form {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        background: var(--bg2);
        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 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #a5a1b2;
    font-size: 20px;
    text-align: center;
}

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

.header-search form .fa-microphone {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

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

/* 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 AUTH */
[href="#modal"] {
    display: inline-block;
    background: var(--color1);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin: 0 5px;
    cursor: pointer;
}

[href="#modal"]:hover {
    background: var(--color2);
}

@media (max-width: 860px) {
    [href="#modal"] span {
        display: none;
    }
}

[href="#modal"] i {
    margin-right: 10px;
}

@media (max-width: 860px) {
    [href="#modal"] i {
        margin-right: 0;
    }
}

.modal-auth {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

.modal-auth > i {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    background: var(--light);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}

.modal-auth > i:hover {
    background: var(--color3);
}

.modal-auth_bg {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.modal-auth_bg > img:nth-child(2) {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100px;
    height: auto;
}

.modal-auth_content {
    width: 800px;
    padding: 30px 60px;
}

@media (max-width: 860px) {
    .modal-auth_content {
        width: 100%;
        padding: 30px;
    }
}

.modal-auth_lost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c5c5c5;
    margin-bottom: 20px;
}

.modal-auth_lost a:hover {
    color: var(--color1);
}

.modal-auth_content button {
    width: 100%;
    font-weight: bold;
}

.modal-auth_not {
    margin-top: 20px;
    color: #c5c5c5;
}

.modal-auth_not a {
    color: var(--color3);
    font-weight: bold;
}

.modal-auth_not a:hover {
    opacity: 0.8;
}

/* MODAL LOGIN */
.modal-login > a {
    display: inline-block;
    background: var(--color1);
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

.modal-login > a:hover {
    background: var(--color2);
}

@media (max-width: 860px) {
    .modal-login > a span {
        display: none;
    }
}

.modal-login > a i {
    margin-right: 10px;
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    padding: 40px 80px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login form {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

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

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

.modal-login_lost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c5c5c5;
    margin-bottom: 20px;
}

.modal-login_lost a:hover {
    color: var(--color1);
}

.modal-login_btn a {
    background: var(--light);
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: var(--light2);
}

/* MORE PARNTER */
.mor-partn {
    position: relative;
    padding: 10px;
    border: 1px solid var(--light);
    border-radius: var(--radius);
}

.mor-partn:before {
    content: attr(data-title);
    position: absolute;
    top: -10px;
    left: 30px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 0 15px;
    color: var(--text2);
    font-size: 14px;
}

.mor-partn > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.mor-partn > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MORE ONE PROMO */
.mor-one {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient( 58.2deg, rgb(62 114 195) -3%, rgb(53 159 171) 80%, rgb(255 204 112) 98% );
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

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

.mor-one > img {
    width: 500px;
    height: auto;
    margin-left: -160px;
    margin-top: -50px;
}

@media (max-width: 860px) {
    .mor-one > img {
        width: 400px;
    }
}

.mor-one_content > img {
    display: inline-block;
    width: 170px;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin-bottom: 30px;
}

.mor-one_content ul {
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
}

.mor-one_content ul li {
    display: flex;
    align-items: center;
    font-weight: bold;
    border: 2px solid var(--light);
    padding: 8px;
    border-radius: var(--radius) var(--radius) 0;
}

.mor-one_content ul li + li {
    margin-left: 15px;
}

.mor-one_content ul li i {
    display: inline-block;
    background: var(--light);
    border-radius: var(--radius);
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 25px;
    text-align: center;
    margin-right: 10px;
}

/* MORE TEMPLATES SHORT */
.mor-sect_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mor-sect_title h1 {
    margin-bottom: 0;
}

.mor-sect_title > a {
    color: var(--text2);
    font-weight: bold;
}

@media (max-width: 860px) {
    .mor-sect_title > a {
        margin-top: 20px;
    }
}

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

.mor-sect_title > a i {
    background: var(--light);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
}

.mor-sect_info, .container h1 + p, .container h2 + p {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-width: 800px;
    color: var(--text2);
    line-height: 1.5;
    margin-top: -10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.mor-sect_info[style] {
    margin-bottom: 10px;
}

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

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

.mor-sect_items {
    position: relative;
    padding: 0 15px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mor-sect_items {
        padding: 0;
        overflow: visible;
    }
}

.mor-sect_items > .fal {
    position: absolute;
    backdrop-filter: blur(5px);
    background: var(--light);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    border-radius: 10px;
    top: 45%;
    right: 0;
    width: 45px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
}

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

.mor-sect_items > .fal:hover {
    background: var(--color2);
}

.mor-sect_items > .fa-chevron-left {
    left: 0;
}

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

.more-temp_item {
    position: relative;
    background: var(--bg2);
    border-radius: var(--radius);
}

.more-temp_upd {
    background: linear-gradient( 58.2deg, #3e72c3 0%, #32a7e2 50%, #f2e9a6 90% );
    padding: 8px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: bold;
    text-align: center;
}

.more-temp_upd:before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient( 86deg, #3e72c3 0%, #32a7e2 50%, #f2e9a6 90% );
    border-radius: 17px;
    z-index: -1;
}

.more-temp_bg {
    position: relative;
    border: 5px solid var(--bg2);
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

.more-temp_content {
    padding: 15px 25px;
}

.more-temp_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.more-temp_meta span {
    display: block;
    color: #8d899f;
    font-size: 12px;
    margin-bottom: 10px;
}

.more-temp_meta span i {
    margin-right: 10px;
}

.more-temp_label {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(90deg, #4caf50, transparent);
    box-shadow: -10px 0px 20px -5px rgb(76 175 80 / 50%);
    border-radius: var(--radius) 0 0 var(--radius);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.more-temp_content h2 {
    margin-bottom: 10px;
}

.more-temp_content .posterlogo {
    display: block;
    max-width: 150px;
    max-height: 50px;
    margin-bottom: 20px;
}

.more-temp_content > div.e-clamp2, .more-temp_content > div.e-clamp2 p {
    color: var(--text2);
    margin-bottom: 10px;
    font-size: 14px;
}

.more-temp_link {
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.more-temp_link a {
    display: inline-block;
    flex: 1 1 0;
    background: var(--color1);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.more-temp_link a:hover {
    background: var(--color2);
}

.more-temp_link a[onclick] {
    background: var(--light2);
    color: var(--text);
    padding: 0;
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    margin-left: 20px;
    flex: none;
}

.more-temp_price {
    display: block;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

/* MORE BLOG */
.more-blog_item {
    position: relative;
    border: 3px solid var(--bg);
    border-radius: var(--radius);
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.more-blog_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #161e29, transparent), linear-gradient(180deg, rgb(22 30 41 / 51%), transparent);
}

.more-blog_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-blog_content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

.more-blog_head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #b9bdc0;
    font-size: 14px;
    margin-bottom: auto;
}

.more-blog_head > span {
}

.more-blog_head > span + span:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #b9bdc0;
    border-radius: 50%;
    margin: 0 10px;
    margin-bottom: 3px;
}

.more-blog_head > span i {
    margin-right: 8px;
}

.more-blog_title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.more-blog_title:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.more-blog_text, .more-blog_text p {
    color: #dedede;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

/* MORE BLOG FULL */
.mor-fullblog {
    max-width: 800px;
}

.mor-fullblog_bg {
    position: relative;
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mor-fullblog_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    margin: 20px 0;
}

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

.mor-fullblog_meta > span {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #808191;
}

.mor-fullblog_meta > span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #808191;
    border-radius: 50%;
    margin-right: 10px;
}

.mor-fullblog_meta > span i {
    margin-right: 8px;
}

.mor-user {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.mor-user > img {
    border: 1px solid var(--bg2);
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.mor-fullblog_file > div {
    background: var(--bg2);
}

/* MORE LIST SHORT */
.more-list_item {
    position: relative;
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 80px 1fr;
    background: var(--bg2);
    padding: 10px;
    border-radius: var(--radius);
    transition: 0.3s;
    overflow: hidden;
}

.more-list_item:hover {
    color: var(--color2);
    transform: translateY(-5px);
}

.more-list_bg {
    display: inline-block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    overflow: hidden;
}

.more-list_content > a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.more-list_content > a:before {
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.more-list_content > span:not(.more-temp_label), .more-list_content > span p {
    color: #a5a1b2;
    font-size: 12px;
}

.more-list_meta {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--light);
    color: #a5a1b2;
    font-size: 12px;
    grid-column: 1/-1;
    margin: 0 -10px -10px;
    /* padding-top: 10px; */
    text-align: center;
}

.more-list_meta span {
    display: inline-block;
    padding: 8px 10px;
}

.more-list_meta span > i {
    margin-right: 8px;
}

/* MORE FULL */
.mor-full {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 300px;
}

@media (max-width: 860px) {
    .mor-full {
        grid-template-columns: 100%;
    }
}

.mor-full_one > img:first-child {
    display: block;
    max-width: 200px;
    max-height: 50px;
    margin-bottom: 30px;
}

.mor-full_one h1 {
    margin-bottom: 15px;
}

.mor-full_short {
    position: relative;
    display: block;
    padding: 0 30px;
    color: #b5b6c6;
    width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

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

.mor-full_short:before, .mor-full_short:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 20px;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='40' viewBox='0 0 16 40'%3E%3Cpath d='M10.446 5.11607C11.6858 4.67233 12.8151 3.98846 13.7626 3.1078C14.7101 2.22713 15.4551 1.16886 15.9503 0C13.247 0.0651136 10.4509 2.69757 10.446 5.11607ZM4.09117 33.0219C5.97318 32.194 8.49067 33.5382 10.3385 35.7288C8.78886 37.0171 5.64566 35.9567 4.09605 33.0219H4.09117ZM1.92074 27.6733C3.93474 27.2082 6.10516 28.9802 7.42013 31.3941C5.63099 32.3801 2.80064 30.7988 1.92563 27.6826L1.92074 27.6733ZM0.903966 22.0921C2.97174 22.0131 4.7462 24.1386 5.51856 26.7431C3.56322 27.3291 1.15327 25.292 0.908854 22.0875L0.903966 22.0921ZM1.04573 16.4272C3.08906 16.7342 4.40402 19.1527 4.62888 21.827C2.59044 22.0456 0.644883 19.6132 1.05062 16.4226L1.04573 16.4272ZM2.34603 10.8693C4.26715 11.553 5.07861 14.1855 4.75598 16.8551C2.71265 16.6923 1.29014 13.9529 2.34603 10.8693ZM4.7902 5.60908C6.55489 6.64624 6.74554 9.40892 5.88519 11.9856C3.92496 11.446 3.08906 8.46943 4.79998 5.60908H4.7902ZM8.41246 0.823223C9.91318 2.18131 9.45857 4.97654 8.04584 7.37179C6.22248 6.47416 6.0465 3.36731 8.41246 0.823223ZM15.0753 6.41834C13.4768 8.1113 11.1157 8.95778 9.2777 8.04154C10.71 5.65559 13.5941 5.06491 15.0753 6.41834ZM12.5236 9.80425C11.3601 11.7158 9.22882 12.9623 7.23926 12.4088C8.12894 9.84146 10.7784 8.76709 12.5236 9.80425ZM10.7882 13.525C10.0647 15.5808 8.2267 17.19 6.16382 17.0179C6.50601 14.3576 8.86219 12.8367 10.7882 13.525ZM9.86919 17.4551C9.58078 19.5899 8.1045 21.5108 6.0465 21.7247C5.84119 19.069 7.84053 17.1388 9.86919 17.4551ZM9.77142 21.4596C9.91807 23.6083 8.86219 25.7757 6.8873 26.371C6.13938 23.7711 7.71832 21.5294 9.77142 21.4596ZM10.4851 25.4176C11.0717 27.5059 10.4851 29.8593 8.6911 30.8127C7.39569 28.3709 8.49067 25.8687 10.4851 25.4176ZM12.0249 29.2035C13.0662 31.1615 13.0222 33.6126 11.453 34.8823C9.61499 32.701 10.1332 30.0174 12.0249 29.2035ZM15.7352 39.3147C15.9698 39.4868 16.0676 39.7426 15.9503 39.8961C15.833 40.0495 15.5299 40.0309 15.2904 39.8542C9.98852 35.9687 6.45689 30.2949 5.42445 24.0038C4.39201 17.7127 5.93756 11.2846 9.74209 6.04627C2.34603 16.5947 4.47246 31.3429 15.7254 39.3054L15.7352 39.3147Z' fill='%23808191'/%3E%3C/svg%3E") no-repeat;
}

.mor-full_short:after {
    left: unset;
    right: 0;
    transform: scale(-1, 1);
}

.mor-full_screens > img {
    position: relative;
    display: block;
    border: 1px solid var(--light);
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.mor-full_screens > img + a {
    position: relative;
    display: block;
    max-width: 250px;
    margin: 0 auto;
    margin-top: -30px;
    background: var(--color3);
    color: var(--text1);
    box-shadow: 0px 0px 20px 0px rgb(254 204 112 / 20%);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.mor-full_screens > img + a:hover {
    transform: scale(1.05);
}

.mor-full_screens > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 860px) {
    .mor-full_screens > ul {
        display:flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: left;
    }

    .mor-full_screens > ul li {
        min-width: max-content;
    }
}

.mor-full_screens > ul img {
    background: var(--bg);
    width: 80px;
    height: 80px;
    object-fit: cover;
    padding: 5px;
    border: 3px solid var(--bg2);
    border-radius: 15px;
}

@media (max-width: 860px) {
    .mor-full_screens > ul img {
        width: 60px;
        height: 60px;
    }
}

.mor-full_screens li + li {
    margin-left: 10px;
}

.mor-full_text {
    color: var(--text2);
}

.mor-full_two {
}

.mor-full_buy {
    background: var(--bg2);
    border-top: 2px solid #3e72c3;
    border-bottom: 2px solid #ffcc70;
    border-radius: var(--radius);
    padding: 20px;
}

.mor-full_buy > img {
    display: block;
    max-width: 150px;
    max-height: 50px;
    margin-bottom: 20px;
}

.mor-full_buy > span:first-child:not(.more-temp_label) {
    display: block;
    color: #50a14f;
    font-size: 14px;
    margin-bottom: 20px;
}

.mor-full_price span {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mor-full_price span:nth-child(2) {
    position: relative;
    margin-left: 20px;
    font-size: 20px;
    color: #dad1ff;
}

.mor-full_price span:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 3px;
    background-color: #f1222e;
    -webkit-transform: rotate(-9deg);
    -ms-transform: rotate(-9deg);
    transform: rotate(-9deg);
}

.mor-full_buy > ul li {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text2);
    margin: 10px 0;
}

.mor-full_buy > ul li:before {
    content: "";
    display: block;
    background: #808191;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    margin-right: 20px;
}

.mor-full_buy > a {
    width: 100%;
    margin-top: 20px;
}

.mor-full_buy > a + span, .dle-atta + span, .mor-full_upd + span {
    display: block;
    border: 1px dashed;
    border-radius: var(--radius);
    padding: 10px;
    font-size: 13px;
    color: #808191;
    margin-top: 10px;
}

.mor-full_upd {
    display: block;
    background: var(--bg);
    color: #75df7a;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
}

.mor-full_upd i {
    margin-right: 15px;
}

.e-none + span {
    display: block;
    background: var(--bg);
    border-radius: 10px;
    color: #808191;
    padding: 3px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 2px;
}

.mor-full_info {
    display: block;
    color: #808191;
    font-size: 13px;
    margin-top: 20px;
}

.mor-full_info a {
    color: var(--color1);
}

.mor-full_info span {
    display: block;
    margin-top: 5px;
}

.mor-full_info span i {
    margin-right: 5px;
}

.mor-full_fag {
    background: url(../images/help.png) no-repeat 200px / 150px #632F1F;
    padding: 30px;
    border-radius: 15px;
    height: 250px;
    margin-top: 40px!important;
}

.mor-full_fag a {
    background-color: var(--light);
    backdrop-filter: blur(20px);
}

.mor-full_rating {
    display: flex;
    grid-gap: 20px;
    color: var(--text2);
    margin-top: -20px;
    margin-bottom: 20px;
}

/* MORE FAG */
.mor-fag {
    position: relative;
    background: var(--bg2);
    padding: 20px;
    border-radius: var(--radius);
}

.accord {
    border-top: 1px solid var(--light);
    color: var(--color3);
    padding: 15px 0;
    font-weight: bold;
}

.accord:first-child {
    border-top: none;
}

.accord, .accord-text {
    display: block;
    cursor: pointer;
    transition: border-radius 0.3s;
}

.accord:after {
    content: "\002B";
    color: #777;
    font-size: 25px;
    font-weight: 400;
    float: right;
    margin-top: -5px;
}

.accord.active:after {
    content: "\2212";
}

.accord-text {
    line-height: 1.5;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--dark);
    padding: 30px 0;
    margin-top: 30px;
}

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

footer .container > span:not(.footer-dev) {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.4;
}

.footer-soc {
    display: inline-block;
    color: #aeaeb9;
    font-size: 25px;
    border-left: 1px solid var(--light);
    padding-left: 20px;
    margin-left: 20px;
    margin-right: auto;
}

@media (max-width: 860px) {
    .footer-soc {
        margin-left: 0;
        margin-right: 0;
        border: none;
    }
}

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

.footer-soc a:hover, .footer-menu a:hover {
    color: var(--color2);
}

.footer-menu {
    color: #9a9ac7;
}

@media (max-width: 860px) {
    .footer-menu {
        margin: 0 auto;
        margin-top: 20px;
        font-size: 14px;
    }
}

.footer-dev {
    position: absolute;
    bottom: -20px;
    right: 0;
    color: #c0bec9;
    font-size: 10px;
}

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