﻿@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: Gilroy;
    font-weight: 400;
    src: url("../font/Gilroy-Regular.ttf");
}

@font-face {
    font-family: Gilroy;
    font-weight: 500;
    src: url("../font/Gilroy-Medium.ttf");
}

@font-face {
    font-family: Gilroy;
    font-weight: 700;
    src: url("../font/Gilroy-Bold.ttf");
}
/* width */
html::-webkit-scrollbar {
    width: 10px;
}
/* Track */
html::-webkit-scrollbar-track {
    background: #261279;
}
/* Handle */
html::-webkit-scrollbar-thumb {
    background: #ef21af;
    border-radius: 30px;
}
    /* Handle on hover */
    html::-webkit-scrollbar-thumb:hover {
        background: #d4ff03;
    }

body {
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    font-size: 15px;
    color: #fff;
    background: #01021d;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    a:hover, a:focus, button:focus, input:focus, select:focus, textarea:focus {
        text-decoration: none;
        outline: none;
    }

img {
    max-width: 100%;
}

input, textarea, select {
    color: #1B1B1B;
    width: 100%;
}

    input.reg-input:disabled, select.reg-input:disabled {
        background: #fff;
    }

p {
    margin-bottom: 0;
}

.event-floating {
    position: fixed;
    z-index: 999;
    bottom: 10%;
    left: 5px;
    max-width: 220px;
    animation: float 2s ease-in-out infinite;
}
/** Back to Top **/
#scroll {
    position: fixed;
    right: 10px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 2px solid #ef21af;
    background: #000027;
    display: none;
    border-radius: 50%;
    color: #ef21af;
    z-index: 98;
}

.arrow-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#scroll:hover {
    background: #ef21af;
    color: #fff;
}

.max-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
/** Header **/
.header {
    position: relative;
    width: 100%;
    z-index: 999;
}

    .header.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

.header-top {
    background: linear-gradient(to right, rgba(40,19,126,1) 0%, rgba(0,0,43,1) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 10px;
    position: relative;
    z-index: 99;
}

.logo {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 5px;
    text-align: center;
    max-width: 200px;
    margin: auto;
    transition: 0.3s;
}

.header.active .logo {
    max-width: 120px;
    top: 5px;
}

    .header.active .logo::before {
        content: '';
        background: linear-gradient(to right, rgba(22,11,89,1) 0%, rgba(17,8,80,1) 100%);
        display: block;
        width: 120%;
        height: 82px;
        border-radius: 50%;
        position: absolute;
        z-index: -1;
        top: 0;
        left: -10%;
        right: 0;
        margin: 0 auto;
    }

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-btn {
    padding: 2px 5px;
    background: none;
    border: none;
    height: 50px;
}

    .hamburger-btn div {
        background: #ef21af;
        height: 1px;
        width: 20px;
        margin: 5px 0;
    }

button.inbox-btn {
    position: relative;
    display: none;
    background: none;
    border: none;
    color: #ef21af;
    padding: 0px;
    line-height: 0;
    font-size: 24px;
    margin-left: 12px;
}

.mail-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #fff;
    background: #ef0000;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 500;
    width: 14px;
    height: 14px;
    position: absolute;
    right: -7px;
    top: -3px;
    animation: blink 1.2s infinite;
}

button.menu-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 0 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 70px;
}

    .dropdown:hover button.menu-btn, button.menu-btn:hover {
        background: #2b1691;
    }

    button.menu-btn img {
        max-height: 30px;
        margin-right: 10px;
    }

    button.menu-btn.imgonly img {
        margin: 0;
    }

button.pink-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 18px;
    min-width: 125px;
    height: 36px;
    padding: 0 11px;
    margin: 0 5px;
}

button.green-btn {
    background: #d4ff03;
    border: 1px solid #d4ff03;
    color: #000;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 18px;
    min-width: 125px;
    height: 36px;
    padding: 0 11px;
    margin: 0 5px;
}

    button.pink-btn:hover, button.green-btn:hover {
        background: none;
        color: #fff;
    }

button.greenround-btn {
    height: 35px;
    width: 35px;
    background: #d4ff03;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 20px;
    line-height: 0;
    padding: 0;
    color: #0E0748;
}

button.language-btn {
    border: none;
    background: none;
    padding: 0;
    margin: 0 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

    button.language-btn img {
        max-height: 35px;
    }

button.help-btn {
    border: none;
    background: none;
    color: #fff;
    font-size: 17px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin: 0 2px;
    padding: 0;
}

.dropdown-login {
    position: absolute;
    top: 52px;
    right: 0;
    min-width: 260px;
    background: #28127b;
    padding: 15px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

    .dropdown-login::before {
        content: '';
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #28127b;
        z-index: 2;
        right: 56px;
        top: -10px;
    }

.welcome-title {
    font-size: 14px;
    padding-bottom: 12px;
}

.dropdown-login.active {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.input-wrap {
    position: relative;
    margin-bottom: 12px;
}

input.login-input {
    padding: 3px 15px;
    height: 35px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
}

span.user-icon {
    position: absolute;
    right: 13px;
    top: 9px;
    color: #676767;
    font-size: 14px;
}

span.field-icon {
    position: absolute;
    right: 13px;
    top: 12px;
    color: #676767;
    font-size: 14px;
    cursor: pointer;
}

.forgot-link {
    color: #526bd7;
    border-bottom: 1px solid #526bd7;
    font-size: 13px;
}

    .forgot-link:hover {
        color: #ef21af;
        border-bottom: 1px solid #ef21af;
    }

button.submit-login {
    background: #ef21af;
    border: 1px solid #ef21af;
    border-radius: 40px;
    color: #fff;
    height: 30px;
    min-width: 100px;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 15px;
}

.reg-note {
    font-size: 13px;
}

.dropdown-menu.language {
    background: #28127b;
    border-radius: 0 0 10px 10px;
    min-width: 125px;
    padding: 10px 0;
    margin-top: 15px;
}

    .dropdown-menu.language::before {
        content: '';
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #28127b;
        z-index: 2;
        right: 7px;
        top: -10px;
    }

.lang-menu a {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 5px 10px;
}

    .lang-menu a img {
        max-height: 25px;
        margin-right: 10px;
    }

    .lang-menu a:hover {
        background: #ef21af;
    }

.dropdown-menu.help-menu {
    background: #28127b;
    border-radius: 0 0 10px 10px;
    min-width: 160px;
    padding: 10px 0;
    margin-top: 15px;
}

    .dropdown-menu.help-menu::before {
        content: '';
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #28127b;
        z-index: 2;
        right: 7px;
        top: -10px;
    }

.lang-menu i {
    font-size: 18px;
    margin: 0 12px 0 4px;
}

.menu-drop {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: #12084f;
    padding: 0;
    border: none;
    border-radius: 0 0 10px 10px;
    min-width: 200px;
}

    .menu-drop::before {
        content: '';
        height: 0;
        width: 0;
        margin: auto;
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #12084f;
        z-index: 2;
        right: 0;
        left: 0;
        top: -10px;
    }

.dropdown:hover .menu-drop {
    visibility: visible;
    opacity: 1;
}

ul.nav.menu-nav li {
    width: 100%;
}

    ul.nav.menu-nav li a {
        display: block;
        width: 100%;
        color: #fff;
        padding: 5px 10px;
    }

        ul.nav.menu-nav li a img {
            max-height: 30px;
            margin-right: 10px;
        }

        ul.nav.menu-nav li a:hover {
            background: #ef21af;
        }

            ul.nav.menu-nav li a:hover img {
                filter: contrast(1) brightness(100);
            }

    ul.nav.menu-nav li:last-child a {
        border-radius: 0 0 10px 10px;
    }

.mobile-header-left {
    display: none;
}

.hr-desktop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hl-desktop {
    display: flex;
    align-items: center;
}

button.user-btn {
    border: none;
    background: none;
    color: #45cb00;
    font-size: 35px;
    padding: 0;
    width: auto;
    min-width: auto;
    height: 30px;
    margin: 0 5px;
    line-height: 1;
    position: relative;
}

    button.user-btn.notice-dot::after {
        content: '';
        background: #ef0000;
        height: 9px;
        width: 9px;
        border-radius: 50%;
        position: absolute;
        right: 0px;
        top: 0;
        animation: blink 1.2s infinite;
    }

.token-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #040234;
    border: 1px solid #28127b;
    border-radius: 40px;
    height: 36px;
    min-width: 130px;
    padding: 2px 12px;
    margin: 0 5px;
    font-size: 14px;
    color: #fff;
}

.token-icon {
    color: #ef21af;
    margin-right: 10px;
}

.token-wrap.small-token {
    min-width: 100px;
}

.dropdown-menu.account-dropmenu {
    background: #12084f;
    border-radius: 0;
    min-width: 280px;
    padding: 0;
    color: #fff;
    margin-top: 15px;
}

    .dropdown-menu.account-dropmenu::before {
        content: '';
        position: absolute;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #28127b;
        z-index: 2;
        right: 7px;
        top: -9px;
    }

.dropdown-login.wallet {
    padding: 0;
    border-radius: 0;
    background: #01002c;
    min-width: 400px;
    z-index: 999;
}

    .dropdown-login.wallet::before {
        border-bottom: 10px solid #201a55;
    }

.main-wallet {
    background: #201a55;
    padding: 10px 15px;
    font-size: 14px;
}

.prov-balc {
    padding: 10px 15px;
    max-height: 70vh;
    overflow: auto;
}

    .prov-balc::-webkit-scrollbar {
        width: 3px;
    }

    .prov-balc::-webkit-scrollbar-track {
        background: #0c0741;
    }

    .prov-balc::-webkit-scrollbar-thumb {
        background: #27137c;
    }

        .prov-balc::-webkit-scrollbar-thumb:hover {
            background: #27137c;
        }

button.all-btn {
    background: #45cb00;
    border: 1px solid #45cb00;
    color: #fff;
    border-radius: 40px;
    padding: 1px 15px;
    font-weight: 500;
    height: 25px;
}

    button.all-btn:hover {
        background: none;
    }

table.mw-tb.main {
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
}

table.mw-tb {
    text-transform: uppercase;
    font-size: 14px;
    text-align: right;
}

    table.mw-tb tr td {
        padding: 3px 2px;
    }

        table.mw-tb tr td:first-child {
            text-align: left;
        }

button.trans-btn {
    background: #251376;
    border: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    min-width: 50px;
    height: 23px;
    border-radius: 1px;
    margin: 0px 4px;
}

    button.trans-btn.red {
        background: #ef21af;
    }

    button.trans-btn:hover {
        filter: brightness(1.2);
    }

.user-level {
    background: #28127b;
    padding: 15px;
    font-size: 14px;
}

.lvl-dt {
    padding: 5px 0;
    font-size: 14px;
}

.current-point {
    color: #aeaeae;
    margin-left: 15px;
}

.py-name {
    font-size: 16px;
    font-weight: 700;
}

.level-measure {
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.bar-lvl {
    background: #fff;
    height: 4px;
    border-radius: 20px;
    position: relative;
    width: 100%;
    margin: 0 15px;
}

.point-circle {
    background: #ef21af;
    position: relative;
    height: 4px;
    border-radius: 20px;
}

    .point-circle::after {
        content: '';
        position: absolute;
        height: 15px;
        width: 15px;
        box-shadow: 0 0 3px rgb(0,0,0,0.3);
        background: #ef21af;
        border-radius: 50%;
        top: -5px;
        right: -14px;
    }

ul.nav.slide-acc-nav {
    flex-direction: column;
}

    ul.nav.slide-acc-nav li {
        flex-direction: column;
    }

        ul.nav.slide-acc-nav li a {
            display: flex;
            align-items: center;
            color: #fff;
            padding: 9px 15px;
            text-transform: uppercase;
        }

            ul.nav.slide-acc-nav li a i {
                color: #ef21af;
                margin-right: 15px;
                text-align: center;
                width: 20px;
            }

            ul.nav.slide-acc-nav li a:hover {
                background: #201a55;
            }

li.acc-line hr {
    border-color: #28127b;
    margin: 0.5em 0;
}

.user-btn.mobile {
    display: none;
}

.notice-red {
    color: #fff;
    background: #ef0000;
    border-radius: 35px;
    padding: 0 2px;
    min-width: 28px;
    line-height: 1.5;
    height: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-tier-wrap {
    display: grid;
    grid-template-columns: 55px auto;
    grid-gap: 5px 5px;
    align-items: center;
}

.tier-img img {
    max-height: 60px;
}


/** Mobile Bottom Fixed Menu **/
.mobile-bottom-menu {
    background: #01002c;
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    height: 45px;
}

button.all-game-btn {
    background: #291378;
    border: none;
    padding: 0;
    height: 100%;
    width: 45px;
}

    button.all-game-btn img {
        height: 30px;
    }

.btm-amt {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #040234;
    border: 1px solid #28127b;
    border-radius: 40px;
    height: 30px;
    width: 35%;
    padding: 2px 4px;
    margin: 0 5px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

a.wallet-btm {
    color: #ef21af;
    font-size: 20px;
    padding: 0 2px;
}

.mobile-bottom-menu button.user-btn {
    font-size: 25px;
}

/** Footer **/
.footer-sec {
    background: #00002b url("../images/footer-bg.webp")no-repeat top center;
    background-size: 100%;
    padding: 30px 0;
}

.footer-link-sec {
    display: grid;
    grid-template-columns: 240px auto;
    grid-gap: 40px;
}

.logo-footer {
    text-align: center;
    max-width: 230px;
}

.rocket-footer {
    position: absolute;
    right: 11%;
    top: 24%;
    pointer-events: none;
    animation: shake 250ms linear infinite;
}

.moon-footer {
    position: absolute;
    right: 7%;
    top: 0;
    pointer-events: none;
    animation: spin 25s linear infinite;
}

@keyframes shake {
    0% {
        transform: translate(3px, 0);
    }

    50% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(3px, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.providers-wrapper {
    padding: 15px 0;
}

.footer-quick-link {
    display: flex;
}

.link-box {
    margin-right: 50px;
}

.ft-light {
    color: #f8e71c;
    font-weight: 500;
}

ul.footer-nav {
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0;
}

    ul.footer-nav.two {
        column-count: 2;
    }

    ul.footer-nav li {
        margin-right: 25px;
    }

        ul.footer-nav li a {
            color: #fff;
        }

            ul.footer-nav li a:hover {
                color: #f8e71c;
            }

.logo-provider {
    display: grid;
    grid-template-columns: repeat(10,1fr);
    grid-gap: 10px;
    padding: 10px 0;
}

    .logo-provider .logo-item:nth-child(n+11) {
        display: none;
    }

    .logo-provider.active .logo-item:nth-child(n+11) {
        display: flex;
    }

.logo-item {
    background: #1a2855;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 5px 5px;
    text-align: center;
}

    .logo-item img {
        max-height: 34px;
    }

.prov-btn-wrap {
    text-align: center;
    padding: 10px 0 0;
}

button.prov-btn {
    background: none;
    border: 1px solid #fff;
    border-radius: 35px;
    color: #fff;
    font-size: 13px;
    min-width: 120px;
    margin: auto;
    text-align: center;
    height: 26px;
}

.social-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1b1a56;
}

.follow-wrap {
    font-weight: 500;
}

    .follow-wrap a {
        display: inline-block;
        margin: 0 5px;
        font-size: 16px;
        color: #fff;
    }

        .follow-wrap a:hover {
            color: #ef21af;
        }

button.footer-language-btn {
    color: #fff;
    background: #1a2855;
    border: none;
    padding: 4px 10px 4px 15px;
    border-radius: 40px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    button.footer-language-btn img {
        height: 25px;
    }

.dropdown-menu.ft-language {
    min-width: 220px;
    padding: 0;
    border-radius: 10px;
    overflow: auto;
    border: none;
    background: #1a2855;
}

.lang-ftmenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 10px 4px 15px;
    color: #fff;
}

    .lang-ftmenu a img {
        height: 25px;
    }

    .lang-ftmenu a:hover {
        background: #ef21af;
    }

.seo-sec {
    color: #79819f;
    font-size: 13px;
}

.seo-wrapper p {
    margin-bottom: 1rem;
}

.seo-sec ol, .seo-sec ul {
    padding-left: 16px;
}

.seo-sec h1 {
    font-size: 18px;
    font-weight: 700;
}

.seo-sec h2 {
    font-size: 16px;
    font-weight: 700;
}

.seo-sec h3 {
    font-size: 15px;
    font-weight: 700;
}

.seo-sec h4 {
    font-size: 14px;
    font-weight: 700;
}

.seo-sec h5 {
    font-size: 14px;
    font-weight: 700;
}

.seo-sec a {
    color: #79819f;
    text-decoration: underline;
}

button.read-more {
    position: relative;
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    height: 25px;
    width: 25px;
    margin: auto;
    font-size: 11px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform-origin: center;
}

    button.read-more i {
        transition: 0.3s;
    }

    button.read-more.active i {
        transform: rotate(180deg);
        transform-origin: center;
        transition: 0.3s;
    }

.seo-wrapper {
    position: relative;
    max-height: 140px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.3s;
}

    .seo-wrapper::after {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 100px;
        left: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,43,0) 0%, rgba(0,0,43,1) 100%);
        transition: 0.3s;
    }

    .seo-wrapper.active {
        max-height: none;
        transform: 0.3s;
    }

        .seo-wrapper.active::after {
            background: none;
            transition: 0.3s;
            pointer-events: none;
        }

.copyright {
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}

.mobile-quick-link {
    display: none;
}

button.ft-link {
    background: #1f1955;
    border: none;
    position: relative;
    color: #f8e71c;
    width: 100%;
    font-weight: 500;
    text-align: left;
    padding: 5px 10px;
    height: 33px;
    margin-bottom: 1px;
}

    button.ft-link::after {
        content: '-';
        position: absolute;
        right: 20px;
        top: 6px;
        font-size: 16px;
    }

    button.ft-link.collapsed::after {
        content: '+';
        position: absolute;
    }


/** Home **/
.t-body {
    background: url("../images/home-bg.webp")no-repeat top center;
    background-size: cover;
}

.home-banner-sec {
    background: url("../images/home/home-banner.jpg?v3")no-repeat top center;
    background-size: cover;
    min-height: 560px;
}

.banner-text {
    text-align: center;
    padding: 73px 10px 30px;
}

.bntext-1 {
    color: #f8e81b;
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: -10px;
}

.bntext-2 {
    color: #fff;
    font-size: 4em;
    font-weight: 700;
}

.bntext-3 {
    color: #f8e81b;
    font-size: 3em;
    font-weight: 700;
}

.reg-btn-wrap {
    margin: 15px 0 30px;
}

.agreed-text {
    font-size: 15px;
}

@-webkit-keyframes glowing {
    0% {
        filter: drop-shadow(0 0 2px #46cb00);
    }

    50% {
        filter: drop-shadow(0 0 11px #46cb00) brightness(1.04);
    }

    100% {
        filter: drop-shadow(0 0 2px #46cb00);
    }
}

button.register-green {
    width: 100%;
    max-width: 500px;
    height: 65px;
    margin: auto;
    background: #46cb00;
    border: 1px solid #46cb00;
    color: #fff;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    animation: glowing 2s ease-in-out infinite;
}

    button.register-green:hover {
        background: none;
    }

.agreed-text a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

    .agreed-text a:hover {
        color: #f8e81b;
        border-bottom: 1px solid #f8e81b;
    }

.reason-sec {
    margin-top: 30px;
    position: relative;
    padding-bottom: 10px;
}

.reason-outer {
    background: rgb(32,26,85,0.6);
    border-radius: 10px;
    margin-bottom: 20px;
}

.reason-wrapper {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    height: 80px;
}

.create-acc-wrap {
    text-align: center;
    padding-bottom: 20px;
}

.res-text {
    font-size: 20px;
    font-weight: 500;
    margin-right: 20px;
    margin-left: 15px;
}

.yellow-bold {
    color: #f8e71c;
    font-weight: 700;
}

.reason-icon-wrap {
    display: flex;
    align-content: center;
}

.rsbox {
    background: #526BD8;
    border-radius: 50%;
    height: 52px;
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    margin: 0 7px;
}

.reason-slide .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
}

.reason-slide.owl-theme .owl-nav button.owl-prev, .reason-slide.owl-theme .owl-nav button.owl-next {
    border: 1px solid #ef21af;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    background: #ef21af;
    color: #fff;
    font-size: 20px;
}

    .reason-slide.owl-theme .owl-nav button.owl-prev:hover, .reason-slide.owl-theme .owl-nav button.owl-next:hover {
        background: #ef21af;
        color: #fff;
    }

.reason-slide.owl-theme .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
    top: -125px;
}

.reason-slide.owl-theme .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: -125px;
}

.owl-item .item {
    position: relative;
}

.reason-text {
    position: absolute;
    left: 15px;
    right: 0;
    bottom: 6%;
    text-transform: uppercase;
}

    .reason-text .yellow-bold {
        font-size: 20px;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 95%;
        overflow: hidden;
    }

.rs-caption {
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 97%;
    overflow: hidden;
}

.video-sec {
    position: relative;
    padding: 15px 0 30px;
}

.title-mini {
    color: #f8e71c;
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

    .title-mini img {
        max-height: 30px;
        margin-right: 5px;
    }

    .title-mini.mobile {
        display: none;
    }

.video-frame {
    background: url(../images/home/video-frame-bg.png?v2)no-repeat;
    background-size: 100%;
    max-width: 620px;
    height: 392px;
    margin: auto;
    padding: 23px 45px;
    position: relative;
    z-index: 2;
}

.deco {
    position: absolute;
}

    .deco.mascot-1 {
        pointer-events: none;
        left: 5%;
        top: 15%;
        max-width: 25%;
        animation: float 4s ease-in-out infinite;
    }

    .deco.mascot-2 {
        pointer-events: none;
        right: 1%;
        top: 4%;
        max-width: 31%;
        animation: float 3s ease-in-out infinite;
    }

@-webkit-keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.ready-sec {
    padding-bottom: 30px;
}

.ready-banner {
    background: url(../images/home/ready-bg.jpg?v3)no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    max-width: 1170px;
    min-height: 207px;
    text-align: center;
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .ready-banner .yellow-bold {
        font-size: 24px;
    }

.reg-free-btn {
    background: url(../images/home/reg-play-button.png?v2)no-repeat;
    background-size: 100% 100%;
    max-width: 510px;
    height: 76px;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    padding: 0;
    border: none;
    filter: drop-shadow(0px 3px 4px rgb(0,0,0,0.5));
    margin: 15px 0 0;
    transition: 0.3s;
}

    .reg-free-btn:hover {
        transform: scale(0.97);
        transition: 0.3s;
        filter: drop-shadow(0px 3px 4px rgb(0,0,0,0.5)) brightness(1.05);
    }

.game-menu {
    background: #100d38;
    position: sticky;
    top: 70px;
    z-index: 99;
}

    .game-menu.fixed {
        position: fixed;
        width: 100%;
    }

.game-category {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

ul.nav.menu-game-nav {
    justify-content: center;
    align-items: center;
}

    ul.nav.menu-game-nav li {
        width: 14%;
    }

        ul.nav.menu-game-nav li.nav-item a img {
            max-height: 38px;
            margin-right: 10px;
        }

        ul.nav.menu-game-nav li.nav-item a {
            color: #fff;
            font-weight: 500;
            padding: 15px 3px;
            display: block;
            text-align: center;
        }

            ul.nav.menu-game-nav li.nav-item a:hover, ul.nav.menu-game-nav li.nav-item a.active {
                background: #201a55;
            }

.game-menu.fixed.active ul.nav.menu-game-nav li {
    width: 16.5%;
}

    .game-menu.fixed.active ul.nav.menu-game-nav li.empty-list {
        display: none;
    }


/** Slider **/
.owl-carousel.main-slider::before {
    content: '';
    background: linear-gradient(to right, rgba(9,5,64,1) 0%, rgba(16,13,56,0.01) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 19%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.owl-carousel.main-slider::after {
    content: '';
    background: linear-gradient(to right, rgba(16,13,56,0.01) 0%, rgba(9,5,64,1) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 19%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.owl-theme.main-slider .owl-nav {
    margin-top: 0;
}

    .owl-theme.main-slider .owl-nav button.owl-prev {
        position: absolute;
        left: 10%;
        top: 0;
        bottom: 0;
        font-size: 50px !important;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        margin: auto !important;
        background: none;
        z-index: 3;
    }

    .owl-theme.main-slider .owl-nav button.owl-next {
        position: absolute;
        right: 10%;
        top: 0;
        bottom: 0;
        font-size: 50px !important;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        margin: auto !important;
        background: none;
        z-index: 3;
    }

.owl-theme.main-slider button.owl-prev span, .owl-theme.main-slider button.owl-next span {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    line-height: 0;
}

/** Register **/
.reg-container {
    background: url("../images/reg-bg.jpg?v3")no-repeat;
    background-size: cover;
    border: 3px solid #29137e;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px 45px;
}

.welcome-reg {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #ef21af;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.reg-wrapper {
    display: grid;
    grid-template-columns: auto 450px;
    align-items: center;
}

.m-show {
    display: none;
}

.mia-reg {
    text-align: center;
}

    .mia-reg img {
        max-height: 440px;
    }

.reg-field {
    display: grid;
    grid-template-columns: 165px auto;
    align-items: center;
    margin: 10px 0;
}

.field-input {
    position: relative;
}

input.reg-input, select.reg-input {
    background: #fff;
    height: 35px;
    border-radius: 40px;
    padding: 2px 20px;
    border: none;
}

select.reg-input {
    -webkit-appearance: none;
    appearance: none;
}

.field-input.select::after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: 7px;
    font-size: 16px;
    color: #ef21af;
    pointer-events: none;
    z-index: 9;
}

.field-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
}

.num-field {
    display: grid;
    grid-template-columns: 120px auto;
    grid-gap: 10px;
    align-items: center;
    width: 100%;
}

button.otp-btn {
    background: #3a1fb3;
    color: #fff;
    font-weight: 600;
    width: 100%;
    height: 35px;
    border: 1px solid #3a1fb3;
    border-radius: 40px;
    text-transform: uppercase;
}

.reg-acc {
    display: flex;
    justify-content: flex-end;
}

button.create-btn {
    background: #ef21af;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid #ef21af;
    border-radius: 40px;
    margin: 10px 0;
}

    button.create-btn:hover, button.otp-btn:hover {
        background: none;
        color: #fff;
    }

.ald-reg {
    font-size: 14px;
}

    .ald-reg a {
        color: #fff;
        border-bottom: 1px solid #fff;
    }

        .ald-reg a:hover {
            color: #ef21af;
            border-color: #ef21af;
        }

/** Info Page **/
.info-sec {
    background: #00001a url("../images/info-bg.jpg?v3")no-repeat top center;
    background-size: 100%;
    padding: 90px 0 35px;
}

    .info-sec p {
        margin-bottom: 1rem;
    }

.info-title {
    color: #ef21af;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
}

.info-center-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 12px;
    padding: 15px 0;
}

a.infobox {
    background: #11084c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 15px 15%;
}

    a.infobox:hover, .ct-row a:hover, .call-box:hover {
        color: #ef21af;
    }

span.info-icon {
    color: #ef21af;
    width: 33px;
    margin-right: 15px;
    font-size: 24px;
    text-align: center;
}

.contactbox {
    background: #11084c;
    color: #fff;
    grid-column: 3/4;
    grid-row: 2/4;
    border-radius: 8px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 15px 15%;
}

.call-box {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.ct-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

    .ct-row a {
        color: #fff;
        font-weight: 700;
    }

.smct {
    font-size: 12px;
}

a.livechat-link {
    color: #ef21af;
    text-decoration: underline;
}

.page-row {
    position: relative;
    padding: 0 0 15px;
    text-align: center;
}

.info-page-title {
    font-size: 20px;
    font-weight: 700;
    color: #ef21af;
    text-transform: uppercase;
}

.back-info-btn {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
}

    .back-info-btn a {
        color: #fff;
    }

        .back-info-btn a:hover {
            color: #ef21af;
        }

    .back-info-btn i {
        margin-right: 6px;
    }

    .back-info-btn a:hover .back-link {
        border-bottom: 1px solid #ef21af;
    }

.info-container {
    background: #11084c;
    padding: 30px;
    border-radius: 8px;
}

.title-1 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    margin: 0;
    color: #ef21af;
}

.info-container ul, .info-container ol {
    padding-left: 17px;
}

.info-container a {
    color: #ef21af;
    text-decoration: underline;
}

.site-title {
    text-transform: uppercase;
    font-size: 17px;
    padding-bottom: 10px;
}

.sitemap-list a {
    color: #ef21af
}

    .sitemap-list a:hover {
        color: #fff;
        text-decoration: underline;
    }

ul.sitemap-list {
    padding-left: 30px;
}

    ul.sitemap-list li {
        padding-bottom: 4px;
    }

.faq-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 25px 30px;
}

.card-tnc {
    margin-bottom: 10px;
}

.card-header-tnc {
    padding: 0;
    background: #27137d;
    border-radius: 5px;
}

.terms ul.terms-inner {
    list-style-type: circle;
}

.info-container .accordion a {
    text-decoration: underline;
}

button.btn-tnc {
    position: relative;
    border-radius: 5px;
    background: #ef21af;
    color: #fff;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px 12px 15px;
    font-size: 16px;
    font-weight: 500;
}

    button.btn-tnc.collapsed {
        background: none;
        color: #fff;
    }

    button.btn-tnc::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 700;
        font-size: 12px;
        position: absolute;
        right: 14px;
        top: 14px;
        transform-origin: center;
        transform: rotate(180deg);
        transition: 0.3s;
    }

    button.btn-tnc.collapsed::after {
        content: '\f078';
        transform: rotate(0);
        transition: 0.3s;
    }

table.payment-table {
    text-align: center;
}

    table.payment-table tr th {
        background: #27137d;
        padding: 10px 5px;
    }

    table.payment-table tr td {
        padding: 10px 5px;
        border-bottom: 1px solid #27137d;
    }

button.paym-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    min-width: 125px;
    height: 32px;
    padding: 0 10px;
}

    button.paym-btn:hover {
        background: none;
    }

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
    max-width: 480px;
    margin: 15px 0;
}

.cntbox {
    display: flex;
    align-items: center;
}

.ct-img {
    font-size: 34px;
    margin-right: 15px;
    color: #d4ff03;
}

    .ct-img.whatsapp {
        color: #25D366;
    }

    .ct-img.wechat {
        color: #2DC100;
    }

    .ct-img.telegram {
        color: #0088CC;
    }

.ctnotice {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
    padding: 15px 15px;
    border: 1px solid #ff2b2b;
    border-radius: 8px;
    margin: 15px 0;
}

    .ctnotice.cs {
        border: 1px solid #3789ba;
    }

.cticon {
    font-size: 24px;
    text-align: center;
    margin-right: 15px;
}


/** Error Page **/
.error-sec {
    background: #00001a url("../images/error-bg.jpg?v3")no-repeat top center;
    background-size: cover;
    padding: 80px 0 35px;
    min-height: 650px;
    text-align: center;
    overflow: hidden;
}

    .error-sec.maintenance {
        min-height: 100vh;
    }

.planet-1 {
    position: absolute;
    top: -2%;
    left: -6%;
    max-width: 26%;
    animation: float 4s ease-in-out infinite;
}

.planet-2 {
    position: absolute;
    top: -2%;
    right: -5%;
    max-width: 20%;
    animation: float 3s ease-in-out infinite;
}

.pps-text {
    color: #ef21af;
    font-size: 180px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrong-text {
    color: #f8e81b;
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.working-text {
    line-height: 1.8;
}

.error-btn-wrap {
    margin-top: 20px;
}

button.big-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    min-width: 200px;
    height: 65px;
    padding: 0px 10px;
    margin: 0 15px;
}

    button.big-btn i {
        margin-right: 10px;
    }

    button.big-btn.green {
        background: #45cb00;
        border: 1px solid #45cb00;
    }

    button.big-btn:hover {
        background: none;
    }

.pps-text.mainten {
    font-size: 90px;
}

.wrong-text.mainten {
    font-size: 45px;
}

.deco-err {
    position: absolute;
    pointer-events: none;
}

.gear-1.deco-err {
    left: 21%;
    top: 60%;
    max-width: 6%;
    animation: spin 25s linear infinite;
}

.gear-2.deco-err {
    right: 32%;
    top: 78%;
    max-width: 6%;
    animation: spin 20s linear infinite;
}

.cones-deco.deco-err {
    bottom: -14%;
    left: 23%;
    max-width: 13%;
}

.mascot-mio.deco-err {
    position: absolute;
    right: 12%;
    bottom: -24%;
    max-width: 20%;
}

.org-planet {
    position: relative;
    margin: 0 5px;
}

    .org-planet img {
        max-width: 190px;
        animation: spin 24s linear infinite;
    }

    .org-planet::after {
        content: '';
        background: url(../images/rocket-fly.png?v2)no-repeat;
        background-size: 100%;
        width: 138px;
        height: 325px;
        position: absolute;
        right: -7%;
        top: 18%;
    }



/** Product Page **/
.product-sec {
    background: #000 url("../images/product-bg.jpg?v3")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0 30px;
    min-height: 550px;
}

.game-search {
    background: #201a55;
    padding: 5px 15px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

span.search-icon {
    color: #ef21af;
    margin-right: 5px;
}

input.search-input {
    background: none;
    border: none;
    color: #fff;
    padding: 5px 10px;
}

    input.search-input::placeholder {
        color: #fff;
    }

.product-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 15px;
}

.prod-item {
    position: relative;
    max-width: 220px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.prod-item {
    background-size: cover
}

.slots .prod-item:nth-child(4n+1) {
    background: url("../images/product/slots/slots-base-1.webp")
}

.slots .prod-item:nth-child(4n+2) {
    background: url("../images/product/slots/slots-base-2.webp")
}

.slots .prod-item:nth-child(4n+3) {
    background: url("../images/product/slots/slots-base-3.webp")
}

.slots .prod-item:nth-child(4n+4) {
    background: url("../images/product/slots/slots-base-4.webp")
}

.casino .prod-item:nth-child(4n+1) {
    background: url("../images/product/casino/casino-base-1.webp")
}

.casino .prod-item:nth-child(4n+2) {
    background: url("../images/product/casino/casino-base-2.webp")
}

.casino .prod-item:nth-child(4n+3) {
    background: url("../images/product/casino/casino-base-3.webp")
}

.casino .prod-item:nth-child(4n+4) {
    background: url("../images/product/casino/casino-base-4.webp")
}

.games .prod-item:nth-child(4n+1) {
    background: url("../images/product/7-11/games-base-1.webp")
}

.games .prod-item:nth-child(4n+2) {
    background: url("../images/product/7-11/games-base-2.webp")
}

.games .prod-item:nth-child(4n+3) {
    background: url("../images/product/7-11/games-base-3.webp")
}

.games .prod-item:nth-child(4n+4) {
    background: url("../images/product/7-11/games-base-4.webp")
}

.fish .prod-item:nth-child(4n+1) {
    background: url("../images/product/fishing/fish-base-1.webp")
}

.fish .prod-item:nth-child(4n+2) {
    background: url("../images/product/fishing/fish-base-2.webp")
}

.fish .prod-item:nth-child(4n+3) {
    background: url("../images/product/fishing/fish-base-3.webp")
}

.fish .prod-item:nth-child(4n+4) {
    background: url("../images/product/fishing/fish-base-4.webp")
}

.sports .prod-item:nth-child(3n+1) {
    background: url("../images/product/sports/sports-base-1.webp")
}

.sports .prod-item:nth-child(3n+2) {
    background: url("../images/product/sports/sports-base-2.webp")
}

.sports .prod-item:nth-child(3n+3) {
    background: url("../images/product/sports/sports-base-3.webp")
}

.lotto .prod-item {
    background: url("../images/product/4d/4d-base.webp")
}

.prodhover {
    transition: linear 0.3s;
    opacity: 0;
    visibility: hidden;
    background: rgb(16,13,56,0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

button.prod-play {
    background: none;
    color: #fb5eca;
    border: none;
    font-weight: 500;
    font-size: 18px;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.3);
    transition: ease-in-out 0.3s;
}

    button.prod-play i {
        font-size: 28px;
    }

    button.prod-play:hover {
        color: #ef21af;
    }

.prod-item:hover .prodhover {
    transition: linear 0.3s;
    visibility: visible;
    opacity: 1;
}

    .prod-item:hover .prodhover button.prod-play {
        transition: ease-in-out 0.3s;
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }

/** 4D page **/
.lotto-sec {
    background: #00001a url("../images/product/4d/4d-bg.webp")no-repeat top center;
    background-size: 100%;
    padding: 90px 0 30px;
}

.top-lotto {
    background: url("../images/product/4d/lotto-bg.png?v3")no-repeat top center;
    background-size: auto;
    padding: 20px 0;
    text-align: center;
    min-height: 490px
}

.lucky-title {
    color: #fb5eca;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.lucky-numer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 15px;
}

.round-num {
    background: linear-gradient(to bottom, rgba(177,155,255,1) 0%, rgba(239,33,175,1) 100%);
    border-radius: 50%;
    height: 135px;
    width: 135px;
    margin: 0 10px;
    padding: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-num {
    border-radius: 50%;
    background: #fff;
    color: #29137d;
    font-size: 90px;
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
    height: 100%;
}

button.lotto-btn {
    background: #29137e;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    height: 65px;
    min-width: 200px;
    border-radius: 45px;
    margin: 0 10px;
}

    button.lotto-btn:hover {
        filter: brightness(1.2);
    }

    button.lotto-btn.green {
        background: #46cb00;
    }

    button.lotto-btn.pink {
        background: #ef21af;
    }

.date-result {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 510px;
    height: 70px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.drdate-1 {
    background: #201a55;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .drdate-1 i {
        margin-right: 10px;
        font-size: 26px;
    }

.drdate-2 {
    background: #29137e;
    display: flex;
    align-items: center;
    justify-content: center;
}

input.date-choose {
    font-size: 20px;
    max-width: 190px;
    margin: auto;
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
}

.lotto-result-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    max-width: 970px;
    margin: 15px auto;
}

.lotto-box {
    max-width: 310px;
    width: 100%;
    margin: auto;
}

table.lotto-table {
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

    table.lotto-table tr th {
        background: #100d38;
        border: 1px solid #100d38;
        padding: 2px 2px;
        font-size: 17px;
    }

    table.lotto-table tr td {
        background: #1f1954;
        border: 1px solid #100d38;
        padding: 1px 2px;
    }

    table.lotto-table tr.title-lotto {
        border: 1px solid #1f1954;
    }

        table.lotto-table tr.title-lotto td {
            background: #1f1954;
            padding: 1px;
            border: none;
        }

        table.lotto-table tr.title-lotto.magnum td {
            background: #FFC100;
            color: #000;
        }

        table.lotto-table tr.title-lotto.toto td {
            background: #FF0000;
            color: #fff;
        }

        table.lotto-table tr.title-lotto.dmc td {
            background: #000080;
            color: #fff;
        }

        table.lotto-table tr.title-lotto.sabah td {
            background: #02D0C9;
            color: #000;
        }

        table.lotto-table tr.title-lotto.sg td {
            background: #084B8A;
            color: #fff;
        }

        table.lotto-table tr.title-lotto.bigsweep td {
            background: #008000;
            color: #fff;
        }

tr.topthree td {
    font-size: 17px;
    font-weight: 700;
}

table.lotto-table tr.title-lotto td.lotto-vendor {
    text-align: left;
    padding-left: 5px;
}

table.lotto-table tr.title-lotto td.date-lotto {
    text-align: right;
    padding-right: 10px;
    font-weight: 500;
}

td.date-lotto i {
    margin-right: 10px;
}

.lotto-result-mobile {
    display: none;
}

.nav-tabs.toto-nav {
    border-bottom: none;
    justify-content: center;
}

    .nav-tabs.toto-nav .nav-item {
        margin: 0 2px;
    }

    .nav-tabs.toto-nav .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        border: none;
        border-bottom: 3px solid transparent;
        border-radius: 0;
        padding: 0;
    }

        .nav-tabs.toto-nav .nav-item.show .nav-link, .nav-tabs.toto-nav .nav-link.active {
            background-color: transparent;
            border-bottom: 3px solid #f021af;
        }

.lotto-outer {
    background: #00011a;
    border: 2px solid #1f1955;
    padding: 15px;
    max-width: 440px;
    margin: 5px auto 0;
}


/** Download **/
.download-sec {
    background: #00001a url("../images/download-bg.jpg?v3")no-repeat top center;
    background-size: 100%;
    padding: 100px 0 40px;
}

.btg-wrap {
    text-align: center;
    padding-bottom: 20px;
}

a.backgame-btn {
    color: #ef21af;
    padding: 5px 15px;
    text-decoration: underline;
}

    a.backgame-btn i {
        margin-right: 10px;
        font-size: 14px;
    }

    a.backgame-btn:hover {
        color: #fff;
    }

.prov-title {
    text-align: center;
    margin-bottom: 40px;
}

.prov-logo-box {
    background: url(../images/provider-board.png?v2)no-repeat;
    background-size: 100%;
    height: 144px;
    width: 450px;
    padding: 20px 30px 30px;
    margin: auto;
}

    .prov-logo-box img {
        max-height: 100px;
    }

.play-online {
    position: relative;
    z-index: 2;
    margin-top: -24px;
}

.dl-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.dl-box {
    background: #100d38;
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 0 15px;
    border-radius: 10px;
    padding: 15px 15px 20px;
}

.qrcode-dl {
    max-width: 180px;
    margin: auto;
    padding-bottom: 10px;
}

.device-os {
    max-width: 230px;
    border: 1px solid #ef21af;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
    padding: 5px 5px;
    margin: 0 auto 15px;
}

    .device-os img {
        max-height: 38px;
    }

.scan-text {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 5px;
}

a.dl-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    max-width: 175px;
    margin: auto;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    a.dl-btn:hover {
        background: none;
    }

.device-os-m {
    font-size: 80px;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 2px solid #ef21af;
    margin: 0 auto 15px;
    display: none;
    justify-content: center;
    align-items: center;
}

    .device-os-m i {
        background: linear-gradient(to bottom, rgba(177,155,255,1) 0%, rgba(239,33,174,1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.acces-wrap {
    max-width: 700px;
    margin: auto;
}

table.access-table tr th {
    text-align: center;
    background: #100d38;
    border: 1px solid #100d38;
    color: #ef21af;
    text-transform: uppercase;
    padding: 10px 5px;
}

table.access-table tr td {
    background: #1f1954;
    border: 1px solid #100d38;
    padding: 7px 10px;
}

input.np-input {
    padding: 1px 5px;
    max-width: 200px;
}

button.pw-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
}

    button.pw-btn:hover {
        background: none;
    }

/** Promotion **/
.promo-sec {
    background: #00001a url("../images/promo-bg.jpg?v3")no-repeat top center;
    background-attachment: fixed;
    background-size: 100%;
    padding: 90px 0 40px;
}

.mix {
    display: none;
}

.filter-menu {
    text-align: center;
    padding: 10px 0 10px;
    max-width: 1150px;
    margin: auto;
}

.pmbox {
    background: #100e37;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin: 5px 5px;
    display: inline-block;
    width: 18%;
    cursor: pointer;
}

    .pmbox.active, .pmbox:hover {
        background: #1f1a51;
    }

.promo-wrapper {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.promobox {
    position: relative;
    border-radius: 18px;
    border: 2px solid #29137d;
    overflow: hidden;
    margin: 0.3%;
    max-width: 49%;
}

.pmbox-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

    .pmbox-inner img {
        max-height: 45px;
        margin-right: 10px;
    }

.promo-title {
    position: absolute;
    right: 3%;
    top: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pmt-1 {
    color: #f8e81b;
    font-weight: 700;
    font-size: 28px;
    text-align: right;
    overflow: hidden;
    line-height: 1.2;
    height: 70px;
    max-width: 250px;
    margin: 0 0 10px auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pmt-2 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    overflow: hidden;
    max-width: 270px;
    height: 55px;
    margin: 0 0 5px auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.more-detail {
    text-align: right;
    margin-top: 10px;
}

button.more-btn {
    background: none;
    color: #fff;
    border: 2px solid #45cb00;
    border-radius: 40px;
    height: 45px;
    min-width: 150px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

    button.more-btn:hover {
        background: #45cb00;
    }

.pm-inner-top {
    position: relative;
    max-width: 550px;
    margin: auto;
}

    .pm-inner-top .promobox {
        max-width: 574px;
    }

.pm-mascot {
    position: absolute;
    right: -41px;
    top: -20px;
}

    .pm-mascot img {
        max-height: 300px;
    }

.page-row-2 {
    position: relative;
    padding-bottom: 10px;
}

    .page-row-2 .back-info-btn {
        position: initial;
    }

.promo-content {
    text-align: center;
    padding: 10px 0;
}

hr.pmdvd {
    border-top: 2px solid #29137d;
}

.tnc-wrap {
    text-align: left;
    padding: 15px 0;
}

.term-title {
    margin-bottom: 10px;
    font-weight: 600;
}

ul.terms, ol.terms {
    padding-left: 17px;
}

    ul.terms li, ol.terms li {
        padding-bottom: 5px;
    }

.pink-text {
    color: #ef21af;
}

.green-text {
    color: #45cb00;
}

.light-pink-text {
    color: #fb5eca;
}

.title-inner-1 {
    color: #fee900;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 10px;
}

.title-inner-2 {
    color: #ef21af;
    font-weight: 700;
    font-size: 16px;
}

    .title-inner-1 p, .title-inner-2 p {
        margin-bottom: 0;
    }

table.ava-table {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

    table.ava-table tr td {
        padding: 5px;
    }

        table.ava-table tr td:last-child {
            font-weight: 700;
        }

.availabe-table {
    margin: 15px 0;
}

.promo-tb {
    margin: 15px 0;
}

table.promo-table tr th {
    background: #100d38;
    color: #ef21af;
    padding: 9px 2px;
}

table.promo-table tr td {
    background: #1f1954;
    color: #fff;
    border-bottom: 1px solid #100d38;
    padding: 6px 2px;
}

.pm-btm-wrap {
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

button.bonus-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    height: 50px;
    min-width: 160px;
    border-radius: 45px;
    margin: 0 10px;
}

    button.bonus-btn.green {
        background: #45cb00;
        border: 1px solid #45cb00;
    }

    button.bonus-btn:hover {
        background: none;
    }

a.general-link {
    color: #ef21af;
    text-decoration: underline;
    font-size: 13px;
    margin: 5px 0;
    display: inline-block;
}

    a.general-link:hover {
        color: #fff;
    }

/** Account afterlogin **/
ul.nav.menu-game-nav.account li {
    width: 14%;
}

    ul.nav.menu-game-nav.account li.nav-item a {
        padding: 20px 3px;
    }

        ul.nav.menu-game-nav.account li.nav-item a i {
            background: linear-gradient(to bottom, rgba(177,155,255,1) 0%, rgba(239,33,174,1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 10px;
            font-size: 22px;
            vertical-align: sub;
        }

.account-sec {
    padding: 100px 0 30px;
}

ul.nav.acc-nav {
    justify-content: space-evenly;
    margin-bottom: 10px;
}

    ul.nav.acc-nav li.acc-item {
        border-bottom: 3px solid transparent;
        width: 15%;
        text-align: center;
        padding: 5px 0;
    }

        ul.nav.acc-nav li.acc-item a {
            color: #ec7ccb;
            text-transform: uppercase;
            font-size: 22px;
            font-weight: 700;
        }

        ul.nav.acc-nav li.acc-item.active, ul.nav.acc-nav li.acc-item:hover {
            border-bottom: 3px solid #ef21af;
        }

            ul.nav.acc-nav li.acc-item.active a, ul.nav.acc-nav li.acc-item:hover a {
                color: #ef21af;
            }

.account-wrapper {
    background: url(../images/reg-bg.jpg?v3)no-repeat;
    background-size: cover;
    border: 3px solid #29137e;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px 30px 30px;
}

.account-sec .rules-wrap {
    min-height: 450px;
}

.depo-mascot {
    position: absolute;
    right: 5%;
    bottom: 3%;
    max-width: 450px;
}

    .depo-mascot img {
        max-height: 600px;
    }

    .depo-mascot.pass img {
        max-height: 450px;
    }

    .depo-mascot.promo {
        max-width: 450px;
    }

.form-wrap {
    max-width: 560px;
}

.field-wrap {
    display: grid;
    grid-template-columns: 170px auto;
    margin: 10px 0;
    align-items: center;
}

.label-form {
    font-size: 14px;
}

.bank-account-option {
    display: flex;
    align-items: center;
}

.bank-pay {
    position: relative;
    margin-right: 2px;
}

.input-hide input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.bank-acct-btn {
    position: relative;
    border-radius: 10px;
    border: 3px solid transparent;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    display: block;
}

.input-hide[type="radio"],
.input-hide input[type="checkbox"] {
    appearance: none;
    display: none;
}

.bank-acct-btn img {
    filter: grayscale(1);
}

.input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn {
    border: 3px solid #ef21af;
}

    .input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn img {
        filter: none;
    }

.upload-field {
    display: grid;
    grid-template-columns: 240px auto;
    grid-gap: 10px;
}

.upload-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

button.upload-btn {
    background: #3a1fb3;
    border-radius: 35px;
    font-weight: 500;
    font-size: 14px;
    height: 35px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #3a1fb3;
}

    button.upload-btn:hover {
        background: transparent;
    }

.smbtn-wrap {
    text-align: center;
    margin-top: 20px;
}

button.submit-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    height: 50px;
    min-width: 220px;
    border-radius: 45px;
}

    button.submit-btn:hover {
        background: transparent;
    }

.copy-btn {
    color: #e757bd;
    cursor: pointer;
}

.bank-info-box {
    border: 2px solid #29137d;
    border-radius: 10px;
    padding: 3px 10px;
    margin-top: 7px;
}

.bk-row {
    padding: 5px;
}

.field-input.amt-all {
    display: flex;
    align-items: center;
}

.mw-amt {
    background: #040232;
    border: 1px solid #29137e;
    border-radius: 35px;
    height: 35px;
    padding: 2px 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

input.reg-input.pink {
    color: #ef21af;
    font-weight: 500;
    text-align: center;
    padding: 2px;
}

button.upload-btn.allout {
    font-weight: 700;
    background: #45cb00;
    border: 1px solid #45cb00;
}

    button.upload-btn.allout:hover {
        background: none;
    }

    button.upload-btn.allout.pink {
        background: #ef21af;
        border: 1px solid #ef21af;
    }

.field-note {
    font-size: 14px;
    line-height: 1.1;
    padding: 5px 0;
}

button.submit-btn.medium {
    font-size: 16px;
    height: 40px;
    min-width: 210px;
}

.trans-field {
    display: grid;
    grid-template-columns: 240px auto;
    grid-gap: 10px;
}

.field-input.gender {
    display: flex;
    align-items: center;
}

.gender-btn {
    background: transparent;
    border: 1px solid #3a1fb3;
    margin: 0 5px;
    min-width: 110px;
    font-weight: 500;
    text-align: center;
    border-radius: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.input-hide input:active + .gender-btn, .input-hide input:checked + .gender-btn {
    background: #3a1fb3;
}

.dual-btn-field {
    display: grid;
    grid-template-columns: 140px auto;
    grid-gap: 0 10px;
    align-items: center;
}

button.upload-btn.medium {
    font-weight: 700;
    font-size: 16px;
}

button.upload-btn.pink {
    background: #ef21af;
    border: 1px solid #ef21af;
}

    button.upload-btn.pink:hover {
        background: none;
    }

span.field-icon.pink {
    color: #ef21af;
}

table.history-table {
    text-align: center;
}

    table.history-table tr th {
        background: #29137e;
        color: #fff;
        padding: 8px 2px;
        font-weight: 500;
    }

    table.history-table tr td {
        background: #060436;
        border-bottom: 1px solid #29137e;
        padding: 6px 2px;
        font-size: 14px;
    }

.pagination-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 5px;
    font-size: 14px;
}

    .pagination-bottom a {
        color: #fff;
        margin: 0 10px;
    }

        .pagination-bottom a:hover {
            color: #ef21af;
        }

/** Inbox **/
.inbox-wrapper {
    background: #251176;
    min-height: 385px;
}

    .inbox-wrapper.inner {
        background: none;
    }

    .inbox-wrapper.xline table.inbox-table tr:nth-child(odd) {
        background: #11084c;
    }

    .inbox-wrapper.xline table.inbox-table tr:nth-child(even) {
        background: #251176;
    }

table.inbox-table tr {
    height: 48px;
    cursor: pointer;
}

    table.inbox-table tr.unread td {
        color: #ff2ebe;
        font-weight: 500;
    }

    table.inbox-table tr:hover td {
        color: #ff2ebe;
    }

    table.inbox-table tr td {
        padding: 2px 5px;
        color: #fff;
        font-size: 14px;
    }

.inbox-wrapper table.inbox-table tr td:first-child {
    padding-left: 15px;
    width: 25%;
}

.inbox-wrapper table.inbox-table tr td:last-child {
    padding-right: 15px;
    width: 5%;
}

table.inbox-table tr td a {
    color: #fff;
}

    table.inbox-table tr td a:hover {
        color: #ef21af;
    }

.inbox-wrapper table.inbox-table tr td:nth-child(2) {
    width: 50%;
}

.inbox-wrapper table.inbox-table tr td:nth-child(3) {
    width: 20%;
    text-align: center;
}

span.mail-icon {
    margin-right: 10px;
}

a.caption-tb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 510px;
}

.title-tb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 230px;
}

.inbox-pagination {
    display: flex;
    justify-content: center;
    margin: 15px 0 0;
}

a.arrow-box {
    background: #fff;
    color: #11084c;
    font-size: 12px;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.page-num {
    background: #e7e7e7;
    color: #161616;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

    span.page-num.active {
        background: #e757bd;
        color: #fff;
    }

.inbox-pagination .arrow-box:first-child {
    border-radius: 3px 0 0 3px;
}

.inbox-pagination .arrow-box:last-child {
    border-radius: 0 3px 3px 0;
}

.inbox-table tr td.active {
    background: #251176;
}

.mail-wrap {
    border-left: 2px solid #251176;
    min-height: 385px;
    padding: 15px 30px;
    position: relative;
}

.mail-inner-wrapper {
    display: grid;
    grid-template-columns: 271px auto;
    background: rgb(17,8,76,0.75);
}

.mtitle {
    font-weight: 700;
    padding-bottom: 5px;
}

.mail-wrap a {
    color: #fff;
    text-decoration: underline;
    font-style: italic;
}

.mail-back {
    position: absolute;
    right: 10px;
    top: 10px;
}

    .mail-back a {
        color: #ef21af !important;
        font-size: 23px;
    }

        .mail-back a:hover {
            color: #fff;
        }

.mailbtm-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

button.mcom-btm {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    min-width: 110px;
    height: 30px;
    margin: 0 5px;
}

    button.mcom-btm.delete {
        background: #3a1fb3;
        border: 1px solid #3a1fb3;
    }

    button.mcom-btm:hover {
        background: transparent;
    }

    button.mcom-btm i {
        margin-right: 5px;
    }

.reply-input textarea {
    height: 90px;
    padding: 5px 10px;
    border: none;
}

/** Inbox Mobile **/
.account-wrapper.mobile {
    display: none;
}

.inbox-wrapper table.inbox-table.mobile tr td {
    font-size: 13px;
}

    .inbox-wrapper table.inbox-table.mobile tr td:first-child {
        width: auto;
    }

    .inbox-wrapper table.inbox-table.mobile tr td:nth-child(2) {
        width: auto;
        text-align: center;
    }

    .inbox-wrapper table.inbox-table.mobile tr td:last-child {
        width: 50px;
    }

table.inbox-table.mobile .title-tb {
    max-width: 50vw;
}

.mail-pop {
    background: #201a55;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 2px solid #ef21af;
    padding: 15px;
    padding-bottom: 80px;
    max-height: 400px;
    overflow: auto;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(90%);
}

    .mail-pop.active {
        visibility: visible;
        opacity: 1;
        transition: all 0.5s ease-in-out;
        transform: translateY(0);
    }

    .mail-pop a {
        color: #fff;
        font-style: italic;
        text-decoration: underline;
    }

    .mail-pop::-webkit-scrollbar {
        width: 2px;
    }

    .mail-pop::-webkit-scrollbar-thumb {
        background: #251176;
    }

/** Tournament **/
.tournament-sec {
    background: #00002b url("../images/tournament-bg.jpg?v3")no-repeat top center;
    background-size: 100%;
    padding: 30px 0 30px;
    min-height: 550px;
    text-align: center;
}

.tnm-title {
    color: #fb5eca;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.tnm-cap {
    padding: 5px 0;
}

.tnm-cap-1 {
    padding: 5px 0;
}

.promo-table.tournament {
    max-width: 700px;
    margin: auto;
}

.tnm-card {
    overflow: hidden;
    border-radius: 5px;
    margin: 25px 0;
}

button.tnm-btn {
    position: relative;
    background: #201a55;
    color: #fb5eca;
    border: none;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 5px;
    margin: auto;
    width: 100%;
    text-transform: uppercase;
}

.card-body-terms {
    background: #201a55;
    text-align: left;
    padding: 15px;
    font-size: 14px;
}

button.tnm-btn::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 15px;
    color: #ef21af;
    transform: rotate(180deg);
    transition: 0.3s;
}

button.tnm-btn.collapsed::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    transition: 0.3s;
    transform: rotate(0);
}

.partic-title {
    color: #fb5eca;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
}

.game-parti {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    max-width: 1100px;
    margin: 5px auto;
}

.catg-title {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

table.step-table tr td {
    padding: 8px 2px;
    vertical-align: top;
}

    table.step-table tr td:first-child {
        width: 75px;
    }

.date-note {
    color: #f8e71c;
    padding: 15px 0;
}

/** Challenges Page **/
.challenge-sec {
    background: url("../images/challenge/challenge-bg_02.jpg?v3")no-repeat top center;
    background-size: 100%;
    padding: 90px 0 35px;
}

.challenge-top-wrap {
    background: url(../images/challenge/space-title-bg.png?v2)no-repeat top center;
    background-size: auto;
    text-align: center;
    height: 212px;
    margin-bottom: -3%;
}

.chl-wrap {
    position: relative;
    display: inline-block;
    max-width: 340px;
    width: 100%;
}

.chg-title {
    background: url("../images/challenge/challenge-title-base.png?v3")no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 65px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ef21af;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}

.deco-planet {
    position: absolute;
    left: -12%;
    z-index: 2;
    top: 29%;
}

.deco-mascot {
    position: absolute;
    right: -17%;
    top: -63%;
}

.month-base {
    background: url("../images/challenge/month-base.png?v3")no-repeat;
    background-size: 100% 100%;
    max-width: 185px;
    height: 52px;
    margin: -5px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #d4ff03;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.daily-challenge-wrapper {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-gap: 15px 7px;
    margin-top: -6%;
}

.dc-box {
    position: relative;
    cursor: pointer;
}

.mission-base {
    max-width: 165px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.base-img img {
    height: 135px;
}

.day-task {
    position: absolute;
    left: 0;
    right: 0;
    top: 5%;
    font-size: 17px;
    font-weight: 700;
}

.task-wrap {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 24%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .task-wrap img {
        max-height: 62px;
    }

.dc-box.inactive .mission-base, .dc-box.expired .mission-base, .dc-box.done .mission-base {
    filter: brightness(0.2);
}

.dc-box.expired::after {
    content: '';
    background: url("../images/challenge/expired.png?v3")no-repeat;
    background-size: 100%;
    width: 74px;
    height: 61px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    z-index: 2;
}

.dc-box.done::after {
    content: '';
    background: url("../images/challenge/tick.png?v3")no-repeat;
    background-size: 100%;
    width: 49px;
    height: 43px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    z-index: 2;
}

.dc-box.active .mission-base {
    filter: drop-shadow(0 0 5px rgb(255,255,255,0.5));
}

.challenge-btm {
    position: relative;
    margin-top: 30px;
}

.rules-title {
    text-align: center;
    color: #fb5eca;
    font-size: 24px;
    font-weight: 700;
}

.legend-icon-wrap {
    background: rgb(32,26,85,0.6);
    padding: 15px;
    max-width: 910px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-radius: 8px;
    margin: 15px 0 15px;
}

.lgicon-box {
    text-align: center;
    max-width: 110px;
    margin: 0 auto;
}

    .lgicon-box img {
        width: 80px;
    }

.captitle {
    padding-top: 5px;
    font-size: 15px;
    font-weight: 700;
}

.challenge-terms {
    max-width: 910px;
    font-size: 14px;
}

.mascot-challenge {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 250px;
}


@media(max-width: 1280px) {
    .logo {
        max-width: 13%;
    }

    button.menu-btn {
        font-size: 85%;
        padding: 0 5px;
    }

        button.menu-btn img {
            max-height: 25px;
        }

    button.pink-btn, button.green-btn {
        font-size: 15px;
        min-width: 100px;
        height: 30px;
        padding: 0 5px;
        margin: 0 5px;
    }

    button.language-btn img {
        max-height: 30px;
    }

    .menu-drop::before {
        left: -28%;
    }

    ul.nav.menu-nav {
        font-size: 14px;
    }

        ul.nav.menu-nav li a img {
            max-height: 25px;
        }
}

@media(max-width: 1080px) {
    body {
        padding-bottom: 45px;
    }

    #scroll {
        bottom: 65px;
        width: 40px;
        height: 40px;
    }

    .m-none {
        display: none;
    }

    .m-show {
        display: initial;
    }

    .hl-desktop {
        display: none;
    }

    .mobile-bottom-menu {
        display: flex;
    }

    button.user-btn.notice-dot::after {
        height: 7px;
        width: 7px;
        top: 2px;
    }

    .mail-notice {
        padding-top: 2px;
    }

    .logo {
        top: 4px;
        max-width: 170px;
    }

    .header.active .logo {
        max-width: 120px;
    }

        .header.active .logo::before {
            height: 82px;
            width: 110%;
            left: -5%;
        }

    button.inbox-btn {
        display: inline-block;
    }

    .hl-desktop, .hr-desktop {
        display: none;
    }

    .mobile-header-left {
        display: initial
    }

    .hamburger-btn div {
        height: 2px;
        margin: 6px 0;
    }

    .title-mini.mobile {
        display: flex;
    }

    .reason-slide .owl-nav {
        position: absolute;
        top: 38%;
    }

    .reason-slide.owl-theme .owl-nav button.owl-prev, .reason-slide.owl-theme .owl-nav button.owl-next {
        background: #ef21af;
        border-radius: 4px;
        color: #fff;
        top: 0;
    }

    .reason-wrapper {
        padding: 15px 10px;
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .res-text {
        margin: 0
    }

    .reason-icon-wrap {
        margin-top: 10px;
    }

    .social-wrap {
        padding: 15px 0;
    }

    .deco {
        display: none;
    }

    .rocket-footer, .moon-footer {
        display: none;
    }

    button.language-btn {
        margin: 0 5px 0 0;
    }

    .dropdown-menu.language {
        border-radius: 10px 10px 0 0;
    }

        .dropdown-menu.language::before {
            border-top: 10px solid #28127b;
            border-bottom: none;
            right: 2px;
            top: auto;
            bottom: -10px;
        }

    button.pink-btn, button.green-btn {
        min-width: 35%;
        font-weight: 500;
    }

    .user-btn.mobile {
        display: inline-block;
    }

    ul.nav.menu-game-nav {
        justify-content: space-evenly;
    }

        ul.nav.menu-game-nav li.nav-item a {
            padding: 22px 3px 3px;
            font-size: 14px;
            height: 80px;
        }

            ul.nav.menu-game-nav li.nav-item a img {
                display: block;
                margin: 0px auto 2px;
                max-height: 30px;
            }

    .info-center-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .contactbox {
        grid-column: 1/3;
        grid-row: auto;
    }

    .info-center-wrapper a.infobox.last {
        grid-column: 1/3;
    }

    .ct-row {
        margin: 5px 0;
    }

    .product-wrapper {
        grid-template-columns: repeat(4,1fr);
    }

    .lotto-result-wrapper {
        display: none;
    }

    .lotto-result-mobile {
        display: block;
        margin-top: 15px;
    }

    .top-lotto {
        min-height: 430px;
    }

    .account-sec {
        background: #000027;
        padding: 120px 0 30px;
    }

        .account-sec .rules-wrap {
            background: none;
            padding: 0;
            min-height: auto;
        }

    ul.nav.menu-game-nav.account li.nav-item a {
        padding: 27px 1px 5px;
    }

        ul.nav.menu-game-nav.account li.nav-item a i {
            display: block;
            margin: 0 auto 5px;
        }

    .account-wrapper {
        background: none;
        border: none;
        padding: 0;
    }

    ul.nav.acc-nav li.acc-item {
        width: 31%;
        text-align: center;
        padding: 7px 0;
        border: 1px solid #ef21af;
        border-radius: 40px;
    }

        ul.nav.acc-nav li.acc-item.active, ul.nav.acc-nav li.acc-item:hover {
            border-bottom: none;
            border: 1px solid #ef21af;
            background: #ef21af;
        }

        ul.nav.acc-nav li.acc-item a {
            color: #fff;
            font-size: 18px;
        }

        ul.nav.acc-nav li.acc-item.active a, ul.nav.acc-nav li.acc-item:hover a {
            color: #fff;
        }

    .prodhover {
        display: none;
    }

    .account-wrapper.mobile {
        display: block;
    }

    .device-os-m {
        display: flex;
    }

    .owl-carousel.main-slider::before, .owl-carousel.main-slider::after {
        content: none;
    }

    .info-sec {
        padding: 60px 0 35px;
    }

    .download-sec {
        padding: 80px 0 40px;
    }

    .error-sec {
        padding: 45px 0 35px;
    }

    .promo-sec {
        padding: 45px 0 40px;
    }

    .gear-1.deco-err {
        top: 72%;
    }

    .faq-wrapper {
        display: grid;
        grid-template-columns: auto;
        grid-gap: 15px 0;
    }

    .daily-challenge-wrapper {
        grid-template-columns: repeat(5,1fr);
    }

    .mascot-challenge {
        position: initial;
        margin: auto;
    }
}

@media(max-width: 991px) {
    .form-wrap {
        max-width: 560px;
        margin: 15px auto;
    }

    .depo-mascot {
        position: initial;
        margin: 30px auto 0;
        text-align: center;
    }

    .reg-wrapper {
        grid-template-columns: auto;
    }

    button.btn-tnc::after {
        right: 10px;
    }
}

@media(max-width: 900px) {
    .promo-title {
        transform: scale(85%);
        transform-origin: right center;
    }
}

@media(max-width: 767px) {
    .event-floating {
        max-width: 150px;
    }

    #scroll {
        bottom: 65px;
        width: 35px;
        height: 35px;
        right: 5px;
        font-size: 12px;
    }

    .header-top {
        height: 60px;
    }

    .logo {
        max-width: 120px;
    }

    .header.active .logo {
        max-width: 110px;
    }

        .header.active .logo::before {
            height: 77px;
        }

    .logo-provider .logo-item:nth-child(n+6) {
        display: none;
    }

    .logo-provider.active .logo-item:nth-child(n+6) {
        display: flex;
    }

    .game-menu {
        top: 60px;
    }

    .mobile-quick-link {
        display: initial;
    }

    .footer-link-sec {
        grid-template-columns: auto;
        grid-gap: 20px;
    }

    .footer-quick-link {
        justify-content: center;
    }

    .link-box {
        padding: 0 10px;
        margin: 0;
    }

    .banner-text {
        font-size: 70%;
    }

    .footer-sec {
        padding: 0 0 30px;
    }

    .ft-none {
        display: none;
    }

    ul.footer-nav.two {
        column-count: auto;
    }

    ul.footer-nav li {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .social-wrap {
        display: block;
        text-align: center;
    }

    .follow-wrap a {
        font-size: 18px;
    }

    .social-wrap .ftlang-wrap {
        margin-top: 12px;
    }

    button.footer-language-btn {
        margin: auto;
    }

    .info-sec {
        padding: 45px 0 35px;
    }

    .logo-provider {
        display: grid;
        grid-template-columns: repeat(5,1fr);
        grid-gap: 5px;
    }

    ul.nav.menu-game-nav li.nav-item a {
        font-size: 13px;
    }

        ul.nav.menu-game-nav li.nav-item a img {
            max-height: 30px;
        }

    .product-wrapper {
        grid-template-columns: repeat(3,1fr);
        grid-gap: 10px;
    }

    .date-result {
        height: 50px;
        font-size: 15px;
    }

    .drdate-1 i {
        font-size: initial;
    }

    input.date-choose {
        font-size: 16px;
    }

    .drdate-2 {
        padding: 0 15px;
    }

    .top-lotto {
        background: url("../images/product/4d/mobile-4d-bg.png?v3")no-repeat top center;
        background-size: 150%;
        min-height: auto;
    }

    .round-num {
        height: 110px;
        width: 110px;
        margin: 0 7px;
        padding: 8px;
    }

    .inner-num {
        font-size: 76px;
    }

    .download-sec {
        padding: 40px 0 40px;
        background-size: cover;
    }

    .prov-logo-box {
        height: 110px;
        width: 350px;
        padding: 14px 15px 28px;
    }

        .prov-logo-box img {
            max-height: 67px;
        }

    .dl-box {
        width: 45%;
        margin: 0 2%;
    }

    .promo-wrapper {
        text-align: center;
    }

    .promobox {
        margin: 0.3% auto;
        max-width: 574px;
    }

    .promo-title {
        transform: none;
    }

    .promo-sec {
        padding: 25px 0 40px;
    }

    .pmbox {
        margin: 4px 0.5%;
        width: 31%;
    }

    .pm-mascot {
        right: -5px;
        top: -12px;
        max-width: 37%;
    }

    .page-row-2 .back-info-btn {
        position: initial;
        padding: 15px 0 0;
    }

    .title-inner-1 {
        font-size: 20px;
    }

    .tnm-title {
        font-size: 28px;
    }

    .game-parti {
        grid-template-columns: repeat(4,1fr);
    }

    .tournament-top-sec {
        padding: 60px 0 0;
    }

    .field-wrap {
        grid-template-columns: auto;
        grid-gap: 3px;
        margin: 10px 0;
    }

    .account-sec {
        padding: 110px 0 30px;
    }

    .reg-field {
        grid-template-columns: auto;
        grid-gap: 5px;
    }

    .reg-acc {
        display: flex;
        justify-content: center;
    }

    .reg-container {
        padding: 20px 15px;
    }

    .mia-reg {
        text-align: center;
        margin: 30px auto 0;
    }

    button.create-btn {
        font-size: 16px;
    }

    .planet-1 {
        top: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .planet-2 {
        top: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .pps-text {
        font-size: 25vw;
    }

    .org-planet img {
        max-width: 26vw;
    }

    .org-planet::after {
        width: 19vw;
        height: 40vw;
    }

    .wrong-text {
        font-size: 7vw;
    }

    span.moonrock img {
        max-width: 29vw;
    }

    .pps-text.mainten {
        font-size: 12vw;
    }

    .wrong-text.mainten {
        font-size: 6vw;
    }

    .cones-deco.deco-err {
        display: none
    }

    .mascot-mio.deco-err {
        position: initial;
        max-width: 50%;
        margin: 30px auto 15px;
    }

    body.error-page {
        padding-bottom: 0;
    }

    .error-sec {
        min-height: auto;
        padding: 25px 0 35px;
    }

    .field-input.sbm-1 {
        text-align: center;
    }

    .game-menu.fixed {
        margin-top: 0px;
    }

    .product-sec {
        padding: 100px 0 30px;
    }

    ul.nav.menu-game-nav li {
        width: 16.5%;
    }

    ul.nav.menu-game-nav.account li {
        width: 16.5%;
    }

    ul.nav.menu-game-nav li.empty-list {
        display: none;
    }

    span.mgtext {
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 22px;
    }

    .gear-1.deco-err {
        top: 64%;
        max-width: 7%;
    }

    .gear-2.deco-err {
        right: 15%;
        top: 79%;
        max-width: 7%;
    }

    .base-img img {
        height: 17vw;
    }

    .task-wrap img {
        max-height: 8.5vw;
        max-width: 14vw;
    }

    .dc-box.expired::after {
        width: 10vw;
        height: 9vw;
    }

    .dc-box.done::after {
        width: 7vw;
        height: 6vw;
    }

    .legend-icon-wrap {
        grid-template-columns: repeat(3,1fr);
        grid-gap: 20px 5px;
        padding: 10px;
    }

    .captitle {
        font-size: 14px;
    }

    .challenge-sec {
        padding: 50px 0 35px;
    }
}


@media(max-width: 620px) {
    .video-frame {
        height: 61vw;
        padding: 4% 7%;
    }
}

@media(max-width: 600px) {
    .reason-text {
        top: 74%;
        font-size: 5vw;
    }

        .reason-text .yellow-bold {
            font-size: 5vw;
        }

    .rs-caption {
        font-size: 4vw;
    }
}

@media(max-width: 480px) {
    .event-floating {
        max-width: 30%;
    }

    .header-top {
        height: 50px;
    }

    .header.active .logo {
        max-width: 95px;
        top: 3px;
    }

    .logo {
        top: 2px;
        max-width: 110px;
    }

    .header.active .logo::before {
        background: linear-gradient(to right, rgb(26 12 98) 0%, rgb(13 6 71) 100%);
        height: 67px;
    }

    button.user-btn {
        margin-left: 0;
    }

    .rsbox {
        height: 45px;
        width: 45px;
    }

    .seo-wrapper {
        max-height: 200px;
    }

    .link-box {
        margin-right: 10px;
    }

    ul.footer-nav {
        font-size: 13px;
    }

    .ready-banner {
        min-height: 140px;
    }

        .ready-banner .yellow-bold {
            font-size: 20px;
        }

    .reg-free-btn {
        background-size: 100% 100%;
        max-width: 350px;
        height: 50px;
        font-size: 15px;
    }

    .home-banner-sec {
        min-height: 465px;
    }

    button.register-green {
        height: 50px;
        font-size: 17px;
        width: 85%;
    }

    .banner-text {
        font-size: 60%;
    }

    .agreed-text {
        font-size: 3vw;
    }

    .res-text {
        font-size: 17px;
    }

    .logo-footer {
        max-width: 130px;
        margin: auto;
    }

    .follow-wrap {
        margin-bottom: 10px;
    }

    ul.nav.menu-game-nav li.nav-item a {
        font-size: 11px;
    }

    .info-center-wrapper {
        grid-template-columns: repeat(1,1fr);
    }

    .contactbox {
        grid-column: auto;
    }

    .info-center-wrapper a.infobox.last {
        grid-column: auto;
    }

    .contactbox, a.infobox {
        padding: 15px 5%;
        height: auto;
    }

    .game-menu {
        top: 50px;
    }

    .product-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .date-result {
        font-size: 13px;
    }

    .lucky-title {
        font-size: 24px;
    }

    .round-num {
        height: 22vw;
        width: 22vw;
        margin: 0 1vw;
        padding: 8px;
    }

    .inner-num {
        font-size: 14vw;
    }

    button.lotto-btn {
        font-size: 16px;
        height: 50px;
        min-width: 45%;
        margin: 0 1%;
    }

    .nav-tabs.toto-nav .nav-item {
        margin: auto;
        width: 15%;
        text-align: center;
    }

    .acces-wrap {
        font-size: 13px;
    }

    .prov-logo-box {
        height: 27vw;
        width: 80vw;
        padding: 4vw 0 6vw;
    }

        .prov-logo-box img {
            max-height: 17vw;
        }

    .device-os-m {
        font-size: 18vw;
        height: 30vw;
        width: 30vw;
    }

    a.dl-btn {
        font-size: 13px;
        height: 35px;
    }

    button.pw-btn {
        font-size: 12px;
    }

    .pmt-1 {
        font-size: 5.7vw;
        height: 14vw;
        max-width: 47vw;
        margin-bottom: 1.5vw;
    }

    .pmt-2 {
        font-size: 2.9vw;
        height: 11.5vw;
        max-width: 50vw;
        margin-bottom: 1vw;
    }

    .promo-tb {
        font-size: 13px;
    }

    button.bonus-btn {
        font-size: 14px;
        height: 45px;
        min-width: 140px;
    }

    .tnm-title {
        font-size: 22px;
    }

    .tournament-top-sec {
        padding: 50px 0 0;
    }

    .account-sec {
        padding: 100px 0 30px;
    }

    ul.nav.acc-nav li.acc-item a {
        font-size: 13px;
    }

    button.submit-btn {
        font-size: 17px;
        height: 45px;
        min-width: 200px;
        border-radius: 45px;
    }

    .upload-field {
        display: grid;
        grid-template-columns: 185px auto;
    }

    .trans-field {
        display: grid;
        grid-template-columns: 185px auto;
    }

    button.upload-btn {
        font-size: 13px;
    }

        button.upload-btn.medium {
            font-size: 13px;
        }

    table.history-table {
        font-size: 12px;
    }

    button.submit-btn.medium {
        font-size: 14px;
        height: 35px;
        min-width: 200px;
    }

    .pmbox {
        margin: 3px 0.5%;
        width: 47%;
        font-size: 13px;
    }

    .pmbox-inner {
        height: 45px;
    }

        .pmbox-inner img {
            max-height: 40px;
            margin-right: 5px;
        }

    .info-container {
        padding: 15px;
        font-size: 14px;
    }

    .back-info-btn {
        position: initial;
        text-align: left;
        margin-bottom: 5px;
    }

    table.payment-table {
        font-size: 13px;
    }

        table.payment-table tr td {
            padding: 8px 2px;
        }

    button.paym-btn {
        font-size: 11px;
        min-width: 65px;
        height: 28px;
        padding: 0 3px;
    }

    .welcome-reg {
        font-size: 20px;
    }

    button.btn-tnc {
        font-size: 14px;
    }

    .ctnotice {
        grid-template-columns: 45px auto;
        margin: 15px 0;
        padding: 10px 10px;
    }

    .owl-theme.main-slider .owl-nav button.owl-prev {
        left: 5%;
        font-size: 38px !important;
        height: 30px;
        width: 30px;
    }

    .owl-theme.main-slider .owl-nav button.owl-next {
        right: 5%;
        font-size: 38px !important;
        height: 30px;
        width: 30px;
    }

    .owl-theme.main-slider button.owl-prev span, .owl-theme.main-slider button.owl-next span {
        top: 16px;
    }

    button.big-btn {
        font-size: 15px;
        min-width: 46%;
        height: 45px;
        padding: 0px 5px;
        margin: 0 1%;
    }

    button.more-btn {
        padding: 0;
        height: 8vw;
        font-size: 2.6vw;
        min-width: 31vw;
    }

    span.time-t {
        display: block;
    }

    a.infobox.payment {
        grid-row: 2/3;
    }

    a.infobox.faq {
        grid-row: 3/4;
    }

    a.infobox.tnc {
        grid-row: 4/5;
    }

    a.infobox.rules {
        grid-row: 5/6;
    }

    a.infobox.policy {
        grid-row: 6/7;
    }

    a.infobox.gaming {
        grid-row: 7/8;
    }

    .ct-img {
        font-size: 28px;
    }

    .challenge-top-wrap {
        background: none;
        height: auto;
    }

    .daily-challenge-wrapper {
        grid-gap: 10px 1px;
        margin-top: 8%;
    }

    .deco-planet, .deco-mascot {
        display: none;
    }

    .day-task {
        top: 4%;
        font-size: 2.5vw;
    }

    .chg-title {
        width: 74vw;
        height: 15vw;
        font-size: 5.5vw;
    }

    .month-base {
        max-width: 64vw;
        height: 15vw;
        font-size: 6vw;
    }
}

@media(max-width: 420px) {
}

/** 1/9/2023 Update **/
.deco.mascot-1.lunar {
    left: 0%;
    top: 2%;
}

.deco.mascot-2 {
    right: -6%;
    top: 7%;
    max-width: 35%;
}

/** 12/1/2023 Update **/
.depo-amt-wrap {
    margin: 5px 0 0 0;
}

button.amt-btn {
    background: #fff;
    border: none;
    border-radius: 25px;
    margin: 0 0 5px 0;
    width: 24%;
    height: 35px;
    padding: 5px 2px;
    color: #1B1B1B;
}

    button.amt-btn:hover, button.amt-btn.active {
        background: #ef21af;
        color: #fff;
    }


/** 14/3/2023 Update - Popup slider **/
.modal-dialog.annouce-slider {
    max-width: 900px;
}

.modal-content.annouce-slider {
    border: 2px solid #29137e;
    box-shadow: none;
    padding: 10px;
    border-radius: 8px;
    background: #100e37;
}

button.close-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 15px;
    z-index: 2;
}

ol.carousel-indicators.popupslider {
    bottom: 0;
}

/** 13/4/2023 Update **/
.challenge-sec {
    background-size: cover;
}

.dc-box.claim::before {
    content: '';
    background: url(../images/challenge/claim-tick.png?v2)no-repeat;
    background-size: 100%;
    width: 43px;
    height: 46px;
    position: absolute;
    z-index: 2;
    right: 0px;
    top: 6px;
}

.claim-btn-wrap {
    text-align: center;
    margin-top: -17px;
}

button.claim-btn {
    background: url("../images/challenge/claim-btn.png?v3")no-repeat;
    background-size: 100%;
    border: none;
    padding: 5px;
    width: 100%;
    max-width: 185px;
    height: 52px;
    margin: 0 auto;
    color: #d4ff03;
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 600;
}

    button.claim-btn:hover {
        transform: scale(0.98);
        filter: brightness(1.08);
    }

@media(max-width: 767px) {

    .dc-box.claim::before {
        width: 5.6vw;
        height: 5.9vw;
        top: 5%;
    }
}

/** VIP page - updated 12/6/2023 **/
.vip-sec {
    background: #00001a url("../images/vip/bg_vip.webp")no-repeat top center;
    background-size: 100%;
    padding: 10px 0 35px;
}

.bntext-3.white {
    color: #fff;
}

.quest-map {
    position: relative;
    max-width: 1038px;
    margin: 20px auto 0;
}

.questbox {
    position: absolute;
    text-align: center;
    max-width: 9%;
    cursor: pointer;
    transition: 0.2s;
}

    .questbox:hover {
        filter: drop-shadow(0 0 5px rgb(255,255,255,0.7)) brightness(1.07);
        transform: scale(1.03);
        transition: 0.2s;
    }

.done-img {
    display: none;
}

.qsnum {
    position: absolute;
    left: 0;
    right: 0;
    top: 22%;
    font-size: 28px;
    font-weight: 700;
}

.questbox.active img.done-img {
    display: initial;
}

.questbox.active img.undone-img {
    display: none;
}

.questbox.active .qsnum {
    text-shadow: 1px 1px 0 #884600, -1px 1px 0 #884600, 1px -1px 0 #884600, -1px -1px 0 #884600, 0px 1px 0 #884600, 0px -1px 0 #884600, -1px 0px 0 #884600, 1px 0px 0 #884600, 2px 2px 0 #884600, -2px 2px 0 #884600, 2px -2px 0 #884600, -2px -2px 0 #884600, 0px 2px 0 #884600, 0px -2px 0 #884600, -2px 0px 0 #884600, 2px 0px 0 #884600, 1px 2px 0 #884600, -1px 2px 0 #884600, 1px -2px 0 #884600, -1px -2px 0 #884600, 2px 1px 0 #884600, -2px 1px 0 #884600, 2px -1px 0 #884600, -2px -1px 0 #884600;
}

.questbox.no1 {
    right: 17%;
    top: 6%;
}

.questbox.no2 {
    right: 24%;
    top: 13%;
}

.questbox.no3 {
    right: 17%;
    top: 19%;
}

.questbox.no4 {
    right: 27%;
    top: 22%;
}

.questbox.no5 {
    left: 54%;
    top: 22%;
}

.questbox.no6 {
    left: 44%;
    top: 21%;
}

.questbox.no7 {
    left: 33%;
    top: 22%;
}

.questbox.no8 {
    left: 22%;
    top: 23%;
}

.questbox.no9 {
    left: 15%;
    top: 29%;
}

.questbox.no10 {
    left: 17%;
    top: 37%;
}

.questbox.no11 {
    left: 26%;
    top: 41%;
}

.questbox.no12 {
    left: 36%;
    top: 43.5%;
}

.questbox.no13 {
    left: 45.5%;
    top: 46%;
}

.questbox.no14 {
    left: 55%;
    top: 48%;
}

.questbox.no15 {
    left: 63%;
    top: 51.5%;
}

.questbox.no16 {
    right: 24%;
    top: 59.5%;
}

.questbox.no17 {
    right: 16%;
    top: 63.5%;
}

.questbox.no18 {
    right: 9%;
    top: 68%;
}

.questbox.no19 {
    right: 12%;
    top: 76%;
}

.questbox.no20 {
    right: 21%;
    top: 78.5%;
}

.questbox.no21 {
    right: 31%;
    top: 79%;
}

.questbox.no22 {
    right: 41%;
    top: 77.5%;
}

.questbox.no23 {
    left: 40%;
    top: 75%;
}

.questbox.no24 {
    left: 30%;
    top: 72.5%;
}

.questbox.no25 {
    left: 20%;
    top: 71%;
}

.map-track {
    pointer-events: none;
}

.map-deco {
    position: absolute;
    pointer-events: none;
}

@keyframes spinstar {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.3);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.map-deco.stone {
    left: 19%;
    top: 12%;
    max-width: 7%;
    animation: float 2.4s ease-in-out infinite;
}

.map-deco.star-1 {
    left: 5%;
    top: 38%;
    max-width: 8%;
    animation: spinstar 4s linear infinite;
}

.map-deco.star-2 {
    left: 60%;
    top: 12%;
    max-width: 4%;
    animation: spinstar 3.5s reverse linear infinite;
}

.map-deco.star-3 {
    right: 8%;
    top: 27%;
    max-width: 5%;
    animation: spinstar 3.5s linear infinite;
}

.map-deco.star-4 {
    right: 7%;
    top: 49%;
    max-width: 6%;
    animation: spinstar 3s reverse linear infinite;
}

.map-deco.star-5 {
    left: 47%;
    bottom: 8%;
    max-width: 3%;
    animation: spin 4s linear infinite;
}

.map-deco.planet {
    mix-blend-mode: screen;
    right: 10%;
    top: 34%;
    max-width: 10%;
    animation: spin 8s reverse linear infinite;
}

.vip-prog {
    margin: -5% auto 10px;
}

.vip-prg-title {
    color: #fb5eca;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 5px;
}

.vip-prog p {
    padding-bottom: 10px;
}

.vip-tier-wrapper {
    text-align: center;
}

.tier-box {
    position: relative;
    max-width: 220px;
    width: 100%;
    margin: 0 3px;
    display: inline-block;
}

.vip-mascot-img {
    margin-bottom: -100px;
    text-align: center;
}

    .vip-mascot-img img {
        max-height: 200px;
    }

.tier-frame {
    background: linear-gradient(to bottom, rgba(73,93,148,1) 0%, rgba(224,116,202,1) 100%);
    overflow: hidden;
    padding: 2px;
    border-radius: 8px;
}

.tier-inner {
    background: url(../images/vip/vip-base-bg.jpg?v3)no-repeat top center;
    background-size: cover;
    border-radius: 7px;
    font-size: 14px;
    padding: 90px 4px 10px;
    text-align: center;
}

.viptext-1 {
    font-size: 22px;
    font-weight: 700;
    color: #faf614;
}

.viptext-2 {
    padding: 0 0 12px;
}

.bnfbox {
    background: #251176;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    font-size: 13px;
    padding: 0 10px;
}

    .bnfbox.plain {
        background: none;
    }

    .bnfbox div:last-child {
        color: #faf614;
    }

.vip-player-wrapper {
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 10px;
    margin-top: 80px;
    align-items: center;
}

.player-tier-box {
    background: url(../images/vip/topbase_1.jpg?v3)no-repeat top center;
    background-size: cover;
    text-align: center;
    border: 2px solid #f39ae0;
    border-radius: 8px;
    padding: 0 10px 10px;
}

.vip-mc-img {
    margin-top: -60px;
}

    .vip-mc-img img {
        max-height: 170px;
    }

.viptxt-2 {
    color: #faf614;
    font-size: 22px;
    font-weight: 700;
}

.py-vip-detail {
    background: linear-gradient(to left, rgba(73,93,148,1) 0%, rgba(224,116,202,1) 100%);
    overflow: hidden;
    padding: 2px;
    border-radius: 8px;
    height: 100%;
}

.vip-detail-inner {
    background: url("../images/vip/topbase_2.jpg?v3")no-repeat center;
    background-size: cover;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    height: 100%;
    font-size: 17px;
}

.pytext-1 {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 5px;
}

.pytext-2 {
    color: #faf614;
}

.point-text-player {
    padding: 5px 0 0;
}

    .point-text-player .crt-depo {
        color: #faf614;
        font-weight: 700;
    }

@media(max-width: 1080px) {
    .qsnum {
        font-size: 2.6vw;
    }
}

@media(max-width: 767px) {
    .quest-map-wrapper {
        overflow: hidden;
        margin: 0 -10px;
        padding-top: 10%;
    }

    .quest-map {
        transform: scale(116%);
    }

    .qsnum {
        font-size: 2.6vw;
    }

    .vip-prog {
        margin: 5% auto 10px;
    }
}

@media(max-width: 767px) {
    .vip-prg-title {
        font-size: 24px;
    }

    .tier-box {
        max-width: 270px;
    }

    .player-tier-box {
        max-width: 350px;
        margin: 0 auto;
    }

    .vip-player-wrapper {
        grid-template-columns: auto;
    }

    .vip-detail-inner {
        padding: 10px 15px;
        font-size: 15px;
    }
}

/** 4D page update - 19/10/2023 **/
table.lotto-table tr.title-lotto.stc td {
    background: #f6c602;
    color: #000;
}

table.lotto-table tr.title-lotto.gd td {
    background: #e91b25;
    color: #fff;
}

table.lotto-table tr.title-lotto.nine-lotto td {
    background: #f18020;
    color: #fff;
}

.more-text {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

@media(max-width: 480px) {
    .nav-tabs.toto-nav .nav-item {
        width: 11%;
    }
}

/** SEO part footer 6/2/2024 Update **/
.t-body {
    background-attachment: fixed;
}

.seo-container {
    padding: 10px 0 20px;
}

.seo-wrapper {
    margin-bottom: 10px;
}

    .seo-wrapper.active {
        display: block;
    }

    .seo-wrapper::after {
        background: none;
    }

.product-sec, .promo-sec {
    background: none;
}

/** Home - 7/3/2024 **/
.game-menu.home {
    position: initial;
}

.game-category-sec {
    padding: 15px 0;
}

.hot-game {
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    background: #f00;
    position: absolute;
    left: -16%;
    top: -3%;
    padding: 15px 0 3px;
    width: 100px;
    transform-origin: center;
    transform: rotate(320deg);
    box-shadow: 0 1px 4px rgb(0,0,0,0.7);
}

@media(max-width: 767px) {
    .hot-game {
        font-size: 2vw;
        padding: 7% 0 1%;
        width: 13vw;
    }
}

@media(max-width: 480px) {
    .product-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/** Updated 29/5/2024 **/
.mobile-reg-login {
    display: none;
}

.mobile-fixed-menu {
    background: #17153a;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    height: 65px;
}

.mobile-top-info {
    display: none;
}

button.greenround-btn img {
    height: 24px;
}

.referral-wrap {
    background: rgb(17, 8, 76, 0.7);
    padding: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 330px auto;
    grid-gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.refer-download {
    text-align: center;
    background: #100d38;
    padding: 20px 10px;
}

.referral-qrcode {
    max-width: 180px;
    margin: 0 auto 15px;
}

.refer-column {
    padding: 10px 0;
}

.referral-field {
    display: grid;
    grid-template-columns: auto 150px;
    grid-gap: 10px;
    margin-bottom: 15px;
}

button.copy-btn {
    background: #3a1fb3;
    border-radius: 35px;
    font-weight: 600;
    font-size: 17px;
    height: 35px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #3a1fb3;
}

    button.copy-btn:hover {
        background: none;
    }

.share-social-wrapper {
    text-align: center;
}

.sharetext {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.share-media {
    background: #100d38;
    max-width: 400px;
    margin: 10px auto;
    padding: 15px 5px;
    border-radius: 5px;
}

    .share-media a {
        display: inline-block;
        font-size: 52px;
        margin: 5px 15px;
    }

a.whatsapp-share {
    background: linear-gradient(180deg, rgba(91, 205, 117, 1) 0%, rgba(58, 195, 43, 1) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

a.messenger-share {
    background: linear-gradient(225deg, rgba(247,78,169,1) 0%, rgba(62,123,248,1) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

a.telegram-share {
    background: linear-gradient(225deg, rgba(50,170,231,1) 0%, rgba(45,165,225,1) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

@media(max-width: 1080px) {
    .dropdown-menu.language {
        background: #28127b;
        border-radius: 0 0 10px 10px;
    }

        .dropdown-menu.language::before {
            border-top: none;
            border-bottom: 10px solid #28127b;
            right: 7px;
            top: -10px;
            bottom: auto;
        }

    .mobile-fixed-menu {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
    }

    a.mbfix-btn {
        display: inline-block;
        text-align: center;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
    }

    .mbfx-img {
        max-width: 30px;
        margin: 0 auto 5px;
    }

    .mobile-reg-login {
        display: block;
        padding: 15px 5px;
        background: #17153a;
        text-align: center;
        position: relative;
    }

        .mobile-reg-login button.pink-btn, .mobile-reg-login button.green-btn {
            min-width: 46%;
            height: 35px;
        }

    #scroll {
        bottom: 75px;
    }

    body {
        padding-bottom: 60px;
    }

    .mobile-top-info {
        background: #00002e;
        padding: 20px 10px 10px;
        position: relative;
        display: block;
    }

    .mbtop-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mbtop-col {
        display: grid;
        align-items: center;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 2%;
        width: 45%;
        text-align: center;
    }

    .mbtop-col-right {
        display: grid;
        align-items: center;
        grid-template-columns: 35% 63%;
        grid-gap: 0 2%;
        width: 48%;
    }

    button.btm-amt.mbtoken {
        width: 100%;
    }

    button.btm-amt.mbwallet {
        width: 100%;
    }
}

@media(max-width: 767px) {
    .referral-wrap {
        grid-template-columns: auto;
        grid-gap: 5px;
    }
}

@media(max-width: 480px) {
    .mbtop-col {
        text-align: left;
        font-size: 14px;
    }

    .token-icon {
        margin-right: 5px;
    }

    .mbtop-col {
        width: 49%;
    }

    button.btm-amt.mbtoken, button.btm-amt.mbwallet {
        font-size: 12px;
    }

    .referral-field {
        grid-template-columns: auto;
    }

    button.copy-btn {
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
        font-size: 15px;
    }

    .share-media a {
        font-size: 48px;
        margin: 5px 10px;
    }
}

/** Referral - updated 18/7/2024 **/
.more-btn {
    text-align: center;
    padding: 5px 0;
}

button.lotto-btn.green.refer {
    height: 40px;
    min-width: 190px;
    font-size: 16px;
}

ul.nav.refer-nav {
    justify-content: space-evenly;
}

    ul.nav.refer-nav li.refer-item {
        text-align: center;
    }

        ul.nav.refer-nav li.refer-item a.refer-link {
            display: block;
            color: #ec7ccb;
            padding: 5px 1px;
            border-bottom: 3px solid transparent;
            text-transform: uppercase;
            font-size: 22px;
            font-weight: 700;
        }

            ul.nav.refer-nav li.refer-item a.refer-link.active {
                color: #ef21af;
                border-bottom: 3px solid #ef21af;
            }

        ul.nav.refer-nav li.refer-item a.acc-link.active, ul.refer.refer-nav li.refer-item a.refer-link:hover {
            border-bottom: 3px solid #ef21af;
        }

@media(max-width: 1080px) {
    ul.nav.refer-nav li.refer-item {
        width: 31%;
    }

        ul.nav.refer-nav li.refer-item a.refer-link {
            display: block;
            border-bottom: none;
            color: #fff;
            border: 1px solid #ef21af;
            padding: 8px 1px;
            border-radius: 40px;
            font-size: 16px;
        }

            ul.nav.refer-nav li.refer-item a.refer-link.active {
                background: #ef21af;
                color: #fff;
            }
}

@media(max-width: 480px) {
    ul.nav.refer-nav li.refer-item a.refer-link {
        font-size: 13px;
    }
}

/** Polualr Game homepage - update- 25/9/2024 **/
.popular-sec {
    padding: 30px 0;
    position: relative;
}

.pupolar-title {
    color: #f5e852;
    font-size: 18px;
    max-width: 991px;
    margin: 0 auto 15px;
}

    .pupolar-title img {
        margin-right: 5px;
    }

.popular-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    max-width: 991px;
    margin: 0 auto;
}

.pgamebox {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

    .pgamebox img {
        transition: 0.2s;
    }

    .pgamebox:hover img {
        transform: scale(1.04);
        transition: 0.2s;
    }

@media(max-width: 767px) {
    .pupolar-title {
        font-size: 16px;
    }

    .pgamebox {
        border-radius: 2vw;
    }

    .popular-wrapper {
        grid-gap: 5px;
    }
}

/** Updated - 20/11/2024 **/
.player-tier-box {
    height: 100%;
}

.reset-note {
    color: #fb5eca;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    margin-top: 5px;
}

.reset-note-top {
    color: #fb5eca;
    font-size: 13px;
    font-style: italic;
    font-weight: 700;
    margin-top: 5px;
}

/** Footer Updated - 6/12/2024 **/
.footer-row-wrapper {
    display: grid;
    grid-template-columns: 30% auto;
    grid-gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1b1a56;
}

.gcb-wrap {
    display: grid;
    grid-template-columns: 110px auto;
    grid-gap: 10px;
    font-size: 13px;
    line-height: 1.2;
    padding: 10px 0 0;
}

.gcb-logo {
    max-width: 110px;
}

.payment-column {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    grid-gap: 10px;
}

.logo-party {
    margin-top: 10px;
}

    .logo-party img {
        max-height: 48px;
        margin: 0 4px 5px 0px;
    }

@media(max-width: 991px) {
    .footer-row-wrapper {
        grid-template-columns: auto;
    }

    .gcb-wrap {
        grid-template-columns: auto;
    }
}

@media(max-width: 767px) {
    .payment-column {
        grid-template-columns: auto;
    }
}

@media(max-width: 480px) {
    .logo-party img {
        max-height: 38px;
    }

    .gcb-wrap {
        grid-template-columns: 110px auto;
        align-items: center;
    }
}

/** header sponsor **/
a.sponsor-link-desktop {
    color: #fff;
    text-transform: uppercase;
    margin-right: 8px;
}

    a.sponsor-link-desktop:hover img {
        transform: scale(0.98);
        filter: brightness(1.07);
    }

    a.sponsor-link-desktop img {
        max-width: 80px;
    }

a.sponsor-link-mobile {
    display: none;
    color: #fff;
    text-transform: uppercase;
    margin-left: 10px;
}

    a.sponsor-link-mobile img {
        max-width: 80px;
    }

@media(max-width: 1080px) {
    a.sponsor-link-desktop {
        display: none;
    }

    a.sponsor-link-mobile {
        display: inline-block;
    }
}

@media(max-width: 480px) {

    a.sponsor-link-mobile img {
        max-width: 55px;
    }
}

/** Updated - 7/4/2025**/
.bank-qrcode {
    padding: 10px;
    border: 2px solid #29137d;
    border-radius: 10px;
    margin: 5px 0;
    max-width: 180px;
}

/** 7/7/2025 **/

.slider-sec {
    min-height: 29vw;
}

.mobile-reg-login {
    min-height: 65px;
}

.game-menu.home {
    min-height: 68px;
}

.reason-sec {
    min-height: 32vw;
}

@media(max-width: 1080px) {
    .game-menu.home {
        min-height: 80px;
    }
}

@media(max-width: 480px) {
    .reason-sec {
        min-height: 121vw;
    }
}

/** Point Bank - Updated -15/7/2025 **/
.pointbank-sec {
    background: #00001a url("../images/point-bank/bg-point-bank.jpg") no-repeat top center;
    background-size: cover;
    padding: 10px 0 35px;
}

    .pointbank-sec .deco {
        pointer-events: none;
    }

.deco.pb-planet-1 {
    left: -1%;
    top: 5%;
    max-width: 10%;
    animation: spin 25s linear infinite;
}

.deco.pb-planet-2 {
    right: -8%;
    top: 11%;
    max-width: 14%;
    animation: spin 30s linear infinite;
}

.deco.pb-planet-3 {
    left: -15%;
    top: 28%;
    max-width: 15%;
    animation: spin 28s reverse linear infinite;
}

.deco.fallstar-1 {
    position: absolute;
    top: 6%;
    right: 2%;
    max-width: 39%;
    mix-blend-mode: screen;
    animation: falling 3s infinite;
}

.deco.fallstar-2 {
    position: absolute;
    top: 6%;
    left: -10%;
    max-width: 39%;
    mix-blend-mode: screen;
    animation: falling 2.5s infinite;
    animation-delay: 1s;
    opacity: 0;
}

@-webkit-keyframes falling {
    0% {
        transform: translate(120px, -120px) scale(0.3);
        transform-origin: top right;
        opacity: 0.1;
    }

    50% {
        opacity: 1
    }

    100% {
        transform: translate(0, 0) scale(1);
        transform-origin: top right;
        opacity: 0;
    }
}

.reward-vault-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 15px;
    padding: 30px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.vault-box {
    position: relative;
    max-width: 271px;
    margin: 0 auto;
}

.rd-pts {
    background: #17153a;
    border: 1px solid #cd26aa;
    border-radius: 40px;
    color: #faf614;
    font-size: 22px;
    font-weight: 700;
    max-width: 110px;
    padding: 2px 2px;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19%;
    z-index: 1;
}

button.redeem-vault-btn {
    background: #ef21af;
    border: 1px solid #ef21af;
    color: #fff;
    border: none;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px;
    height: 47px;
    border-radius: 45px;
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1%;
}

.reward-vault-wrapper.logined button.redeem-vault-btn {
    background: #1d0046;
    box-shadow: 0 0 5px #ef21af, 0 0 10px #ef21af;
    filter: drop-shadow(0px 0px 4px #ef21af);
}

    .reward-vault-wrapper.logined button.redeem-vault-btn.active {
        background: #ef21af;
        box-shadow: none;
        filter: none;
    }

.player-point-bank {
    padding: 30px 0 5px;
    font-size: 24px;
    font-weight: 700;
}

.pts-bank-box {
    position: relative;
    background: radial-gradient(circle, rgba(51, 26, 101, 1) 0%, rgba(15, 23, 67, 1) 74%);
    font-size: 124%;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 380px;
    margin: 0 auto 10px;
    padding: 4px 10px;
    border: 2px solid #ea88d6;
    border-radius: 45px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yellow-text {
    color: #f8e81b;
}


@media(max-width: 767px) {
    .reward-vault-wrapper {
        grid-gap: 30px 2%;
    }

    .rd-pts {
        font-size: 2.7vw;
        height: 4.1vw;
        max-width: 45%;
    }

    button.redeem-vault-btn {
        height: 5.5vw;
        font-size: 2.8vw;
        padding: 2%;
    }
}

@media(max-width: 480px) {
    .player-point-bank {
        font-size: 18px;
    }

    .pts-bank-box {
        max-width: 320px;
        height: 45px;
    }

    button.redeem-vault-btn.active {
        box-shadow: 0 0 3px #ef21af, 0 0 6px #ef21af;
    }
}

/** 21/10/2025**/
.quest-map-wrapper {
    padding-top: 120px;
}

.map-deco.stone {
    left: 0;
}

.station-box {
    position: absolute;
    max-width: 17%;
}

.questbox.no-a {
    left: 10%;
    top: 11%;
}

.questbox.no-b {
    left: 31%;
    top: 6%;
}

.questbox.no-c {
    right: 39%;
    top: 4%;
}

.station-box.no-a {
    left: 8%;
    top: -1%;
}

.station-box.no-b {
    left: 28%;
    top: -7%;
}

.station-box.no-c {
    left: 13%;
    right: 0;
    top: -9%;
    margin: 0 auto;
    text-align: center;
}

.vip-tier-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tier-box {
    max-width: 30%;
}

@media (max-width: 767px) {
    .tier-box {
        max-width: 270px;
    }
}

/** Header Logo update **/
a.header-logo {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/** Update - 15/4/2026 **/
ul.nav.menu-game-nav li.nav-item a {
    position: relative;
}

    ul.nav.menu-game-nav li.nav-item a.new::after {
        content: '';
        background: url(../images/new-icon.webp) no-repeat;
        background-size: 100%;
        width: 20px;
        height: 14px;
        margin: 0 auto;
        position: absolute;
        right: 21%;
        top: 10%;
    }

@media (max-width: 480px) {
    ul.nav.menu-game-nav li.nav-item a.new::after {
        width: 16px;
        height: 11px;
        right: 13%;
        top: 19%;
    }
}