/* STYLES 6.0
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #141426;
    --bg2: #1e1e34;
    --text: #fff;
    --text1: #000;
    --text2: #9c9cbb;
    --color1: #7350ff;
    --color2: #896ef3;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 30%);
    --radius: 12px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* HEADER */
header {
    position: relative;
    background: linear-gradient(0deg,rgba(17,17,19,0),rgb(17 17 24 / 100%));
    width: 100%;
    top: 0;
    padding: 10px 0;
}

header.fixed {
    position: fixed;
    z-index: 7;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo, .header-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 60px;
}

.header-link, .header-link img {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 15px;
}

@media (max-width: 860px) {
    .header-link {
        display: none;
    }
}

/* CATALOG */
.catalog-btn {
    background: var(--color1);
    width: 140px;
    line-height: 43px;
    height: 43px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 860px) {
    .catalog-btn {
        margin-left: auto;
        min-width: 40px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding: 0;
        text-align: center;
    }
}

.catalog-btn:hover {
    background: var(--color2);
}

.catalog-btn span {
    margin-left: 10px;
}

@media (max-width: 860px) {
    .catalog-btn span {
        display: none;
    }
}

.catalog-btn.active i:before {
    content: "\f00d";
}

.catalog {
    position: absolute;
    background: var(--bg2);
    color: var(--text);
    padding: 20px;
    box-shadow: 0 12px 24px rgb(0 0 0 / 15%);
    border-radius: var(--radius);
    max-width: 360px;
    top: 100%;
    left: 0;
    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 {right: 0; left: auto;}
}

.catalog.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.catalog > a {
    display: inline-block;
    min-width: 150px;
    max-width: 150px;
    padding: 5px;
}

.catalog > a:hover {
    color: var(--color1);
}

/* MOB MENU 0.3 */
.mobmenu-btn {
    display: none;
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        background: var(--color1);
        border-radius: var(--radius);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        text-align: center;
        margin-left: 10px;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu-btn.active {
        z-index: 9;
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        right: -300px;
        width: 240px;
        height: 100%;
        margin-left: 0;
        background: var(--bg);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 8;
    }

    .mobmenu.active {
        display: flex;
        align-items: flex-start;
        right: 0;
        padding: 20px;
        border-radius: 0;
    }

    .mobmenu a + div, .mobmenu a {
        display: block;
        width: 100%;
    }

    .mobmenu div > div {
        display: none;
        width: 100%;
        top: 0;
        column-count: 1;
    }

    .mobmenu div > a.active + div {
        position: relative;
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* HEADER SEARCH */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light);
    backdrop-filter: blur(25px);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding-left: 20px;
    margin-left: 30px;
    margin-right: auto;
    transition: 0.3s;
    z-index: 7;
}

@media (max-width: 860px) {
    .header-search {
        margin-left: 15px;
        margin-right: 15px;
        padding-left: 0;
    }

    .header-search.active {
        position: fixed;
        background: var(--bg2);
        padding: 10px;
        border-radius: 0;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
    }
}

.header-search_icon {
    display: inline-block;
    color: var(--text);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
}

.header-search input {
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: 300px;
    height: inherit;
    line-height: inherit;
    font-weight: 400;
}

@media (max-width: 860px) {
    .header-search input {
        display: none;
    }

    .header-search_icon {
        order: -1;
        color: var(--light);
    }
}

.header-search input::placeholder {
    color: var(--light2);
}

.header-search.active input, .header-search.active .header-search_close {
    display: inline-block;
}

.header-search_close {
    display: none;
}

@media (max-width: 860px) {
    .header-search_close {
        display: none;
        position: absolute;
        opacity: 0.6;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
    }
}

/* HEADER USER */
.header-user > a {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-user > a img {
    width: 40px;
    height: 40px;
}

.header-user > a span {
    margin-left: 10px;
    font-weight: bold;
}

.header-user > div {
    position: absolute;
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: 220px;
    top: 100%;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 6;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_av {
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--light);
}

.header-user_av > img {
    width: 34px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.header-user_av > span {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 50px;
    margin-left: 10px;
    font-weight: bold;
}

.header-user_av > span span {
    display: block;
    font-size: 12px;
}

.header-user_menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
}

.header-user_menu a:hover {
    background: var(--color1);
    color: var(--text);
}

.header-user_menu a i {
    margin-right: 10px;
    opacity: 0.8;
}

/* MODAL LOGIN 0.2 */
.modal-login > a {
    display: flex;
    align-items: center;
    color: var(--text2);
    cursor: pointer;
}

.modal-login > a i, .modal-login > a img {
    margin-right: 10px;
    margin-top: 1px;
    float: left;
}

.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 .e-float > a {
    position: absolute;
    top: 15px;
    right: 15px;
    border-bottom: 1px dotted #20a8d8;
}

.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);
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex > a, .modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* DLE FILTER */
.grid2> #dle-content, .grid3> #dle-content, .grid4> #dle-content, .grid5> #dle-content, .grid6> #dle-content, .grid7> #dle-content {
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

.grid7> #dle-content {
    grid-template-columns: repeat(7, 1fr);
}

.grid6> #dle-content {
    grid-template-columns: repeat(6, 1fr);
}

.grid5> #dle-content {
    grid-template-columns: repeat(5, 1fr);
}

.grid4> #dle-content {
    grid-template-columns: repeat(4, 1fr);
}

.grid3> #dle-content {
    grid-template-columns: repeat(3, 1fr);
}

.grid2> #dle-content {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1200px) {
    .grid5> #dle-content {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid3> #dle-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .grid5> #dle-content {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid3> #dle-content {
        grid-template-columns: repeat(2, 1fr);
    }
   
}

@media (max-width: 760px) {
    .grid5> #dle-content {
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    }
}

@media screen and (max-width: 470px) {
    .e-grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
     .grid3> #dle-content {
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    }
}
@media screen and (max-width: 320px) {
    .e-grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*
#dle-content {
    display: grid;
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 860px) {
    #dle-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
*/

/* ANN BIG */
.ann-big {
    position: relative;
    overflow: hidden;
}

.ann-big_one {
    height: 500px;
}

.ann-big_one .swiper-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg), transparent 80%), linear-gradient(90deg, var(--bg), transparent 100%), linear-gradient(0deg, rgb(14 17 26 / 100%), transparent), linear-gradient(270deg, var(--bg), transparent 40%);
    z-index: 1;
}

.ann-big_content {
    position: relative;
    padding: 180px 0;
    z-index: 2;
}

@media (max-width: 860px) {
    .ann-big_content {
        padding: 150px 0 0;
    }
}

.ann-big_content > .badge {
    margin-bottom: 30px;
}

.ann-big_content h1, .ann-big_content h2 {
    margin-bottom: 10px;
}

.ann-big_text {
    max-width: 600px;
    color: var(--text2);
    font-size: 16px;
}

.ann-big_link {
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 860px) {
    .ann-big_link {
        display: block;
    }
}

.ann-big_link .e-btn {
    margin-right: 20px;
}

@media (max-width: 860px) {
    .ann-big_link .e-btn {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.ann-big_link > * i {
    margin-right: 8px;
}

.ann-price {
    font-size: 25px;
    font-weight: bold;
}

.ann-price > span {
    color: var(--text2);
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    margin-left: 10px;
}

.ann-big_one img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ann-big_two {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 600px;
    padding: 60px 10px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .ann-big_two {
        display: none;
    }
}

.ann-big_two > i {
    position: absolute;
    background: var(--light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light2);
    border-radius: var(--radius);
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.ann-big_two > i:hover {
    background: var(--color1);
}

.ann-big_two .fa-chevron-right {
    left: 45px;
}

.ann-big_item {
    position: relative;
    width: 100%;
    filter: contrast(0.3);
    overflow: hidden;
}

.swiper-slide-thumb-active .ann-big_item {
    transform: scale(1.04);
    filter: contrast(1);
}

.ann-big_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ann-big_item > img {
    position: relative;
    border: 1px solid var(--light);
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.ann-big_title {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

/* ANN PRIO */
.ann-prio li {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .ann-prio li {
        min-width: 260px;
    }
}

.ann-prio li span {
    display: block;
    color: var(--text2);
    margin-bottom: 15px;
}

.ann-prio li span b {
    color: var(--color1);
    margin-right: 10px;
}

/* ANN SECT TABS */
.ann-sect_title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.ann-sect_title h1 {
    margin-bottom: 0;
}

.ann-sect_title i {
    display: inline-block;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    margin-left: 20px;
}

.ann-sect_links {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.ann-sect_links span {
    min-width: 160px;
    background: #221d47;
    color: var(--text2);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
}

.ann-sect_links span.active {
    background: var(--color1);
    color: #fff;
}

@media (max-width: 860px) {
    .ann-sect .tabs-content.e-grid5 {
        grid-template-columns: 1fr 1fr;
    }
}

.ann-short_item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 350px;
    padding: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .ann-short_item {
        height: 230px;
    }
}

.ann-short_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(70, 11, 110, 0) 0%, var(--bg2) 80%);
    z-index: -1;
}

.ann-short_item .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    margin-bottom: 10px;
}

.ann-short_item > a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.ann-short_price > span {
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
    margin-left: 10px;
}

.ann-short_item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    z-index: -2;
}

.ann-short_item:hover img {
    transform: scale(1.02);
}

/* ANN HIT */
.ann-hit_items {
    column-count: 2;
    column-gap: 10px;
}

.ann-hit_items .ann-hit_item:nth-child(3) {
    height: 200px;
}

.ann-hit_items .ann-hit_item:nth-child(2) {
    height: 200px;
}

.ann-hit_item {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    border: 1px solid var(--light);
    margin: 5px 0;
    overflow: hidden;
}

.ann-hit_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(70, 11, 110, 0) 0%, var(--bg2) 80%);
    z-index: 1;
}

.ann-hit_item .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    margin-bottom: 10px;
    z-index: 2;
}

.ann-hit_content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}

.ann-hit_content h3 {
    margin-bottom: 10px
}

.ann-hit_price {
    color: var(--text2);
    font-size: 18px;
    font-weight: 600;
}

.ann-hit_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.ann-hit_item:hover.ann-hit_item > img {
    transform: scale(1.05)
}

/* ANN BLOG */
@media (max-width: 860px) {
    .ann-blog .e-grid3 {
        grid-template-columns: 1fr;
    }
}

.ann-blog_item {
}

.ann-blog_bg {
    position: relative;
    height: 200px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.ann-blog_meta {
    display: flex;
    align-items: center;
    color: var(--text2);
    font-size: 12px;
    margin-bottom: 10px;
}

.ann-blog_meta span + span {
    margin-left: 20px;
}

.ann-blog_meta i {
    margin-right: 8px;
}

.ann-blog_title {
    font-size: 16px;
    line-height: 1.5;
}

.ann-blog_item:hover .ann-blog_title {
    color: var(--color1);
}

/* ANN FULL */
.ann-full_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    opacity: 0.3;
}

.ann-full_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, var(--bg), transparent);
}

.ann-full {
    display: flex;
    align-items: flex-start;
    margin-top: 300px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .ann-full {
        flex-direction: column;
    }
}

.ann-full_left {
    display: block;
    width: 350px;
    margin-right: 60px;
}

@media (max-width: 860px) {
    .ann-full_left {
        order: 2;
        width: 100%;
        margin-right: 0;
        margin-top: 30px;
    }
}

.ann-full_poster {
    display: inline-block;
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    border: 1px solid var(--light);
    box-shadow: 0 4px 4px var(--dark);
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .ann-full_poster, .ann-full_fav, .ann-full_janr, .ann-full_share > span {
        display: none!important;
    }
}

.ann-full_fav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg2);
    padding: 5px 10px;
    border-radius: var(--radius) var(--radius) 0 0;
    color: var(--color1);
    font-weight: 600;
}

.ann-full_fav > a {
    position: relative;
    padding: 8px 15px;
    cursor: pointer;
}

.ann-full_fav [id] {
    background: var(--color1);
    color: #fff;
    border-radius: var(--radius);
}

.ann-full_fav [id]:hover {
    background: var(--color2);
}

.ann-full_fav i:not(.ann-full_fav [id] i) {
    margin-right: 8px;
}

.ann-full_share > div {
    position: absolute;
    background: #1e1e34;
    border: 1px solid var(--light);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: max-content;
    padding: 10px;
    top: -70px;
    right: -10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.ann-full_share > div:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 60%;
    width: 10px;
    height: 10px;
    background: var(--bg2);
    transform: rotate(45deg);
}

.ann-full_share.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.ann-full_janr {
    border: 1px solid var(--bg2);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 10px 20px;
    margin-bottom: 30px;
}

.ann-full_janr li span {
    display: inline-block;
    color: var(--text2);
    margin-right: 20px;
    min-width: 90px;
}

.ann-full_janr li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 5px 0;
}

.ann-full_rel .ann-short_item {
    height: 250px;
}

.ann-full_mini, .ann-full_mini p {
    color: var(--text2);
    font-size: 14px;
}

.expand-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.expand-btn {
    display: inline-block;
    background: var(--bg2);
    color: #a5a1b2;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 40px;
}

.ann-full_link {
    align-items: center;
    margin-top: 30px;
}

.ann-full_buy {
    margin-right: 20px;
}

.ann-full_buy > span {
    display: block;
    color: #50a14f;
    margin-top: 10px;
}

.ann-full_buy * > i {
    margin-right: 8px;
}

.ann-full_key {
    flex: 100%;
    margin-right: 30px;
    margin-bottom: 20px;
}

.ann-full_key > span {
    display: block;
    background: var(--light);
    padding: 8px 20px;
    border-radius: var(--radius);
    margin-top: 8px;
}

.ann-full_tip {
    margin: 40px 0;
}

.ann-full_tip span {
    display: block;
    color: var(--text2);
    font-weight: bold;
    margin-bottom: 15px;
}

.ann-full_text, .ann-full_text p {
    font-size: 14px;
    color: #cac8d1;
}

.ann-full_text p + p, .ann-full_text p + h2 {
    margin: 20px 0;
}

.ann-full_text a {
    color: var(--color1);
}

.ann-full_text ol li {
    position: relative;
    color: #a5a1b2;
    padding-left: 20px;
    margin: 15px;
    line-height: 1.5;
}

.ann-full_text ol li:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #808191;
    border-radius: 50%;
    margin-right: 20px;
}

.ann-full_text ol li strong, .ann-full_text ol li b {
    color: var(--color3);
}

.ann-full_screens {
    position: relative;
    border-radius: var(--radius);
    margin-bottom: 40px;
    overflow: hidden;
}

.ann-full_screens > .fal {
    position: absolute;
    left: 20px;
    top: 45%;
    font-size: 30px;
    z-index: 5;
    cursor: pointer;
}

.ann-full_screens > .fa-chevron-right {
    left: unset;
    right: 20px;
}

.ann-full_screens > .swiper-button-disabled {
    display: none;
}

.ann-full_screens .swiper-slide {
    aspect-ratio: 16/9;
}

.ann-detal {
}

.ann-detal .tabs-links span {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.ann-detal .tabs-links span + span {
    margin-left: 20px;
}

.ann-detal .tabs-links span.active {
    background: var(--bg2);
    border-radius: var(--radius) var(--radius) 0 0;
}

.ann-detal .tabs-content {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

.ann-detal > div:nth-child(2) {
    border-radius: 0 var(--radius) var(--radius);
}

.ann-detal .tabs-content.dle-text p {
    color: var(--text2);
}

.ann-detal ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

@media (max-width: 860px) {
    .ann-detal ul li {
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 10px;
    }
}

.ann-detal ul li span:first-child {
    color: var(--text2);
}

@media (max-width: 860px) {
    .ann-full_rel .e-grid2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* TRAILER MODAL */
.trailer-modal {
    display: none;
    position: fixed;
    background: var(--bg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.trailer-modal.active {
    display: block;
}

.trailer-modal_heading {
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.trailer-modal_heading h4 {
    margin-bottom: 0;
}

.trailer-modal_heading i {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    right: 0;
    top: 5px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.trailer-modal_iframe {
    position: relative;
    padding-bottom: 85vh;
}

.trailer-modal_iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* FULL BLOG */
.ann-fullb_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    filter: blur(5px);
    opacity: 0.3;
}

.ann-fullb {
    position: relative;
    margin-top: 180px;
    overflow: hidden;
}

.ann-fullb_meta {
    display: flex;
    align-items: center;
    color: var(--text2);
    margin-bottom: 30px;
}

.ann-fullb_meta span i {
    margin-right: 8px;
}

.ann-fullb_meta span + span {
    margin-left: 30px;
}

.ann-fullb_poster {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 20px 0;
}

/* BADGES */
.badge {
    display: inline-block;
    border-radius: var(--radius);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.badge-red {
    background: #e13535;
    color: #e7c7c7;
}

.badge-blue {
    background: #2c2554;
    color: #9e88f5;
}

.badge-yellow {
    background: #cdb645;
    color: #080803;
}

/* RATING COLOR */
.rating-color {
    background-color: #3bb33b;
    box-shadow: 0 4px 9px rgb(59 179 59 / 50%);
}

.rating-color.low {
    background: #e13535;
    box-shadow: 0 4px 9px rgb(225 53 53 / 50%);
}

.rating-color.middle {
    background: #ff6702;
    box-shadow: 0 4px 9px rgb(255 103 2 / 50%);
}

.rating-color1 {
    color: #3bb33b;
    font-weight: bold;
}

.rating-color1.low {
    color: #e13535;
}

.rating-color1.middle {
    color: #ff6702;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--bg2);
    color: #fff;
    padding-top: 20px;
}

.footer-soc, .footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.footer-soc > a {
    display: inline-block;
    background: var(--light);
    color: #a3a7bc;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 25px;
    text-align: center;
}

.footer-soc > a:hover {
    background: var(--color1);
    color: var(--text1);
}

.footer-menu > a {
    color: #a3a7bc;
    font-size: 14px;
}

.footer-menu > a:hover {
    color: var(--color1);
}

.footer-menu > a + a, .footer-soc > a + a {
    margin-left: 20px;
}

.footer-down {
    border-top: 1px solid var(--light);
    padding: 15px 0;
    margin-top: 30px;
}

.footer-down .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-down .container > span {
    opacity: 0.4;
    font-size: 12px;
}

.footer-down > a, .footer-down a > img {
    display: inline-block;
    width: 80px;
    height: auto;
}

.footer-dev {
    color: #797882;
    font-size: 12px;
}

.footer-dev > a {
    color: var(--color1);
    margin-left: 5px;
}

