/* BASIC */
:root {
    --bg: #0c1216;
    --bg2: #151b21;
    --bg3: #fff;
    --text: #fff;
    --text1: #000;
    --color1: #5179ff;
    --color2: #7392fb;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 15%);
    --radius: 20px;
}

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

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: var(--bg);
    padding: 30px 0;
    font-weight: 500;
    z-index: 4;
}

@media (max-width: 860px) {
    header {
        background: var(--bg2);
        width: 100%;
        top: unset;
        bottom: 0;
        height: unset;
        padding: 10px 0;
        z-index: 7;
    }
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 860px) {
    header .container {
        flex-direction: row;
    }
}

.header-logo {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-logo:before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 5px;
    background: var(--color1);
    border-radius: var(--radius);
    width: 10px;
    height: 10px;
}

.header-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-menu > a {
    position: relative;
    display: block;
    padding: 15px 10px;
    color: #8994af;
    cursor: pointer;
}

@media (max-width: 860px) {
    .header-menu > a {
        width: 100%;
    }
}

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

.header-menu > a span {
    display: none;
    position: absolute;
    top: 10px;
    left: 25px;
    min-width: 90px;
    background: var(--color1);
    color: var(--text);
    border-radius: var(--radius);
    padding: 10px 20px;
    margin-left: 20px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 860px) {
    .header-menu > a span {
        display: inline-block;
        position: relative;
        top: unset;
        left: unset;
        background: transparent;
        min-width: unset;
        padding: 0;
        font-size: 14px;
    }
}

.header-menu > a:hover span {
    display: inline-block;
}

.header-menu > a i {
    font-size: 20px;
}

@media (max-width: 860px) {
    .header-menu > a i {
        display: inline-block;
        background: var(--light);
        border-radius: 10px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
    }
}

/* MAIN, CONTAINER */
main {
    margin-left: 100px;
}

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

main .container h1 + p {
    color: #8994af;
    margin-top: -20px;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1680px;
    }
}

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

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        background: var(--bg3);
        color: var(--text1);
        border-radius: var(--radius);
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        text-align: center;
    }

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

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

    .mobmenu {
        position: fixed;
        left: 10px;
        bottom: -100%;
        width: 220px;
        height: auto;
        background: var(--bg2);
        border-radius: var(--radius);
        transition: 0.3s;
        overflow-x: auto;
        z-index: 8;
    }

    .mobmenu.active {
        bottom: 70px;
        padding: 10px 20px;
        align-items: flex-start;
    }
}

/* HEADER SEARCH FIXED 1.0 */
.header-search {
    position: fixed;
    display: flex;
    align-items: center;
    background: var(--color1);
    color: var(--text);
    padding: 10px 30px;
    border-radius: 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 6;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 7;
}

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

.header-search > i {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    margin-right: 20px;
    cursor: pointer;
}

.header-search input {
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    width: 100%;
}

.header-search input::placeholder {
    color: var(--text);
    opacity: 0.8;
    font-weight: 300;
}

.header-search .fa-xmark {
    position: absolute;
    background: var(--light);
    border-radius: var(--radius);
    right: 0;
}

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

.header-user > div {
    position: absolute;
    background: var(--bg3);
    color: var(--text1);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: 220px;
    bottom: 0;
    left: 100px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
    z-index: 5;
}

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

.header-user_av > img {
    width: 35px;
    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: 8px 20px;
    font-size: 14px;
}

.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: inline-block;
    background: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

.modal-login > a i {
    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);
    color: var(--text);
    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;
}

/* WOLT GRID */
@media (max-width: 860px) {
    .wolt-grid {
        grid-template-columns: 100%;
    }
}

.wolt-grid_two > h3 {
    margin-bottom: 20px;
}

.wolt-grid_two > h3 + div {
    margin-bottom: 30px;
}

/* WOLT BIG */
@media (max-width: 860px) {
    .wolt-grid, .wolt-big_items {
        grid-template-columns: 100%;
    }
}

.wolt-big_item {
    position: relative;
    height: 550px;
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 1440px) {
    .wolt-big_item {
        height: 400px;
    }
}

.wolt-big_item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgb(6 9 17 / 80%), transparent), linear-gradient(180deg, rgb(6 9 17 / 30%), transparent);
    z-index: 2;
}

.wolt-big_item img {
    transition: 0.3s;
}

.wolt-big_item:hover img {
    transform: scale(1.05);
    z-index: -1;
}

.wolt-big_content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 30px;
    z-index: 2;
}

.wolt-big_top {
    display: inline-block;
    max-width: 140px;
    background: var(--bg3);
    color: var(--text1);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    font-family: '6';
}

.wolt-big_content > a, .wolt-big_content h3 {
    margin-top: auto;
    margin-bottom: 10px;
}

.wolt-big_text, .wolt-big_text p {
    font-size: 14px;
}

.wolt-big_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: var(--light);
    backdrop-filter: blur(10px);
    max-width: 400px;
    padding: 8px 15px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.wolt-big_link .rating-color {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    color: var(--text1);
    font-weight: bold;
    margin-right: 5px;
}

.wolt-big_meta {
    display: inline-block;
    width: 40%;
    font-size: 12px;
    color: #8994af;
    margin: 0 auto;
}

.wolt-big_link > a {
    background: var(--light);
    border-radius: 50%;
    min-width: 48px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 860px) {
    .wolt-big_link > a:nth-child(3) {
        display: none;
    }
}

.wolt-big_link > a:last-child {
    background: var(--color1);
    margin-left: 10px;
}

.wolt-big_link > a:hover {
    opacity: 0.8;
}

/* WOLT STREAM */
.wolt-stream_items {
    background: var(--bg2);
    border-radius: var(--radius);
}

.wolt-stream_items > a {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border-bottom: 1px solid var(--bg);
}

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

.wolt-stream_items > a img {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    overflow: hidden;
}

/* WOLT JANR */
.wolt-janr_items {
    background: var(--bg2);
    border-radius: var(--radius);
}

.wolt-janr_items > a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--bg);
}

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

/* WOLT SHOTRT */
.wolt-short {
}

.wolt-short_item {
    position: relative;
    display: block;
    padding: 3px;
    overflow: hidden;
}

.wolt-short_bg {
    position: relative;
    display: inline-block;
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 5 / 7;
    margin: 10px 0;
    transition: 0.2s;
    overflow: hidden;
}

.wolt-short_item:hover .wolt-short_bg {
    transform: scale(1.028);
}

.wolt-short_link {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 15px;
    right: 15px;
}

.wolt-short_link a {
    display: block;
    background: var(--dark);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.wolt-short_link a + a {
    margin-top: 10px;
}

.wolt-short_item:hover .wolt-short_link {
    opacity: 1;
    visibility: visible;
}

.wolt-short_bg .rating-color {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    color: var(--text1);
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.wolt-short_item:hover .wolt-short_bg .rating-color {
    opacity: 1;
    visibility: visible;
}

.wolt-short_age {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.5;
    font-weight: bold;
}

.wolt-short_item h4 {
    margin-bottom: 5px;
}

.wolt-short_meta {
    color: #b9b9ba;
    font-size: 14px;
}

.wolt-short_meta span:first-child {
    display: inline-block;
    border: 1px solid var(--light);
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 15px;
}

/* WOlT FULL */
.wolt-full {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 60px;
    margin: -30px -25px 0;
    margin-bottom: 30px;
    border-radius: 0 0 80px 80px;
    height: 60vh;
    overflow: hidden;
}

@media (max-width: 1440px) {
    .wolt-full {
        border-radius: 0 0 0 80px;
    }
}

@media (max-width: 860px) {
    .wolt-full {
        padding: 40px;
        border-radius: 0 0 80px 80px;
    }
}

.wolt-full:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgb(6 9 17), transparent), linear-gradient(180deg, rgb(6 9 17 / 30%), transparent);
    z-index: -1;
}

.wolt-full_back i {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--light2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 20px;
}

.wolt-full_back:hover {
    color: var(--color2);
}

.wolt-full_back + img {
    max-width: 300px;
    max-height: 150px;
    margin: 0 auto;
    margin-top: auto;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .wolt-full_back + img {
        max-width: 150px;
    }
}

.wolt-full_head, .wolt-full_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 860px) {
    .wolt-full_head, .wolt-full_link {
        justify-content: center;
    }
}

.wolt-full_stars {
    display: flex;
    align-items: center;
}

.wolt-full_stars > span {
    margin-left: 10px
}

.wolt-full_link > a {
    position: relative;
    display: inline-block;
    border: 1px solid var(--light);
    border-radius: var(--radius);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-left: 15px;
    cursor: pointer;
}

.wolt-full_link > a:hover {
    background: var(--color1);
}

.wolt-full_link > a:first-child {
    width: 150px;
    margin-left: 0;
}

.wolt-full_link > a:first-child i {
    margin-right: 10px;
}

.wolt-full_link i {
    color: var(--color1);
    font-size: 16px;
}

.wolt-full_link > a:hover i {
    color: var(--text);
}

.wolt-full_share > div {
    position: absolute;
    background: var(--light);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    width: max-content;
    padding: 10px;
    top: -65px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
}

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

.wolt-full_link + span {
    display: inline-block;
    background: var(--light);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .wolt-full_stars, .wolt-full_link + span {
        display: none;
    }
}

.wolt-full_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.wolt-full_grid {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: 200px 1fr;
}

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

    .wolt-full_one {
        order: 2;
    }
}

.wolt-full_one > img {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    object-fit: cover;
}

@media (max-width: 860px) {
    .wolt-full_one > img {
        display: none;
    }
}

.wolt-full_two h1 {
    margin-bottom: 20px;
}

.wolt-full_meta > span {
    color: #8994af;
}

.wolt-full_meta > span + span {
    margin-left: 20px;
}

.wolt-full_text {
    color: #cad3eb;
    font-weight: 300;
    margin: 20px 0;
}

.wolt-full_two > ul {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
}

.wolt-full_two > ul li {
    display: flex;
    margin: 8px 0;
}

.wolt-full_two > ul li span:first-child {
    display: inline-block;
    color: #8994af;
    min-width: 100px;
}

/* RATING COLOR */
.rating-color {
    background-color: #93ff38;
    box-shadow: 0 4px 9px rgb(147 255 56 / 50%);
}

.rating-color.low {
    background: #e13535;
    box-shadow: 0 4px 9px rgb(225 53 53 / 50%);
}

.rating-color.middle {
    background: #ffe638;
    box-shadow: 0 4px 9px rgb(255 230 56 / 50%);
}

.rating-color1 {
    color: #3bb33b;
    font-weight: bold;
}

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

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

/* RATING CIR */
.rating-cir {
    position: relative;
    fill: none;
    stroke: var(--light);
    stroke-width: 4;
}

.rating-cir > svg {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.rating-cir .rating-cir_num {
    display: none;
}

.rating-cir .circle {
    stroke: var(--color1);
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

.percentage {
    stroke: none;
    fill: #fff;
    text-anchor: middle;
    font-size: 11px;
}

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

/* FOOTER */
footer {
    position: relative;
    background: var(--bg2);
    border-radius: 80px 0 0;
    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;
}

/* FONTS 
----------------------------------------------- */
@font-face {font-family: "1"; src:url('../fonts/MarkGEO-Regular.ttf');}
@font-face {font-family: "2"; src:url('../fonts/MarkGEO-Medium.ttf');}
@font-face {font-family: "3"; src:url('../fonts/MarkGEO-Bold.ttf');}

@font-face {font-family: "4"; src:url('../fonts/MarkGEOCAPS-Light.ttf');}
@font-face {font-family: "5"; src:url('../fonts/MarkGEOCAPS-Medium.ttf');}
@font-face {font-family: "6"; src:url('../fonts/MarkGEOCAPS-SemiBold.ttf');}
@font-face {font-family: "7"; src:url('../fonts/MarkGEOCAPS-Bold.ttf');}