﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=B612:wght@400;700&family=Noto+Sans+SC:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

@font-face {
    font-family: Impact;
    src: url("../font/impact.ttf");
}

@font-face {
    font-family: Alternate;
    src: url("../font/AlternateGotNo2D.ttf");
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
    font-size: 14px;
    color: #191919;
}

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 {
        text-decoration: none;
        outline: none;
    }

img {
    max-width: 100%;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #666;
    width: 100%;
}

.max-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}

/** Header **/
.t-header {
    position: fixed;
    width: 100%;
    box-shadow: 0 3px 15px -1px #9eaabe;
    z-index: 10;
}

.header-top {
    background: #343334;
    color: #8f8f8f;
    padding: 5px 0;
}

.top-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.switch-mobile-wrap {
    display: none;
}

.switch-btn {
    background: url("../images/day-btn.png")no-repeat center;
    background-size: 100%;
    width: 46px;
    height: 24px;
    border: none;
    position: relative;
    transition: ease 0.3s;
    margin-left: 140px;
}

    .switch-btn::after {
        content: 'Night Mode';
        text-transform: uppercase;
        position: absolute;
        width: 105px;
        left: -90px;
        top: 5px;
        font-size: 13px;
        color: #8f8f8f;
        text-align: left;
    }

    .switch-btn::before {
        content: '\f185';
        font-family: 'Font Awesome 5 Free';
        position: absolute;
        width: 105px;
        left: -108px;
        top: 5px;
        font-size: 13px;
        color: #8f8f8f;
        text-align: left;
    }

    .switch-btn.active {
        background: url("../images/night-btn.png")no-repeat center;
        background-size: 100%;
        width: 46px;
        height: 24px;
        transition: ease 0.3s;
    }

        .switch-btn.active::after {
            content: 'Day Mode';
            text-transform: uppercase;
            position: absolute;
            width: 105px;
            left: -90px;
            top: 5px;
            font-size: 13px;
            color: #8f8f8f;
            text-align: left;
        }

        .switch-btn.active::before {
            content: '\f186';
            font-family: 'Font Awesome 5 Free';
            position: absolute;
            width: 105px;
            left: -108px;
            top: 5px;
            font-size: 13px;
            color: #8f8f8f;
            text-align: left;
        }

.lang-wrap {
    margin-left: 15px;
    font-size: 13px;
}

    .lang-wrap a {
        color: #fff;
        border-right: 1px solid #fff;
        padding: 0 5px;
    }

        .lang-wrap a:last-child {
            border-right: none;
        }

.header-bottom {
    background: linear-gradient(to bottom, rgba(253,253,254,1) 0%, rgba(237,245,255,1) 100%);
    padding: 5px 0;
}

    .header-bottom .max-container {
        position: inherit;
    }

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    max-width: 200px;
}

    .logo img.dark {
        display: none;
    }

ul.nav.main-nav li.nav-item {
    padding: 23px 0;
}

    ul.nav.main-nav li.nav-item a.nav-link {
        color: #000;
        padding: 5px 10px;
        font-weight: 500;
        font-size: 1em;
    }

img.menu-icon {
    filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
}

ul.nav.main-nav li.nav-item a.nav-link img {
    max-height: 24px;
}

.header-right {
    display: flex;
    align-items: center;
}

.right-menu {
    text-align: center;
    display: flex;
}

    .right-menu a {
        display: inline-block;
        color: #000;
        font-size: 13px;
        font-weight: 500;
        padding: 0 5px;
        margin: 0 5px;
    }

        .right-menu a img {
            display: block;
            margin: auto;
            max-height: 24px;
        }

.login-wrap {
    margin-left: 10px;
}

button.comm-btn {
    background: linear-gradient(to bottom, rgba(248,251,254,1) 0%, rgba(224,237,249,1) 18%, rgba(208,223,236,1) 51%, rgba(224,237,249,1) 82%, rgba(248,251,254,1) 100%);
    box-shadow: 0 3px 5px #d8e9f0;
    color: #393a3a;
    border: 2px solid #fff;
    border-radius: 35px;
    font-weight: 500;
    min-width: 97px;
    height: 27px;
    padding: 2px 4px;
    font-size: 14px;
    line-height: 1;
    margin: 0 3px;
    transition: 0.3s;
}

button.gold-btn {
    background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
    box-shadow: 0 3px 5px rgb(219,164,97,0.4);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 35px;
    font-weight: 500;
    min-width: 97px;
    height: 27px;
    padding: 2px 4px;
    font-size: 14px;
    line-height: 1;
    margin: 0 3px;
    transition: 0.1s;
}

    button.comm-btn:hover, button.gold-btn:hover {
        filter: brightness(1.05);
        transition: 0.1s;
    }

.mobilemenu-wrap {
    display: none;
}

.lgwrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 2px 0;
}

a.inbox-btn {
    position: relative;
}

    a.inbox-btn img {
        max-height: 27px;
    }

span.mail-notice {
    background: linear-gradient(to bottom, rgba(255,26,0,1) 0%, rgba(188,0,0,1) 100%);
    color: #fff;
    height: 12px;
    width: 12px;
    font-size: 8px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

.welcome-user {
    font-size: 13px;
    border-left: 1px solid #9d9d9d;
    margin-left: 5px;
    padding: 0 5px;
    line-height: 11px;
}

.comm-btn.aflogin {
    min-width: 60px;
    font-size: 11px;
}

.gold-btn.aflogin {
    font-size: 13px;
    color: #835926;
}

button.comm-btn.red {
    background: linear-gradient(to bottom, rgba(248,150,150,1) 0%, rgba(192,26,26,1) 100%);
    color: #fff;
    font-size: 13px;
}

.account-btn-wrap {
    position: relative;
}

.acct-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 115%;
    background: linear-gradient(to bottom, rgba(43,44,48,0.91) 0%, rgba(45,47,53,0.91) 68%, rgba(29,30,33,0.91) 100%);
    text-align: left;
    border-radius: 7px;
    border-top: 2px solid #3e4248;
    border-bottom: 1px solid #3e4248;
    border-right: 2px solid #656b76;
    border-left: 1px solid #44484e;
    overflow: hidden;
    padding: 0;
}

    .acct-menu a {
        display: block;
        color: #fff;
        padding: 5px 10px;
        font-weight: 500;
        font-size: 14px;
    }

        .acct-menu a img {
            max-height: 22px;
            margin-right: 5px;
        }

        .acct-menu a:hover {
            background: #131313;
            color: #fff;
        }

.dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(255,255,255,0.9);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}

.dropdown-inner {
    max-width: 1300px;
    margin: auto;
    grid-gap: 0 5px;
    text-align: center;
}

a.dropitem {
    position: relative;
    color: #444;
    font-weight: 600;
    padding: 10px 0;
    text-transform: uppercase;
    display: inline-block;
    max-width: 140px;
}

.drop-img {
    max-width: 180px;
    margin: auto;
}

a.dropitem:hover {
    background: #e0e5f4;
}

ul.nav.main-nav li.nav-item:hover a.nav-link {
    color: #e8b779;
}

ul.nav.main-nav li.nav-item:hover .dropdown-wrapper {
    visibility: visible;
    opacity: 1;
}

.dm-logo {
    margin-bottom: 2px;
}

    .dm-logo img {
        max-height: 38px;
    }

.social-media-wrap {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.social-icon img {
    max-height: 20px;
    margin: 0 5px;
}

/** Footer **/
.ft-top {
    background: #3f434f;
    padding: 13px 0;
}

ul.nav.nav-footer li a {
    color: #fff;
    font-size: 13px;
}

    ul.nav.nav-footer li a:hover {
        color: #f0c387;
    }

ul.nav.nav-footer li {
    position: relative;
    padding: 0 10px;
}

    ul.nav.nav-footer li::after {
        content: '';
        background: #fff;
        height: 10px;
        width: 1px;
        position: absolute;
        right: 0;
        top: 5px;
    }

    ul.nav.nav-footer li:last-child::after {
        content: none;
    }

.ft-btm {
    background: #313238;
    color: #fff;
    padding: 30px 0;
}

.powered-title {
    font-style: italic;
    padding-bottom: 10px;
    font-size: 13px;
}

.ft-provider {
    margin-bottom: 15px;
}

    .ft-provider img {
        max-height: 35px;
        margin: 0px 8px 8px 0;
        filter: brightness(2.2);
    }

.ft-license {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px 10px;
    padding: 10px 0;
}

.license-logo img {
    max-height: 40px;
    margin-right: 4px;
}

.payment-logo {
    margin-top: 10px;
}

ul.nav.payment li img {
    max-height: 16px;
}

ul.nav.payment li {
    position: relative;
    padding: 0 10px;
    color: #9d9d9d;
    font-size: 13px;
}

    ul.nav.payment li::after {
        content: '';
        background: #9d9d9d;
        height: 10px;
        width: 1px;
        position: absolute;
        right: 0;
        top: 4px;
    }

    ul.nav.payment li:last-child::after {
        content: none;
    }

    ul.nav.payment li:first-child {
        padding-left: 0;
        padding-bottom: 4px;
    }

.copyright-sec {
    padding: 20px 0 0;
    font-size: 13px;
}

.ft-seo {
    background: #313238;
    color: #fff;
    padding: 30px 0 10px;
    font-size: 12px;
}

.seo-wrapper ul, .seo-wrapper ol {
    padding-left: 15px;
}

.ft-seo h3, .ft-seo h4 {
    font-size: 13px;
    font-weight: 500;
}

.ft-seo h1 {
    font-size: 14px;
    font-weight: 600;
}

.ft-seo h2 {
    font-size: 13px;
    font-weight: 500;
}

.ft-seo a {
    color: #fff;
    text-decoration: underline;
}

    .ft-seo a:hover {
        color: #f6c872;
    }

#text {
    display: none;
}

.more-btn {
    position: relative;
    border: none;
    background: none;
    min-width: 80px;
    color: #fff;
    padding: 0;
    text-align: left;
    color: #E0E0E0;
}

    .more-btn::after {
        content: '\f103';
        font-family: 'Font Awesome 5 Free';
        font-weight: 700;
        position: absolute;
        right: 5px;
    }

    .more-btn.active::after {
        transform: rotate(180deg);
        transform-origin: center;
    }

button.read-more {
    display: none;
}


/** Floating sidebar **/
.floating-wrapper {
    position: fixed;
    right: -135px;
    top: 20%;
    z-index: 99;
    transition: 0.3s;
}

    .floating-wrapper:hover {
        right: 0;
        transition: ease-in-out 0.3s;
    }

.float-contact {
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

.fc-inner {
    position: relative;
    background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%);
    border-bottom: 2px solid #b8e0f9;
    border-top: 2px solid #c7e0f7;
    border-left: 1px solid #c4daee;
    display: flex;
    align-items: center;
    border-radius: 10px 0 0 10px;
    padding: 3px 10px;
    height: 64px;
    width: 210px;
}

    .fc-inner::before {
        content: '';
        background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 100%);
        border-bottom: 1px solid #418ecd;
        border-left: 1px solid #5094ce;
        border-radius: 10px 0 0 7px;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 9px;
        z-index: -1;
    }

.fct-icon {
    max-width: 55px;
    margin-right: 10px;
}

.fct-info a {
    color: #000;
}

    .fct-info a:hover {
        color: #000;
        text-decoration: underline;
    }

.ct-list {
    text-transform: uppercase;
    font-weight: 600;
}

.qrcontact {
    position: absolute;
    top: 100%;
    right: 0;
    background: #8dd8fb;
    padding: 10px;
    max-width: 130px;
}

/** Floating Live Chat **/
.livechat-float {
    position: fixed;
    right: 0;
    bottom: 5%;
    max-width: 120px;
    z-index: 9;
    animation: float 2s ease-in-out infinite;
}

@-webkit-keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


/** Floating Bubble **/
.float-container {
    position: fixed;
    bottom: 11%;
    right: 0px;
    z-index: 99;
    display: none;
}

    .float-container.active {
        animation: none;
    }

#toggle {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.chat-contact {
    color: #031b33;
    font-size: 23px;
}

.close-contact {
    color: #444;
    display: none;
    font-size: 16px;
}

#toggle:checked + .menu__toggle > .menu__button .chat-contact {
    display: none;
}

#toggle:checked + .menu__toggle > .menu__button .close-contact {
    display: block;
}

#toggle:checked + .menu__toggle > .menu__button {
    background: #e0e5f4;
    border-radius: 50%;
    border: 2px solid #cad1ea;
    --d: 60px;
    animation: none;
}

.menu__item {
    visibility: hidden;
    opacity: 0;
}

#toggle:checked ~ .menu-round .menu__item:nth-child(1) {
    transition: all 250ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -11.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(2) {
    transition: all 250ms 100ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -15.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(3) {
    transition: all 250ms 200ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -19.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(4) {
    transition: all 250ms 300ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -23.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item {
    visibility: visible;
    opacity: 1;
}

.menu__button {
    --d: 70px;
    width: var(--d);
    height: var(--d);
    position: absolute;
    bottom: calc(10px / 2);
    right: calc(17px / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 100ms ease;
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

.menu-round {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    left: -12px;
    top: -20px;
}

.menu__item {
    position: absolute;
    right: 0;
    transition: all 250ms;
}

.mbcont {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 100%);
    border-bottom: 1px solid #418ecd;
    padding-bottom: 2px;
    border-radius: 6px;
    display: block;
}

.mbcont-inner {
    background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%);
    border: 1px solid #b8e0f9;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 45px auto;
    grid-gap: 5px;
    align-items: center;
    width: 170px;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    height: 50px;
    padding: 0 1px;
}

.ct-text {
    font-weight: 500;
}

.wechat-qr-wrap {
    max-width: 100px;
    margin: 0 0 0 auto;
    background: #8dd8fb;
    padding: 5px;
    margin-top: -6px;
}

    .wechat-qr-wrap img {
        max-height: 90px;
    }


/** Mobile Bottom Fixed Menu **/
.mobile-btm-menu {
    display: none;
    position: fixed;
    width: 100%;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(253,253,254,1) 0%, rgba(237,245,255,1) 100%);
    box-shadow: 0 -3px 15px -1px rgb(0,0,0,0.2);
    border-top: 2px solid #fedaa2;
}

.ft-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    height: 60px;
}

.ft-item {
    padding: 5px 2px;
}

a.ftmenu img {
    display: block;
    margin: 0 auto 4px;
    filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
}

.ft-item a {
    color: #000;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 50px;
}

.ft-item.dropdown {
    position: inherit;
}

.mb-sub {
    transition: 0.3s;
    position: absolute;
    z-index: 90;
    top: -101%;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(253,253,254,1) 0%, rgba(237,245,255,1) 100%);
    min-width: auto;
    float: none;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
}

.submenu-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    align-items: center;
    padding: 4px 0;
    height: 60px;
    font-size: 11px;
}

    .submenu-wrapper.setting {
        grid-template-columns: repeat(4,1fr);
        font-size: 10px;
        align-items: flex-start;
        line-height: 1;
    }

    .submenu-wrapper a img {
        max-height: 30px;
        display: block;
        margin: 0 auto 3px;
        filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
    }

.mb-sub.dropdown-menu.show {
    top: -101% !important;
    transform: none !important;
}



/** Home **/
.t-body {
    background: #d8dce8 url(../images/bg_light.jpg)no-repeat top center;
    background-size: cover;
    padding-top: 116px;
}

.cnw {
    font-family: 'Noto Sans SC';
}

.notice-sec {
    padding: 15px 10px;
}

.notice-wrapper {
    font-family: 'B612';
    font-size: 13px;
    line-height: 1;
    max-width: 1200px;
    height: 44px;
    margin: auto;
    display: flex;
    align-items: center;
    background: #f3f6fd;
    padding: 5px 15px;
    border-radius: 35px;
    border: 2px solid #fedaa2;
    box-shadow: 0 4px 0px #e3e3e3, 0 2px 4px #a1a1a1;
}

span.speaker-icon {
    margin-right: 15px;
    font-size: 12px;
}

.game-product {
    padding: 15px 0 30px;
}

.title-wrap {
    text-align: center;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 20px 0;
    overflow: hidden;
}

    .title-wrap::before {
        content: '';
        background: url("../images/line-1.png")no-repeat;
        background-size: 100%;
        width: 503px;
        height: 39px;
        position: absolute;
        left: 0;
    }

    .title-wrap::after {
        content: '';
        background: url("../images/line-2.png")no-repeat;
        background-size: 100%;
        width: 503px;
        height: 39px;
        position: absolute;
        right: 0;
    }

.title-1 {
    color: #4d5061;
    font-family: 'Impact';
    text-transform: uppercase;
    font-size: 34px;
}

.title-1-cn {
    font-family: 'Noto Sans SC';
    font-size: 20px;
}

.product-container {
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 0 15px;
    padding: 15px 0;
}

.product-tab-outer {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-radius: 10px;
    border-bottom: 2px solid #dadfea;
    height: max-content;
    padding-bottom: 10px;
}

.product-tab-menu {
    position: relative;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    padding: 15px 0;
    border: 2px solid #dadfea;
    border-radius: 10px;
    z-index: 1;
}

.nav-tabs.product-tabs {
    flex-flow: column;
    border: none;
}

    .nav-tabs.product-tabs .nav-item {
        margin-bottom: 10px;
    }

    .nav-tabs.product-tabs .nav-link {
        position: relative;
        z-index: 1;
        display: block;
        padding: 2px;
        border-radius: 35px;
        background: #d1d6e3;
        max-width: 165px;
        margin: auto;
        text-align: center;
        border: none;
        color: #000;
        height: 60px;
    }

        .nav-tabs.product-tabs .nav-link::before {
            content: '';
            background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
            border-radius: 35px;
            border: 2px solid #d5dae9;
            height: 100%;
            width: 100%;
            position: absolute;
            left: 0;
            right: 0;
            top: 4px;
            z-index: -1;
        }

        .nav-tabs.product-tabs .nav-link .nav-link-inner {
            background: #e0e5f4;
            border-radius: 35px;
            height: 100%;
            display: grid;
            grid-template-columns: auto 40%;
            align-items: center;
            padding: 0 10px 0 15px;
            line-height: 1.2;
            border-bottom: 2px solid #d1d6e3;
        }

        .nav-tabs.product-tabs .nav-item.show .nav-link, .nav-tabs.product-tabs .nav-link.active {
            color: #000 !important;
            background: linear-gradient(to bottom, rgba(237,249,252,1) 0%, rgba(183,224,249,1) 100%) !important;
        }

            .nav-tabs.product-tabs .nav-item.show .nav-link .nav-link-inner, .nav-tabs.product-tabs .nav-link.active .nav-link-inner {
                background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
                border-bottom: 2px solid #b8e0f9 !important;
            }

            .nav-tabs.product-tabs .nav-link.active::before {
                content: '';
                background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
                border: 2px solid #418ecd !important;
            }

a.home-lotto {
    display: block;
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-radius: 8px;
    border-bottom: 2px solid #dadfea;
    padding-bottom: 3px;
}

.home-lotto-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    padding: 15px 0;
    border: 2px solid #dadfea;
    border-radius: 8px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px 10px;
    max-height: 550px;
    overflow: auto;
}

    .product-wrapper::-webkit-scrollbar {
        width: 4px;
    }

    .product-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .product-wrapper::-webkit-scrollbar-thumb {
        background: #D2D2D2;
        border-radius: 10px;
    }

        .product-wrapper::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.prod-outer {
    position: relative;
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%);
    border-radius: 10px;
    border-bottom: 1px solid #4993cc;
    padding-bottom: 8px;
}

a.prod-item {
    display: block;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #c8d5e6;
    border-bottom: 0;
    z-index: 1;
}

    a.prod-item:hover .prd-img {
        transform: scale(1.03);
        filter: brightness(1.07);
        transition: 0.3s;
    }

.product-wrapper.slots a.prod-item::after {
    content: 'SLOT';
    font-family: 'Alternate';
    position: absolute;
    color: #c3cada;
    font-size: 107px;
    opacity: 25%;
    left: 4%;
    top: -15px;
}

.product-wrapper.casino a.prod-item::after {
    content: 'LIVE';
    font-family: 'Alternate';
    position: absolute;
    color: #c3cada;
    font-size: 107px;
    opacity: 40%;
    left: 4%;
    top: -15px;
}

.product-wrapper.sports a.prod-item::after {
    content: 'SPORTS';
    font-family: 'Alternate';
    position: absolute;
    color: #c3cada;
    font-size: 98px;
    opacity: 40%;
    left: 4%;
    top: -15px;
}

.product-wrapper.esports a.prod-item::after {
    content: 'ESPORTS';
    font-family: 'Alternate';
    position: absolute;
    color: #c3cada;
    font-size: 88px;
    opacity: 40%;
    left: 4%;
    top: -15px;
}

.product-wrapper.fishing a.prod-item::after {
    content: 'FISH';
    font-family: 'Alternate';
    position: absolute;
    color: #c3cada;
    font-size: 107px;
    opacity: 40%;
    left: 4%;
    top: -15px;
}

.prd-img {
    position: relative;
    text-align: right;
    z-index: 2;
    padding: 0 1px 1px 0;
    transition: 0.3s;
}

.prod-logo-img {
    position: absolute;
    z-index: 3;
    left: 3%;
    bottom: 12px;
    max-width: 100px;
}

    .prod-logo-img img {
        max-height: 45px;
    }

.base-prod {
    background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%);
    box-shadow: 0 -4px 40px -11px rgb(0 0 0 / 20%);
    height: 75px;
    border: 2px solid #fff;
    border-radius: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.vip-home {
    padding: 15px 0 0;
}

.home-vip {
    display: flex;
}

.vip-deco {
    position: absolute;
    right: 0;
    top: 32%;
    max-width: 11%;
}

.vip-img {
    max-width: 800px;
    margin-top: -55px;
}

.vip-text {
    margin-left: -26px;
    margin-top: 45px;
}

.vip-step {
    font-family: 'Impact';
    color: #4d5061;
    font-size: 40px;
    padding-bottom: 15px;
}

.list-point {
    display: flex;
    align-items: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.tick-gold {
    max-width: 50px;
    margin-right: 15px;
}

button.base-btn {
    background: linear-gradient(to bottom, rgba(237,249,252,1) 0%, rgba(183,224,249,1) 100%);
    position: relative;
    padding: 2px;
    border-radius: 35px;
    min-width: 180px;
    margin: auto;
    text-align: center;
    border: none;
    color: #000;
    height: 50px;
    font-weight: 500;
    font-size: 18px;
    z-index: 1;
    box-shadow: 0 2px 15px rgb(0,0,0,0.25);
    transition: 0.1s;
}

    button.base-btn::before {
        content: '';
        background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%);
        border: 2px solid #418ecd;
        border-radius: 35px;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 4px;
        z-index: -1;
    }

.inner-base {
    background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%);
    border-bottom: 2px solid #b8e0f9;
    border-radius: 35px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    line-height: 1.2;
}

button.base-btn:hover {
    transform: scale(0.98);
    filter: brightness(1.03);
    transition: 0.1s;
}

.feature-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
    max-width: 1190px;
    margin: auto;
    padding: 10px 0;
}

.feature-box {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-radius: 8px;
    border-bottom: 1px solid #d1d6e3;
    max-width: 285px;
    margin: auto;
    height: 100%;
    min-height: 325px;
}

.feature-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    width: 100%;
    height: 98%;
    border-bottom: 1px solid #d1d6e3;
    text-align: center;
    padding: 25px 15px 15px;
    border-radius: 8px;
}

.feature-title {
    position: relative;
    font-family: 'Impact';
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #8b8d90;
    text-shadow: 1px 1px white, -1px -1px rgb(0 0 0 / 15%);
    min-height: 51px;
}

.ft-icon {
    padding-bottom: 10px;
}

.ft-caption {
    text-align: left;
    font-size: 13px;
    padding: 5px 0;
    color: #000;
    line-height: 1.2;
}

/** Info Page **/
.info-page {
    padding: 30px 0;
}

.info-container {
    display: grid;
    grid-template-columns: 250px auto;
    grid-gap: 15px;
}

.product-tab-menu.info-menu {
    padding: 25px 5px 15px;
}

.nav-tabs.product-tabs .nav-link .nav-link-inner.info {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
}

.nav-tabs.product-tabs.info-tabs .nav-link {
    max-width: 200px;
    height: 45px;
}

.info-content {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-radius: 8px;
    border: 1px solid #d1d6e3;
    height: 100%;
    overflow: hidden;
    padding-bottom: 8px;
    max-width: 1000px;
    margin: auto;
    width: 100%;
}

.info-content-innner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #d1d6e3;
    padding: 45px;
    border-radius: 0 0 8px 8px;
}

    .info-content-innner .title-1 {
        padding-bottom: 30px
    }

    .info-content-innner .title-2 {
        font-weight: 600;
        font-size: 16px;
    }

ul.terms, ol.terms {
    padding-left: 17px;
}

table.banking-table {
    text-align: center;
    color: #191919;
}

    table.banking-table tr th {
        background: #3f434f;
        color: #fff;
        padding: 7px 5px;
        border: 1px solid #3f434f;
    }

    table.banking-table tr td {
        background: #ecf0fb;
        padding: 7px 5px;
        border: 1px solid #3f434f;
    }

.tnc-card {
    margin-bottom: 7px;
}

.tnc-body {
    padding: 10px 10px;
}

button.btn-tnc {
    background: #eef2fb;
    border: 1px solid #cdd4ea;
    border-radius: 5px;
    padding: 6px 10px;
    width: 100%;
    text-align: left;
}

/** Register / Login **/
.reg-container {
    display: grid;
    grid-template-columns: 54% 46%;
    align-items: center;
}

.reg-img-wrap {
    margin-left: -10%;
}

.title-wrap.short::before {
    content: '';
    background: url("../images/line-short-1.png")no-repeat;
    background-size: 100%;
    width: 239px;
    height: 39px;
    position: absolute;
    left: 0;
}

.title-wrap.short::after {
    content: '';
    background: url("../images/line-short-2.png")no-repeat;
    background-size: 100%;
    width: 239px;
    height: 39px;
    position: absolute;
    right: 0;
}

form.reg-form {
    text-align: center;
    max-width: 350px;
    margin: auto;
}

    form.reg-form .reg-input, form.reg-form select.reg-input {
        text-align: center;
    }

.rf-wrap {
    position: relative;
    margin-bottom: 5px;
    background: linear-gradient(to bottom, rgba(248,251,254,1) 0%, rgba(224,237,249,1) 18%, rgba(208,223,236,1) 51%, rgba(224,237,249,1) 82%, rgba(248,251,254,1) 100%);
    box-shadow: 0 3px 5px #bfcfd5;
    border-radius: 35px;
    height: 40px;
    padding: 5px 15px;
}

input.reg-input, select.reg-input {
    position: relative;
    background: none;
    border: none;
    padding: 6px;
    color: #393a3a;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.dropdown-input {
    position: relative;
}

    .dropdown-input::after {
        content: "\f107";
        font-family: 'Font Awesome 5 Free';
        font-weight: 700;
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 18px;
        color: #505050;
        pointer-events: none;
    }

.rf-wrap.phone {
    display: flex;
    align-content: center;
}

    .rf-wrap.phone .dropdown-input::after {
        top: 5px;
    }

    .rf-wrap.phone select.reg-input {
        width: 100px;
        text-align: left;
        border-right: 1px solid #B9B9B9;
        padding-right: 10px;
    }

    .rf-wrap.phone input.reg-input {
        text-align: left;
        padding: 0 15px;
    }

.vcode {
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

span.field-icon {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 15px;
    color: #7E7E7E;
}

.login-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5px;
}

.check-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.check-group label {
    position: relative;
    cursor: pointer;
    margin: 0;
}

    .check-group label:before {
        content: '';
        -webkit-appearance: none;
        background-color: #fff;
        border: 2px solid #d7dbe7;
        border-radius: 7px;
        padding: 10px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 5px;
    }

.check-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #4d5061;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

a.forgot-link {
    color: #1b1e1e;
}

.regnow {
    padding-top: 20px;
}

    .regnow a {
        border-bottom: 1px solid #1F1F1F;
        color: #1b1e1e;
    }

.login-wrapper {
    margin-top: -15%;
}

.title-wrap.medium::before {
    left: -7%;
}

.title-wrap.medium::after {
    right: -7%;
}

.info-content.activation {
    max-width: 550px;
    text-align: center;
}

    .info-content.activation .info-content-innner {
        padding: 25px 10px;
        color: #4d5061;
    }

.acc-title {
    font-size: 22px;
    font-weight: 500;
}

.succss-box {
    font-size: 110px;
    color: #43a047;
}

.congratz {
    font-weight: 500;
    font-size: 21px;
}

.info-content.active-wrap {
    max-width: 900px;
}

    .info-content.active-wrap .info-content-innner {
        padding: 25px 15px;
    }

.method-text {
    text-align: center;
    padding-bottom: 15px;
}

.nav-tabs.nav-reg {
    border: none;
    justify-content: center;
}

    .nav-tabs.nav-reg .nav-item {
        margin: 0 5px;
    }

    .nav-tabs.nav-reg .nav-link {
        color: #495057;
        background: #eef2fb;
        border: 1px solid #cdd4ea;
        border-radius: 5px;
        padding: 6px 10px;
        width: 150px;
        text-align: center;
        color: #000;
        margin: 5px 0;
    }

        .nav-tabs.nav-reg .nav-item.show .nav-link, .nav-tabs.nav-reg .nav-link.active {
            background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
            color: #000 !important;
        }

.step-box {
    background: #e0e5f4;
    border: 1px solid #d5dae9;
    max-width: 460px;
    box-shadow: inset 0px 1px 7px -4px rgb(0 0 0 / 30%);
    border-radius: 5px;
    padding: 15px;
    margin: 15px auto;
}

.step-row {
    padding-bottom: 10px;
}

.enter-text {
    text-align: center;
    padding-bottom: 10px;
}

.sms-activate {
    text-align: center;
}

    .sms-activate input {
        max-width: 45px;
        height: 45px;
        display: inline-block;
        margin: auto 5px;
        text-align: center;
        border-radius: 5px;
        border: 1px solid #feb501;
        font-size: 22px;
        font-weight: 600;
        color: #252525;
    }



/** Promotion **/
.promo-top {
    background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(225,233,240,1) 100%);
    text-align: center;
    padding: 10px 0 0;
}

.mix {
    display: none;
}

.filter-sec {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    padding-bottom: 7px;
}

.filter-menu {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    text-align: center;
    padding: 10px 10px;
}

.pmbox {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 1px;
    border-radius: 35px;
    background: #d1d6e3;
    min-width: 120px;
    margin: 5px 3px;
    text-align: center;
    border: none;
    color: #000;
    font-size: 14px;
    height: 40px;
    cursor: pointer;
}

.pmbox-inner {
    background: #e0e5f4;
    border-radius: 35px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    line-height: 1.2;
    border-bottom: 2px solid #d1d6e3;
}

.pmbox ::before {
    content: '';
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-radius: 35px;
    border: 1px solid #d5dae9;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    z-index: -1;
}

.pmbox.active .pmbox-inner::before, .pmbox:hover .pmbox-inner::before {
    content: '';
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
    border: 2px solid #418ecd !important;
}

.pmbox.active, .pmbox:hover {
    color: #000 !important;
    background: linear-gradient(to bottom, rgba(237,249,252,1) 0%, rgba(183,224,249,1) 100%) !important;
}

    .pmbox.active .pmbox-inner, .pmbox:hover .pmbox-inner {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border-bottom: 2px solid #b8e0f9 !important;
    }

.promo-content-area {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    padding: 30px 0;
}

.promo-bx {
    margin-bottom: 417px;
    margin: auto;
}

.pm-img {
    overflow: hidden;
    border-radius: 8px 8px 0px 0px;
}

    .pm-img img {
        transition: 0.3s;
    }

.promo-base {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    padding-bottom: 6px;
    border-radius: 6px;
    position: relative;
}

.promo-base-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    padding: 5px 15px;
    border-radius: 6px;
    min-height: 55px;
    display: flex;
    align-items: center;
    color: #000;
}

.promo-bx:hover .pm-img img {
    transform: scale(1.05);
    transition: 0.3s;
}

/** After Login page **/
.aflogin-sec {
    padding: 20px 0;
}

.aflogin-container {
    display: grid;
    grid-template-columns: 240px auto;
    grid-gap: 30px;
    padding: 0 10px;
    max-width: 1300px;
    margin: 0 auto;
}

.vip-wallet {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border: 1px solid #dadfea;
    border-top: 1px solid #dadfea;
    border-radius: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.vip-wallet-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 10px;
    text-align: center;
    padding: 15px 18px 25px;
    border: 1px solid #dadfea;
}

.vip-name-player {
    font-weight: 500;
    padding: 2px 0;
}

.welcome-user-side {
    font-size: 16px;
    font-weight: 600;
}

.divider-af {
    background: #656565;
    height: 0.5px;
    max-width: 70%;
    margin: 10px auto 20px;
    box-shadow: 0px 2px 2px rgb(255 255 255 / 33%);
}

.wallet-bal {
    font-size: 13px;
}

.ttamt {
    font-size: 21px;
    font-weight: 700;
}

.mobile-depo-prod {
    display: none;
}

.topmain-btn {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 8px;
    text-align: center;
    margin-bottom: 14px;
}

a.tpm-btn {
    display: block;
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d5dae9;
    padding-bottom: 4px;
    border-radius: 8px;
    color: #000;
    font-size: 13px;
}

.tpm-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 8px;
    border: 1px solid #d1d6e3;
    padding: 5px 2px 6px;
}

a.tpm-btn.active {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
}

    a.tpm-btn.active .tpm-inner {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border-bottom: 1px solid #b8e0f9 !important;
        color: #000 !important;
    }

.tpm-inner img {
    filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
    max-height: 42px;
    margin-bottom: 4px;
}

.product-tab-menu.af-menu {
    padding: 15px 13px;
}

.nav-tabs.product-tabs .nav-link .nav-link-inner.afmenu {
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 8px;
    font-size: 13px;
    text-align: left;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
}

.nav-link-inner.afmenu .af-icon img {
    filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
}

.mobile-quick-menu {
    display: none;
}

.info-content-innner.aflogin {
    padding: 20px 30px 35px;
}

.grad-btn {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 2px solid #d5dae9;
}

.grad-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border: 2px solid #d1d6e3;
}

.grad-btn.active {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
    border-bottom: 2px solid #418ecd !important;
}

    .grad-btn.active .grad-inner {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border: 2px solid #b8e0f9 !important;
    }

.depo-method-wrap {
    padding-bottom: 20px;
}

a.depo-btn {
    display: inline-block;
    border-radius: 30px;
    color: #000;
    padding-bottom: 3px;
    min-width: 180px;
    text-align: center;
    margin-right: 10px;
    text-transform: uppercase;
}

    a.depo-btn .grad-inner {
        border-radius: 30px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.bank-account-option {
    display: flex;
    align-items: center;
    padding: 10px 0 20px;
}

.bank-pay {
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.input-hide input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}

.bank-acct-btn {
    position: relative;
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    min-width: 200px;
    text-align: center;
    border-radius: 35px;
    border-bottom: 2px solid #d1d6e3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    cursor: pointer;
    padding-bottom: 6px;
}

    .bank-acct-btn::before {
        content: '';
        background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
        border-radius: 35px;
        border: 2px solid #d5dae9;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: -3px;
        z-index: 0;
        pointer-events: none;
    }

    .bank-acct-btn img {
        position: relative;
    }

.input-hide[type="radio"],
.input-hide input[type="checkbox"] {
    appearance: none;
    display: none;
}

.input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
    border-bottom: 2px solid #418ecd !important;
}

    .input-hide input:active + .bank-acct-btn::before, .input-hide input:checked + .bank-acct-btn::before {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border: 2px solid #b8e0f9 !important;
    }

.game-page {
    padding: 30px 0;
}

.product-depo-wrapper {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 10px;
    padding: 15px 0 30px;
}

.prod-depo {
    position: relative;
}

.depo-prod-btn img {
    position: relative;
    max-height: 36px;
    filter: brightness(2.2);
}

.depo-prod-btn .main-text {
    position: relative;
    color: #97989d;
    font-size: 18px;
    font-weight: 500;
}

.depo-prod-btn {
    position: relative;
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    text-align: center;
    border-radius: 8px;
    border-bottom: 2px solid #d1d6e3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    cursor: pointer;
    max-width: 150px;
    padding-bottom: 6px;
}

    .depo-prod-btn::before {
        content: '';
        background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
        border-radius: 8px;
        border: 2px solid #d5dae9;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: -3px;
        z-index: 0;
        pointer-events: none;
    }

.input-hide input:active + .depo-prod-btn, .input-hide input:checked + .depo-prod-btn {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
    border-bottom: 2px solid #418ecd !important;
}

    .input-hide input:active + .depo-prod-btn::before, .input-hide input:checked + .depo-prod-btn::before {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border: 2px solid #b8e0f9 !important;
    }

.rf-wrap.amt {
    margin: 10px 0 0;
    max-width: 400px;
}

.depo-amount-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    max-width: 440px;
    grid-gap: 0px 5px;
    padding: 20px 0 30px;
}

.depo-prod-btn.dpamt {
    height: 40px;
    max-width: 110px;
}

    .depo-prod-btn.dpamt .main-text {
        font-size: 15px;
        color: #585858;
        font-weight: 400;
    }

.form-label {
    padding-left: 5px;
}

.rf-wrap.afwrap {
    margin: 10px 0 30px;
    max-width: 400px;
}

.check-group a {
    color: #3f434f;
    font-weight: 500;
}

.bank-info-depo {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border: 2px solid #d5dae9;
    padding: 10px;
    max-width: 600px;
    margin-bottom: 30px;
    border-radius: 7px;
}

table.bank-depo {
    text-align: left;
}

    table.bank-depo tr td {
        padding: 4px 5px;
    }

a.copy-icon {
    color: #000;
    font-size: 16px;
    margin-left: 5px;
}

label.bank-acct-btn.banking {
    min-width: 60px;
    height: 60px;
    border-radius: 5px;
}

.bank-acct-btn.banking::before {
    border-radius: 5px;
}

.bank-acct-btn.banking img {
    max-height: 50px;
}

.upload-input {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.rf-wrap.upload {
    width: 100%;
    margin-right: 5px;
    max-width: 255px;
}

.af-field {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    padding-bottom: 30px;
}

button.base-btn.upload-btn {
    height: 40px;
    min-width: 140px;
    margin: 0 0 5px 3px;
    box-shadow: none;
    font-size: 15px;
    font-weight: 400;
}

    button.base-btn.upload-btn::before {
        top: 2px;
    }

.rf-wrap.wdnone {
    max-width: 400px;
}

button.copy-name {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border: none;
    border-radius: 0 40px 40px 0;
    width: 45px;
    font-size: 15px;
    color: #3f434f;
}

.bank-user {
    text-align: center;
    max-width: 740px;
    margin: auto;
    font-size: 13px;
}

table.gold-user-table tr th {
    background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
    color: #fff;
    border: 1px solid transparent;
    padding: 8px 5px;
    font-weight: 400;
}

table.gold-user-table tr td {
    background: #ededed;
    border: 1px solid #fff;
    color: #000;
    padding: 7px 5px;
}

.btitle-top {
    position: relative;
    box-shadow: 0 3px 5px rgb(219 164 97 / 40%);
}

.wd-wrapper {
    margin: 30px auto 0;
}

.field-wrap {
    display: grid;
    grid-template-columns: 160px auto;
    align-items: center;
    max-width: 565px;
    margin: 0 auto 10px;
}

.history-search-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 10px;
}

.search-btn-wrap {
    padding-left: 10px;
}

.history-result {
    text-align: center;
    margin: 30px auto 0;
    max-width: 900px;
    overflow: auto;
}

.green-text {
    color: #35c743;
}

.red-text {
    color: #c73535;
}

.history-btn-wrapper {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 10px;
    padding: 15px 0 15px;
}

    .history-btn-wrapper .depo-prod-btn {
        border-radius: 35px;
    }

        .history-btn-wrapper .depo-prod-btn::before {
            border-radius: 35px;
        }

.depo-prod-btn .his-text {
    position: relative;
    color: #000;
    font-size: 16px;
}

.mail-wrapper {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-radius: 8px;
    padding-bottom: 8px;
}

.mail-inner-wrapper {
    background: #e0e5f4;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e2e1ee;
}

.inbox-field {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    display: grid;
    grid-template-columns: 20% 70% 10%;
    align-items: center;
    padding: 10px 5px;
    border: 1px solid #d1d6e3;
    margin-bottom: 5px;
    color: #242424;
    min-height: 80px;
}

    .inbox-field.top-title {
        background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
        color: #fff;
        border-radius: 2px;
        border: 2px solid #fff;
        margin: 0;
        min-height: inherit;
    }

    .inbox-field.unread {
        font-weight: 700;
    }

.datetime {
    padding: 5px;
    font-size: 13px;
}

.delete-box {
    text-align: center;
}

.delete-msg img {
    max-height: 22px;
    filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
}

.subject-box {
    cursor: pointer;
}

.load-wrap {
    margin-top: 30px;
}

button.load-btn {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border: none;
    border-bottom: 1px solid #d5dae9;
    border-radius: 40px;
    padding: 0 0 3px 0;
}

.load-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 40px;
    border: 1px solid #d1d6e3;
    padding: 6px 25px;
    min-width: 150px;
    font-size: 13px;
}

button.load-btn:hover {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
    border-bottom: 1px solid #418ecd !important;
}

    button.load-btn:hover .load-inner {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border: 1px solid #b8e0f9 !important;
    }

.bank-field {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    display: grid;
    grid-template-columns: 20% 20% 25% 25% 10%;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
    border: 1px solid #d1d6e3;
    margin-bottom: 5px;
    color: #242424;
    min-height: 60px;
    font-size: 13px;
}

    .bank-field.top-title {
        background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
        color: #fff;
        border-radius: 2px;
        border: 2px solid #fff;
        margin: 0;
        min-height: inherit;
    }

.add-bank-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-size: 13px;
    padding-bottom: 15px;
}

button.base-btn.bank {
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    margin: 0;
    box-shadow: none;
}

    button.base-btn.bank::before {
        top: 2px;
    }

.note-pw {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: #cc3535;
    padding: 0 5px;
}

.trans-field {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.tranmx {
    max-width: 400px;
    width: 100%;
}

.switch-icon {
    text-align: center;
    padding-top: 15px;
    margin: 0 15px;
    min-width: 35px;
}

    .switch-icon img {
        filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
    }

.trans-field-2 {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    padding-bottom: 20px;
}

.max-btn-wrap {
    padding-top: 12px;
}

button.base-btn.transfer-btn {
    font-size: 15px;
    height: 40px;
    box-shadow: none;
}

    button.base-btn.transfer-btn::before {
        top: 2px;
    }

.mail-wrapper.balance-trans {
    margin-top: 30px;
}

.ambox {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d5dae9;
    padding-bottom: 3px;
    border-radius: 8px;
}

.ambox-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 8px;
    border: 1px solid #d1d6e3;
    padding: 6px 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.wallet-out-wrapper {
    display: flex;
    align-items: center;
}

.ambox.mainwallet {
    max-width: 300px;
    width: 100%;
}

    .ambox.mainwallet .ambox-inner {
        height: 65px;
        justify-content: center;
        text-align: center;
    }

.provider-amt-wrapper {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 5px 10px;
}

.logo-trans {
    background: rgb(0,0,0,0.22);
    border-radius: 8px;
    box-shadow: inset 0px 1px 2px 0px rgb(0 0 0 / 35%);
    margin-right: 10px;
    max-width: 48px;
}

/** VIP **/
.vip-page {
    padding-bottom: 30px;
}

.title-1.vip {
    font-size: 28px;
}

.vip-wrapper {
    overflow: auto;
    text-align: center;
    color: #444;
    margin-bottom: 20px;
}

table.vip-table tr th {
    background: linear-gradient(to bottom, rgba(246,202,145,1) 0%, rgba(221,166,102,1) 100%);
    border: 2px solid #d7dbe7;
    font-size: 18px;
    padding: 3px 10px;
}

table.vip-table tr td {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border: 2px solid #d7dbe7;
    padding: 5px 3px;
}

    table.vip-table tr td:first-child {
        text-align: left;
        padding-left: 10px;
    }

    table.vip-table tr td a {
        color: #c47308;
    }

        table.vip-table tr td a:hover {
            text-decoration: underline;
            color: #000;
        }

.vip-terms {
    padding-top: 30px;
}

.vip-term-title {
    font-weight: 700;
    padding-bottom: 10px;
}

.vip-mobile {
    display: none;
    text-align: center;
    font-size: 14px;
}

table.vip-table.mobile tr th {
    font-size: 14px;
    text-align: center;
    padding: 5px;
}

table.vip-table.mobile tr td:first-child {
    width: 65%;
}

.vip-card {
    margin-bottom: 5px;
}

.vip-header {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d5dae9;
    padding-bottom: 3px;
    border-radius: 8px;
}

a.vip-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #444;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 8px;
    border: 1px solid #d1d6e3;
    padding: 2px 5px;
}

.vip-link:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 15px;
    position: absolute;
    right: 20px;
    top: 14px;
    transition: 0.3s;
    color: #444;
}

.vip-link.collapsed:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
}

a.vip-link img {
    max-height: 45px;
    margin-right: 15px;
}

.vip-mobile-wrapper {
    padding: 5px 0;
}

/** 4D **/
.lotto-page {
    padding: 30px 0;
}

img.mobile-img {
    display: none;
}

.luck-spin-wrap {
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.lucky-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 25%;
}

.spin-number-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 38%;
    font-size: 72px;
    font-weight: 700;
}

    .spin-number-wrap span {
        padding: 0 15px;
    }

.lotto-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    filter: drop-shadow(0px 15px 7px rgb(0,0,0,0.4));
}

.spinbtn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 61%;
}

button.spin-btn {
    background: none;
    border: none;
    transition: 0.1s;
}

    button.spin-btn:hover {
        transform: scale(0.98);
        transition: 0.1s;
    }

.payout-btn-wrap {
    text-align: center;
    padding: 20px 0;
}

button.base-btn.payout {
    background: linear-gradient(to bottom, rgba(246,202,145,1) 0%, rgba(221,166,102,1) 100%);
}

    button.base-btn.payout::before {
        content: '';
        background: #d39e62;
        border: 2px solid #dca564;
    }

    button.base-btn.payout .inner-base {
        background: linear-gradient(to bottom, rgba(246,202,145,1) 0%, rgba(221,166,102,1) 100%);
        border-bottom: 2px solid #bd915d;
    }

.payout-btn-wrap button {
    margin: 5px 10px;
}

.date-search-wrap {
    position: relative;
    max-width: 370px;
    margin: 15px auto;
}

button.search-btn {
    background: linear-gradient(to bottom, rgba(246,202,145,1) 0%, rgba(221,166,102,1) 100%);
    border: none;
    border-radius: 0 40px 40px 0;
    height: 40px;
    width: 50px;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
}

.lotto-result-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px 10px;
    max-width: 950px;
    margin: 0 auto;
    padding: 15px 0 0;
}

.rstable-wrap {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d5dae9;
    border-radius: 6px;
    padding-bottom: 5px;
    max-width: 300px;
}

.rstable {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 6px;
    border: 1px solid #fefefe;
    padding: 5px;
}

.lotto-header {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.result-date {
    font-size: 13px;
}

table.lotto-table {
    text-align: center;
    font-weight: 500;
}

    table.lotto-table tr.lotto-header td {
        border: none;
        padding: 5px 10px;
    }

tr.lotto-header img {
    max-height: 44px;
}

table.lotto-table.top tr td:first-child {
    background: #d5d8e3;
}

table.lotto-table tr th {
    background: #d5d8e3;
    border: 1px solid #c6c8cd;
    padding: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

table.lotto-table tr td {
    background: #e0e5f4;
    border: 1px solid #c6c8cd;
    padding: 2px;
}

.magnum table.lotto-table tr.lotto-header td {
    color: #000;
    background: #ffea00;
}

.dmc table.lotto-table tr.lotto-header td {
    color: #fff;
    background: #1a1a84;
}

.toto table.lotto-table tr.lotto-header td {
    color: #fff;
    background: #fb0206;
}

.sg table.lotto-table tr.lotto-header td {
    color: #fff;
    background: #1f76dc;
}

.sabah table.lotto-table tr.lotto-header td {
    color: #fff;
    background: #ff0000;
}

.bigsweep table.lotto-table tr.lotto-header td {
    color: #fff;
    background: #003c10;
}
/** Mobile Lotto **/
.lottery-mobile {
    display: none;
}

ul.lt-wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 2px;
    border-bottom: 2px solid #e8b678;
    padding: 0 2px;
    text-align: center;
}

.nav-tabs.lt-wrap .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
}

    .nav-tabs.lt-wrap .nav-item.show .nav-link, .nav-tabs.lt-wrap .nav-link.active {
        color: #495057;
        background-color: transparent;
    }

li.lt-item {
    position: relative;
    padding-bottom: 22px;
}

ul.lt-wrap li a.active:after {
    content: "";
    color: #e8b678;
    position: absolute;
    border-top: 0;
    border-right: 0.7em solid transparent;
    border-bottom: 0.7em solid;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}

.result-boxes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.prize {
    background: #d5d8e3;
    font-weight: 500;
    font-size: 16px;
    padding: 3px 2px;
}

.result-tt {
    padding: 7px 2px;
    font-weight: 500;
    font-size: 16px;
    background: #e0e5f4;
}

.result-boxes-1 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-ttt {
    padding: 3px 2px;
    font-weight: 500;
    font-size: 14px;
    background: #e0e5f4;
}

.table-in div {
    padding: 5px 0;
}

.table-in {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-box {
    border: 1px solid #c6c8cd;
}

.date-box {
    padding: 10px 0px;
    font-size: 15px;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    text-align: center;
}

span#resultDate {
    vertical-align: middle;
}

/** Product Page **/
.product-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.prod-img-wrap {
    position: relative;
}

.float-element {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

@-webkit-keyframes float {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.float-element.sports {
    top: 30%;
}

.prod-title-box {
    text-align: center;
}

    .prod-title-box.slots {
        margin-top: 37%;
    }

.dl-game-wrap {
    margin: 10px 0 0;
}

button.app-btn {
    background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
    box-shadow: inset 0px -1px 3px rgb(0 0 0 / 15%), 0px 2px 5px rgb(0 0 0 / 20%);
    border: 2px solid #fff;
    border-radius: 40px;
    height: 42px;
    padding: 5px 10px;
    min-width: 140px;
    color: #444;
    font-size: 15px;
    margin: 0 5px;
}

    button.app-btn i {
        font-size: 20px;
        margin-right: 10px;
    }

.play-btn-wrap {
    padding-top: 30px;
}

button.app-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.03);
}

.product-menu-wrapper {
    position: absolute;
    top: 0;
    right: 0;
}

    .product-menu-wrapper.casino {
        top: 5%;
    }

    .product-menu-wrapper.sports {
        top: 15%;
    }

.nav-tabs.nav-product {
    border-bottom: none;
    width: 640px;
    margin: auto;
    text-align: center;
    justify-content: center;
}

    .nav-tabs.nav-product .nav-item {
        margin-bottom: 0;
        width: 19%;
        margin: 3px 2px;
    }

    .nav-tabs.nav-product .nav-link {
        display: inline-block;
        border-radius: 30px;
        color: #000;
        padding: 0;
        padding-bottom: 3px;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
        background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
        border: none;
        border-bottom: 1px solid #d5dae9;
    }

        .nav-tabs.nav-product .nav-link .nav-inner {
            background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
            border: 2px solid #d1d6e3;
            border-radius: 30px;
            padding: 5px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-tabs.nav-product .nav-item.show .nav-link, .nav-tabs.nav-product .nav-link.active {
            background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
            border-bottom: 1px solid #418ecd;
        }

            .nav-tabs.nav-product .nav-item.show .nav-link .nav-inner, .nav-tabs .nav-link.active .nav-inner {
                background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
                border: 1px solid #b8e0f9;
            }

.nav-inner img {
    max-height: 32px;
}

/** Download page**/
.download-sec {
    padding: 0 0 30px;
}

.nav-tabs.nav-download {
    border: none;
}

    .nav-tabs.nav-download .nav-item {
        width: 50%;
    }

    .nav-tabs.nav-download .nav-link {
        background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
        text-align: center;
        border: none;
        border-radius: 0;
        padding: 12px 2px;
        color: #000;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
    }

        .nav-tabs.nav-download .nav-item.show .nav-link, .nav-tabs.nav-download .nav-link.active {
            background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
            color: #fff;
        }

.download-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px 5px;
    text-align: center;
}

.dlprod-img {
    position: relative;
}

.logo-prod {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2%;
    filter: drop-shadow(0px 0px 2px #fff) drop-shadow(0px 1px 3px #fff) drop-shadow(0px 2px 5px #fff);
}

button.base-btn.playnow, button.base-btn.download {
    min-width: auto;
    font-size: 14px;
    height: 40px;
    width: 45%;
    margin: 0 3px;
}

    button.base-btn.playnow .inner-base, button.base-btn.download .inner-base {
        padding: 0 2px;
    }

    button.base-btn.playnow::before {
        top: 2px;
    }

button.base-btn.download {
    background: linear-gradient(to bottom, rgba(255,233,201,1) 0%, rgba(222,168,101,1) 100%);
}

    button.base-btn.download .inner-base {
        background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
        border-bottom: 2px solid #cc9e65;
    }

    button.base-btn.download::before {
        background: linear-gradient(to right, rgba(201,146,87,1) 0%, rgba(230,196,159,1) 51%, rgba(201,146,87,1) 100%);
        border: 2px solid #9e6325;
    }



/** Dark Mode **/
.dark-mode .t-header {
    box-shadow: 0 3px 15px -1px #191713;
}

.dark-mode .t-body {
    background: #20211c url(../images/bg-dark.jpg)no-repeat top center;
    background-size: 100%;
}

.dark-mode .logo img.dark {
    display: initial;
}

.dark-mode .logo img.light {
    display: none;
}

.dark-mode .header-bottom {
    background: linear-gradient(to bottom, rgba(21,19,14,1) 0%, rgba(39,41,39,1) 100%);
}

.dark-mode ul.nav.main-nav li.nav-item a.nav-link {
    color: #f4c88e;
}

.dark-mode img.menu-icon {
    filter: none;
}

.dark-mode button.comm-btn, .dark-mode button.gold-btn {
    box-shadow: none;
}

.dark-mode .switch-mobile-btn {
    box-shadow: none;
}

.dark-mode .right-menu a {
    color: #f4c88e;
}

.dark-mode button.mobile-menu-btn {
    color: #fff;
}

.dark-mode .welcome-user {
    color: #fff;
}

.dark-mode .title-1, .dark-mode .title-1-cn {
    color: #f4c88e;
}

.dark-mode .product-tab-menu {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 2px solid #35383d;
}

.dark-mode .product-tab-outer {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 2px solid #141311;
}

.dark-mode .vip-wallet {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border: none;
}

.dark-mode .vip-wallet-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 1px solid #35383d;
    color: #fff;
}

.dark-mode .nav-tabs.product-tabs .nav-link .nav-link-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border-bottom: 2px solid #3b3e44;
}

.dark-mode .nav-tabs.product-tabs .nav-link::before {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border: 2px solid #151619;
}

.dark-mode .nav-tabs.product-tabs .nav-link {
    background: #5a5d64;
    color: #fff;
}

.dark-mode a.prod-item {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 1px solid #555f69;
}

.dark-mode .base-prod {
    border: 1px solid #7b776c;
}

.dark-mode .product-wrapper a.prod-item::after {
    opacity: 5%;
}

.dark-mode .vip-step, .dark-mode .list-point {
    color: #f4c88e;
}

.dark-mode .feature-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border-bottom: 1px solid #3e4147;
}

.dark-mode .feature-box {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 1px solid #000;
}

.dark-mode .ft-caption {
    color: #fff
}

.dark-mode .feature-title {
    color: #fff;
    text-shadow: 1px 1px #000000, -1px -1px rgb(0 0 0 / 15%);
}

.dark-mode .info-content {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 1px solid #000;
    border: 1px solid #35383d;
}

.dark-mode .info-content-innner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border-bottom: 1px solid #3e4147;
    color: #fff;
}

.dark-mode .reg-label, .dark-mode form.reg-form, .dark-mode form.reg-form a {
    color: #f0c388;
}

.dark-mode .regnow a {
    border-bottom: 1px solid #fff;
}

.dark-mode .filter-sec {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 2px solid #141311;
}

.dark-mode .filter-menu {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 2px solid #35383d;
}

.dark-mode a.tpm-btn {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    color: #fff;
    border-bottom: 1px solid #151619;
}

.dark-mode .tpm-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 1px solid #3b3e44;
}

.dark-mode .check-group a {
    color: #fff;
}

.dark-mode .bank-info-depo {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 2px solid #585b62;
}

.dark-mode a.copy-icon {
    color: #fff;
}

.dark-mode .vip-terms {
    color: #fff;
}

.dark-mode .info-content.activation .info-content-innner {
    color: #fff;
}

.dark-mode .step-box {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 1px solid #3b3e44;
}

.dark-mode .nav-tabs.nav-reg .nav-link {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 40%, rgba(29,30,33,1) 100%);
    color: #fff;
}

.dark-mode .rf-wrap {
    box-shadow: none;
}

.dark-mode .mail-inner-wrapper {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 1px solid #34373c;
}

.dark-mode .mail-wrapper {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
}

.dark-mode .ambox-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 1px solid #34373c;
}

.dark-mode .ambox {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 1px solid #000;
}

.dark-mode .promo-top {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
}

.dark-mode a.home-lotto {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 2px solid #141311;
}

.dark-mode .home-lotto-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border: 2px solid #35383d;
}

.dark-mode .mobile-btm-menu {
    background: linear-gradient(to bottom, rgba(21,19,14,1) 0%, rgba(39,41,39,1) 100%);
}

.dark-mode .ft-item a {
    color: #fff;
}

.dark-mode .mb-sub {
    background: linear-gradient(to bottom, rgba(21,19,14,1) 0%, rgba(39,41,39,1) 100%);
}

.dark-mode .submenu-wrapper a img, .dark-mode a.ftmenu img {
    filter: none;
}

.dark-mode a:not([href]):not([tabindex]):focus, .dark-mode a:not([href]):not([tabindex]):hover {
    color: #fff;
}


/** Responsive **/
@media(max-width: 1280px) {
    .title-wrap::before {
        width: 55vw;
        height: 6vw;
        left: -33%;
    }

    .title-wrap::after {
        width: 55vw;
        height: 6vw;
        right: -33%;
    }

    .title-wrap.medium::before {
        left: -35%;
        width: 55vw;
        height: 6vw;
    }

    .title-wrap.medium::after {
        right: -35%;
        width: 55vw;
        height: 6vw;
    }

    .logo {
        max-width: 15%;
    }

    ul.nav.main-nav li.nav-item a.nav-link {
        padding: 5px 5px;
        font-size: 13px;
    }

    img.menu-icon {
        max-height: 20px;
    }

    .right-menu a {
        font-size: 12px;
        padding: 0 6px;
    }

    .vip-deco {
        display: none;
    }

    .vip-img {
        max-width: 650px;
        margin-top: 0px;
    }
}

@media(max-width: 1080px) {
    .livechat-float {
        display: none;
    }

    .float-container {
        display: initial;
    }

    .m-none, .main-menu, .right-menu, .header-top, .floating-wrapper, .ft-top {
        display: none;
    }

    .mobile-btm-menu {
        display: block;
    }

    .mobilemenu-wrap {
        display: initial;
        margin-left: 8px;
        margin-right: 5px;
    }

    button.mobile-menu-btn {
        background: none;
        border: none;
        padding: 5px 0;
        font-size: 24px;
        line-height: 0;
    }

    .switch-mobile-wrap {
        display: inherit;
        margin-left: 5px;
    }

    .switch-mobile-btn {
        background: linear-gradient(to bottom, rgba(74,110,139,1) 0%, rgba(10,33,64,1) 100%);
        width: 30px;
        height: 30px;
        padding: 0;
        border-radius: 50%;
        border: 2px solid #fff;
        position: relative;
        box-shadow: 0 3px 5px #d8e9f0;
    }

        .switch-mobile-btn::after {
            content: '\f186';
            font-family: 'Font Awesome 5 Free';
            position: absolute;
            color: #fff;
            font-size: 15px;
            left: 0;
            right: 0;
            top: 0px;
            bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .switch-mobile-btn.active {
            background: linear-gradient(to bottom, rgba(248,209,150,1) 0%, rgba(222,166,101,1) 100%);
            box-shadow: none;
        }

            .switch-mobile-btn.active::after {
                content: '\f185';
                font-family: 'Font Awesome 5 Free';
            }

    .header-wrap {
        height: 60px;
    }

    .logo {
        max-width: 140px;
    }

    .t-body {
        padding-top: 70px;
    }

    .product-wrapper {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }

    .home-vip {
        display: flex;
        align-items: center;
    }

    .vip-img {
        max-width: 55%;
    }

    .vip-step {
        font-size: 34px;
    }

    .list-point {
        font-size: 18px;
    }

    .tick-gold {
        max-width: 40px;
    }

    .base-prod {
        height: 7vw;
    }

    .ft-license {
        grid-template-columns: auto;
    }

    .copyright-sec {
        text-align: center;
    }

    .player-menu-side {
        display: none;
    }

    .aflogin-container {
        display: block;
    }

    .topmain-btn {
        grid-template-columns: repeat(4,1fr);
    }

    .mobile-quick-menu {
        display: initial;
    }

    .reg-container {
        grid-template-columns: auto;
    }

    .reg-img-wrap {
        text-align: center;
        margin: 35px auto 0;
        max-width: 85%;
    }

    .login-wrapper {
        margin-top: 0;
    }

    .prod-img-wrap {
        position: relative;
        max-width: 500px;
        margin: auto;
    }

    .title-prod {
        max-width: 300px;
        margin: auto;
    }

    .product-menu-wrapper {
        position: initial;
        margin-top: 35px;
    }

    .product-content {
        grid-template-columns: auto;
    }

    .prod-title-box {
        margin-top: 0 !important;
    }

    .title-prod {
        display: none;
    }
}

@media(max-width: 991px) {
    .game-page {
        padding: 0 0 30px;
    }

    .mail-wrapper.balance-trans {
        display: none;
    }

    .info-container {
        display: block;
    }

    .product-tab-outer.info {
        display: none;
    }

    .promo-content-area {
        grid-template-columns: repeat(2,1fr);
    }

    .vip-desktop {
        display: none;
    }

    .vip-mobile {
        display: initial;
    }

    .lottery-mobile {
        display: block;
    }

    .lottery-desktop {
        display: none;
    }

    img.mobile-img {
        display: initial;
    }

    img.desktop-img {
        display: none;
    }

    .lotto-title {
        position: initial;
        margin-top: 30px;
    }

    .luck-spin-wrap {
        margin-bottom: 20px;
    }

    .lucky-title {
        top: -3%;
    }

    .spin-number-wrap {
        top: 15%;
    }

    .spinbtn-wrap {
        top: 47%;
    }

    .t-footer {
        padding-bottom: 70px;
        background: #313238;
    }

    .footer-content {
        position: relative;
        max-height: 250px;
        overflow: hidden;
        margin-bottom: 10px;
        transition: 0.3s;
    }

        .footer-content.active {
            max-height: none;
            transition: 0.3s;
        }

            .footer-content.active::after {
                background: none;
                transition: 0.3s;
            }

        .footer-content::after {
            display: block;
            content: "";
            position: absolute;
            width: 100%;
            height: 100px;
            left: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(49,50,56,0) 0%, rgba(49,50,56,1) 100%);
            transition: 0.3s;
        }

    button.read-more {
        display: initial;
        background: none;
        border: none;
        color: #fff;
        font-size: 13px;
        padding: 5px 10px;
    }

        button.read-more .hdtext {
            display: none;
        }

        button.read-more.active .hdtext {
            display: initial;
        }

        button.read-more.active .rmtext {
            display: none;
        }

    .arrow-icon {
        transition: 0.3s;
    }

    button.read-more.active .arrow-icon {
        transform: rotate(180deg);
        transition: 0.3s;
    }
}

@media(max-width: 767px) {
    .product-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 18px 1.5%;
        max-height: 77vw;
    }

    .product-container {
        display: grid;
        grid-template-columns: 25% auto;
        grid-gap: 0 10px;
    }

    .nav-tabs.product-tabs .nav-link {
        max-width: 22vw;
    }

    .base-prod {
        height: 9vw;
    }

    .prod-logo-img {
        bottom: 5%;
    }

        .prod-logo-img img {
            max-height: 6vw;
        }

    .product-wrapper.slots a.prod-item::after {
        font-size: 13vw;
        top: -9%;
    }

    .product-wrapper.casino a.prod-item::after, .product-wrapper.fishing a.prod-item::after {
        font-size: 13vw;
        top: -9%;
    }

    .product-wrapper.sports a.prod-item::after {
        font-size: 12vw;
        top: -9%;
    }

    .product-wrapper.esports a.prod-item::after {
        font-size: 10.5vw;
        top: -4%;
    }

    .feature-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 10px;
        max-width: 580px;
    }

    .home-vip {
        display: block;
    }

    .vip-img {
        max-width: 600px;
        margin: auto;
    }

    .vip-text {
        margin: 20px auto 0;
        text-align: center;
    }

    .tick-gold {
        max-width: 34px;
    }

    .vip-listing {
        max-width: 290px;
        margin: auto;
    }

    .mobile-depo-prod {
        display: initial;
    }

    .product-depo-wrapper {
        display: none;
    }

    a.depo-btn {
        min-width: auto;
        margin-right: 3px;
        width: 48%;
    }

    .info-content-innner.aflogin {
        padding: 20px 15px 35px;
    }

    .bank-account-option {
        display: block;
    }

    .bank-pay {
        display: inline-block;
        width: 32%;
        margin-right: 1px;
        vertical-align: middle;
    }

        .bank-pay.online {
            width: auto;
        }

    .bank-acct-btn {
        min-width: auto;
        padding-left: 10%;
        padding-right: 10%;
    }

    .depo-prod-btn {
        max-width: none;
    }

    .history-btn-wrapper {
        grid-template-columns: repeat(3,1fr);
        grid-gap: 3px 5px;
    }

        .history-btn-wrapper .depo-prod-btn {
            border-radius: 35px;
            height: 40px;
        }

    .depo-prod-btn .his-text {
        font-size: 13px;
    }

    .depo-prod-btn::before {
        top: -2px;
    }

    .pygrey, .pygold {
        font-size: 11px;
    }

    .pygold {
        max-width: 95%;
    }

    .title-wrap.short::before {
        left: -7%;
        width: 32vw;
        height: 6vw;
    }

    .title-wrap.short::after {
        right: -7%;
        width: 32vw;
        height: 6vw;
    }

    .nav-tabs.nav-product {
        width: auto;
    }

        .nav-tabs.nav-product .nav-item {
            width: 23%;
        }

    .desktop-slider .carousel-item img {
        object-fit: cover;
        object-position: center;
        height: 36vw;
    }

    .carousel-item img {
        object-fit: cover;
        object-position: center;
        height: 36vw;
    }
}

@media(max-width: 600px) {
    .logo {
        max-width: 120px;
    }

    .header-bottom .max-container {
        padding: 0 5px;
    }

    button.comm-btn, button.gold-btn {
        min-width: 61px;
        height: 30px;
        padding: 2px 5px;
        font-size: 13px;
        margin: 0 2px;
    }

    .login-wrap {
        margin-left: 5px;
    }

    .title-wrap {
        padding: 5px 0;
    }

    a.depo-btn {
        padding-bottom: 2px;
    }

    .product-container {
        display: grid;
        grid-template-columns: 30% auto;
        grid-gap: 0 5px;
    }

    .product-tab-outer {
        padding-bottom: 6px;
    }

    .nav-tabs.product-tabs .nav-link {
        max-width: 26vw;
        height: 50px;
    }

        .nav-tabs.product-tabs .nav-link .nav-link-inner {
            grid-template-columns: auto 45%;
            padding: 0px 3px 0 6px;
            font-size: 12px;
            line-height: 1.1;
        }

        .nav-tabs.product-tabs .nav-link::before {
            top: 2px;
        }

    .gold-btn.aflogin, .comm-btn.aflogin {
        font-size: 12px;
    }

    .prod-outer {
        padding-bottom: 4px;
    }

    a.tpm-btn {
        padding-bottom: 2px;
    }

    .acct-menu {
        left: auto !important;
        right: 0 !important;
        min-width: 135%;
    }

        .acct-menu a {
            padding: 5px 5px;
            font-size: 13px;
        }

            .acct-menu a img {
                max-height: 20px;
            }

    .promo-content-area {
        grid-template-columns: auto;
    }

    .title-1 {
        font-size: 30px;
    }

    .title-1-cn {
        font-size: 18px;
    }

    .vip-step {
        font-size: 26px;
    }

    .list-point {
        font-size: 16px;
    }

    .tick-gold {
        max-width: 25px;
    }

    .mail-wrapper {
        padding-bottom: 0;
    }

    .mail-inner-wrapper {
        background: #e0e5f4;
        border-radius: 0px;
        padding: 0 0 10px;
    }

    .load-wrap {
        text-align: center;
    }

    .inbox-field {
        grid-template-columns: 30% 55% 15%;
        font-size: 13px;
    }

    .datetime {
        font-size: 11px;
    }

    .field-wrap {
        grid-template-columns: auto;
    }

    .trans-field {
        display: block;
    }

    .switch-icon {
        text-align: left;
        padding: 15px 0;
    }

    .trans-field-2 {
        grid-gap: 5px;
    }

    button.base-btn.transfer-btn {
        min-width: 120px;
        font-size: 13px;
    }

        button.base-btn.transfer-btn .inner-base {
            padding: 0 10px;
        }

    table.gold-user-table {
        font-size: 12px;
    }

    .bank-field {
        font-size: 11px;
    }

    .delete-msg img {
        max-height: 17px;
    }

    button.base-btn.bank {
        min-width: 110px;
        font-size: 13px;
        height: 35px;
    }

    .history-search-wrap {
        display: block;
    }

    .search-btn-wrap {
        padding: 0;
        margin-top: 25px;
        text-align: center;
    }

    button.base-btn {
        min-width: 150px;
        height: 43px;
        font-size: 16px;
        box-shadow: 0 2px 6px rgb(0 0 0 / 25%);
    }

        button.base-btn::before {
            top: 2px;
        }

    .depo-prod-btn.dpamt .main-text {
        font-size: 13px;
    }

    .depo-prod-btn.dpamt {
        height: 32px;
        padding-bottom: 5px;
    }

    .info-content-innner {
        padding: 20px;
        font-size: 13px;
    }

    .pmbox {
        min-width: 60px;
        font-size: 12px;
        height: 35px;
        margin: 4px 1px;
    }

    .pygrey {
        min-height: 40px;
    }

    .pybox .pygrey:nth-child(2) {
        padding-top: 10px;
        min-height: 55px;
    }

    .mail-wrapper.payout .mail-inner-wrapper {
        padding-top: 10px;
    }

    .info-content {
        padding-bottom: 4px;
    }

    .feature-box {
        min-height: auto;
    }

    .ft-caption {
        font-size: 12px;
    }

    .title-wrap.medium::before {
        left: -42%;
    }

    .title-wrap.medium::after {
        right: -42%;
    }

    .nav-tabs.nav-reg .nav-item {
        margin: 0 1%;
        width: 30%;
    }

    .nav-tabs.nav-reg .nav-link {
        width: auto;
    }

    .bank-acct-btn {
        padding-bottom: 3px;
    }

        .bank-acct-btn::before {
            top: -1px;
        }

    .nav-tabs.nav-product .nav-item {
        width: 31%;
    }

    button.base-btn.betnow {
        min-width: 115px;
        height: 37px;
        font-size: 14px;
        box-shadow: 0 2px 6px rgb(0 0 0 / 25%);
    }

    .base-prod {
        border: 1px solid #fff;
    }

    .payout-title {
        font-size: 24px;
    }
}

@media(max-width: 480px) {
    .title-1 {
        font-size: 6.5vw;
    }

    .title-1-cn {
        font-size: 4vw;
    }

    .logo {
        max-width: 95px;
    }

    .notice-wrapper {
        font-size: 12px;
        height: 35px;
    }

    .product-wrapper {
        grid-gap: 10px 1.5%;
        max-height: 128vw;
    }

    .feature-title {
        font-size: 19px;
    }

    .ft-icon {
        max-width: 105px;
        margin: 0 auto;
    }

    .bank-info-depo {
        padding: 5px;
        font-size: 13px;
    }

    button.base-btn.upload-btn {
        min-width: 120px;
    }

    .luck-spin-wrap {
        max-width: 310px;
    }

    .spin-number-wrap {
        top: 16%;
        font-size: 55px;
    }

    .spinbtn-wrap {
        top: 140px;
    }

    .title-wrap.short .title-1 {
        font-size: 7.5vw;
    }

    button.base-btn.playnow, button.base-btn.download {
        font-size: 12px;
        height: 35px;
        width: 45%;
        margin: 0 1px;
    }

    .logo-prod {
        max-width: 26vw;
        margin: auto;
    }
}

/** Updated - 21/7/2022 **/
.vip-level-wrapper {
    background: linear-gradient(to right, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.26) 32%, rgba(255,255,255,0.26) 69%, rgba(255,255,255,0.00) 100%);
    padding: 8px;
    margin-bottom: 5px;
}

.vip-level-inner {
    display: grid;
    grid-template-columns: 160px auto;
    grid-gap: 15px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.current-badge img {
    max-height: 95px;
}

.crt-text {
    color: #444444;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vipllvl-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
}

.level-bar-wrap {
    position: relative;
}

.vtxt-left {
    text-align: left;
}

.vtxt-right {
    position: absolute;
    right: 0;
    top: 0;
}

.hl-point {
    color: #a96b2a;
    font-weight: 700;
}

.level-bar {
    background: #444444;
    height: 10px;
    border-radius: 20px;
    padding: 2px 2px;
    margin-top: 3px;
}

.inner-bar {
    background: #f4c78e;
    height: 100%;
    border-radius: 20px;
}

.dark-mode .vip-level-wrapper, .dark-mode .crt-text {
    color: #fff;
}

@media(max-width: 480px) {
    .vip-level-wrapper {
        margin-bottom: 10px;
    }

    .vip-level-inner {
        grid-template-columns: auto;
        grid-gap: 5px;
        text-align: center;
    }

    .current-badge img {
        max-height: 80px;
    }

    .crt-text {
        color: #444444;
        font-size: 16px;
    }

    .vipllvl-text {
        font-size: 20px;
    }
}


/** Floating Fifa **/
.event-floating {
    position: fixed;
    z-index: 9999;
    bottom: 10%;
    left: 2%;
    max-width: 180px;
    animation: float 2s ease-in-out infinite;
}

@media (max-width: 767px) {

    .event-floating {
        max-width: 120px;
    }
}

@media(max-width: 480px) {
    .event-floating {
        max-width: 80px;
    }
}


/** Mall Page 11/4/2023 Update **/
.right-menu a {
    margin: 0 1px;
}

.mall-sec {
    background: url("../images/mall/mall-bg.jpg")no-repeat top center;
    background-size: 100%;
    background-attachment: fixed;
    text-align: center;
    padding: 0 0 30px;
}

.mall-banner {
    position: relative;
}

    .mall-banner img {
        width: 100%;
    }

.redeem-btn-wrap {
    padding: 15px 0 20px;
    margin-top: -6%;
}

    .redeem-btn-wrap button {
        margin: 0 5px;
    }

.search-filter {
    display: grid;
    grid-template-columns: 64% 35%;
    grid-gap: 1%;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.searchbox {
    display: flex;
    align-items: center;
    border: 1px solid #dbe7f3;
    border-radius: 45px;
    padding: 2px 15px;
    background: #eef5fc;
    box-shadow: 0 3px 5px #bfcfd5;
}

span.search-rw {
    margin-right: 10px;
}

input.search-input {
    width: 100%;
    background: none;
    border: none;
    padding: 2px 10px;
    height: 35px;
}

.rf-wrap.search {
    margin: 0;
}

.rf-wrap.dropdown-input.search select {
    font-weight: 600;
}

.info-content.redeem {
    max-width: none;
}

.info-content-innner.redeem {
    padding: 25px 20px 20px;
}

.reward-content-area {
    padding: 15px 0;
}

.rwbox {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    max-width: 100px;
    width: 100%;
    margin: 5px 3px;
    text-align: center;
    padding-bottom: 4px;
    border: none;
    color: #000;
    height: 100px;
    cursor: pointer;
    vertical-align: text-top;
}

.rwbox-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-radius: 9px;
    height: 100%;
    padding: 5px 9px 7px;
    line-height: 1.1;
    border-bottom: 1px solid #d1d6e3;
}

.rwbox.active {
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 49%, rgba(70,157,234,1) 100%) !important;
    border-bottom: 1px solid #418ecd;
}

    .rwbox.active .rwbox-inner {
        background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%) !important;
        border-bottom: 1px solid #b8e0f9;
    }

.rwft {
    padding-top: 5px;
    font-size: 12px;
    font-weight: 500;
}

.rwbox-inner img {
    filter: drop-shadow(-1px 3px 2px rgb(219,164,97,0.4));
}

.reward-box {
    position: relative;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    max-width: 265px;
    width: 100%;
    margin: 1% 0.5%;
    text-align: center;
    border: 1px solid #d1d6e3;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
}

.rw-info {
    content: '';
    background: linear-gradient(to right, rgba(70,157,234,1) 0%, rgba(133,206,248,1) 100%);
    border-bottom: 1px solid #418ecd;
    border-radius: 10px;
    padding-bottom: 6px;
    box-shadow: 0px -2px 14px -8px rgb(0,0,0,0.4);
}

.rw-info-inner {
    position: relative;
    background: linear-gradient(to bottom, rgba(163,247,255,1) 0%, rgba(141,216,251,1) 100%);
    border-bottom: 2px solid #b8e0f9;
    border-top: 2px solid #c7e0f7;
    border-radius: 10px;
    padding: 2px 10px;
    height: 95px;
    color: #444444;
    font-weight: 500;
}

.item-name {
    height: 70px;
    color: #444444;
    font-weight: 600;
    padding: 5px 0;
    line-height: 1.1;
    font-size: 14px;
}

.label-item {
    background: url(../images/mall/label-item.png)no-repeat;
    background-size: 100% 100%;
    width: 50px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    z-index: 2;
}

.reward-pagination-wrap {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
}

.page-btn {
    background: none;
    padding: 0;
    border: none;
    color: #979db0;
    font-size: 22px;
    margin: 0 6px;
}

    .page-btn:hover {
        color: #4896d9;
    }

.pgbtn {
    display: inline-block;
    color: #444;
    margin: 0px 2px;
    vertical-align: text-bottom;
    padding: 2px 8px;
    border-radius: 5px;
}

    .pgbtn.active, .pgbtn:hover {
        background: #4896d9;
        color: #fff;
    }

.dark-mode .mall-sec {
    background: url("../images/mall/mall-bg-dark.jpg")no-repeat top center;
    background-size: 100%;
}

.dark-mode .searchbox {
    box-shadow: none;
}

.dark-mode .rwbox {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border-bottom: 1px solid #151619;
    color: #f4c88e;
}

.dark-mode .rwbox-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border-bottom: 1px solid #3b3e44;
    border-top: 1px solid #646770;
}

.dark-mode .rwbox.active {
    color: #000;
}

.dark-mode .pgbtn {
    color: #fff;
}


@media(max-width: 1199px) {
    .mall-banner img {
        object-fit: cover;
        height: 40vw;
        width: 100%;
    }

    .redeem-btn-wrap {
        padding: 15px 0 20px;
        margin-top: -10%;
    }
}

@media(max-width: 767px) {
    .redeem-item-info {
        grid-template-columns: auto;
    }

    .rd-item {
        text-align: center;
    }

    .rd-btn-wrap {
        text-align: center;
    }
}

@media(max-width: 600px) {
    .reward-box {
        width: 48%;
    }

    .rw-info-inner {
        height: 17vw;
        padding: 1% 3%;
    }

    .item-name {
        height: 12.5vw;
        font-size: 2.3vw;
    }

    .redeem-pts {
        font-size: 2.5vw;
        font-weight: 600;
    }
}

@media(max-width: 480px) {
    .info-content-innner.redeem {
        padding: 20px 10px 15px;
    }

    .mall-banner img {
        height: 66vw;
    }

    .redeem-btn-wrap {
        margin-top: -16%;
    }

    .rwbox {
        max-width: 90px;
        height: 80px;
    }

    .rwbox-inner img {
        max-height: 40px;
    }

    .rwft {
        padding-top: 2px;
        font-size: 10px;
        font-weight: 500;
    }

    .rw-info {
        padding-bottom: 3px;
    }

    .label-item {
        width: 44px;
        height: 16px;
        font-size: 11px;
        padding-top: 1px;
    }

    .reward-pagination-wrap {
        font-size: 14px;
    }

    .page-btn {
        font-size: 19px;
    }

    .stepcap-inner {
        height: auto;
    }

    .modal-content.rwtnc {
        padding: 15px 15px;
    }

    .rw-img {
        margin-bottom: -6px;
    }
}

/** Blog Page - Update 29/11/2023 **/
ul.nav.main-nav li.nav-item a.nav-link {
    padding: 5px 3px;
}

.right-menu a {
    padding: 0 3px;
}

.blog-sec {
    background: url("../images/blog/day.png")no-repeat top center;
    background-size: cover;
    padding: 10px 0 30px;
}

.blog-top {
    text-align: center;
}

.search-blog-wrapper {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    padding-bottom: 7px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.sb-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    text-align: center;
    padding: 10px 10px;
    border-radius: 6px;
}

.searcblog-box {
    display: flex;
    align-items: center;
    border-radius: 45px;
    padding: 2px 15px;
    background: #b3b6bb;
    max-width: 220px;
    margin: 0 0 0 auto;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    margin-bottom: 15px;
}

.blog-box {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    padding-bottom: 6px;
    border-radius: 6px;
    position: relative;
    display: inline-block;
    max-width: 420px;
    margin: 0 auto;
}

.blog-box-inner {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    border-radius: 6px;
    color: #000;
    padding: 10px 10px;
    height: 100%;
}

.blog-box-img {
    height: 250px;
}

    .blog-box-img img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

.blog-inner-title {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
}

.blogdate {
    font-size: 16px;
    font-weight: 500;
}

.read-btn-wrap {
    padding: 15px 0 10px;
    text-align: center;
}

button.base-btn.blog {
    min-width: 170px;
    height: 45px;
    font-size: 17px;
}

    button.base-btn.blog::before {
        width: 98%;
        top: 2px;
        margin: 0 auto;
    }

.blog-pagination {
    text-align: center;
    padding: 15px 0 10px;
}

button.page-num-btn {
    background: none;
    border: none;
    color: #292929;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    margin: 0 3px;
}

    button.page-num-btn:hover {
        background: #4896d9;
        color: #fff;
    }

.blog-content {
    background: linear-gradient(to right, rgba(200,208,234,1) 0%, rgba(233,236,243,1) 50%, rgba(200,208,234,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    padding-bottom: 7px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.blog-inner-content {
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    border-bottom: 1px solid #d1d6e3;
    text-align: center;
    padding: 20px 45px;
    border-radius: 6px;
}

.blog-title-inner {
    font-size: 24px;
    color: #4d5061;
    font-weight: 700;
}

.blog-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

button.base-btn.blog-back {
    min-width: 110px;
    height: 40px;
    font-size: 14px;
    box-shadow: none;
}

    button.base-btn.blog-back i {
        margin-right: 5px;
    }

    button.base-btn.blog-back::before {
        top: 2px;
    }

.blog-content-img {
    margin-bottom: 15px;
}

.blog-content-wrap {
    text-align: left;
}

    .blog-content-wrap ol, .blog-content-wrap ul {
        padding-left: 17px;
    }

.latest-title {
    color: #4d5061;
    font-size: 28px;
    font-weight: 700;
    padding: 5px 5px 15px;
}

.dark-mode .blog-sec {
    background: url("../images/blog/night.png")no-repeat top center;
    background-size: cover;
}

.dark-mode .search-blog-wrapper {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border: 1px solid #151619;
}

.dark-mode .searcblog-box {
    background: #212327;
    color: #fff;
}

    .dark-mode .searcblog-box input.search-input {
        color: #fff;
    }

.dark-mode .sb-inner {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border-bottom: 1px solid #3b3e44;
    color: #fff;
}

.dark-mode .blog-box, .dark-mode .blog-content {
    background: linear-gradient(to right, rgba(19,20,23,1) 0%, rgba(45,47,53,1) 50%, rgba(19,20,23,1) 100%);
    border: 1px solid #151619;
}

.dark-mode .blog-box-inner, .dark-mode .blog-inner-content {
    background: linear-gradient(to bottom, rgba(43,44,48,1) 0%, rgba(45,47,53,1) 75%, rgba(29,30,33,1) 100%);
    border-bottom: 1px solid #3b3e44;
    color: #fff;
}

.dark-mode .blog-title-inner, .dark-mode .latest-title {
    color: #fff;
}

@media(max-width: 991px) {
    .blog-inner-content {
        padding: 20px 20px;
    }
}

@media(max-width: 767px) {
    .blog-container {
        grid-template-columns: repeat(2,1fr);
    }

    .blog-row-top {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .blog-title-inner {
        padding: 10px 0 5px;
    }
}

@media(max-width: 480px) {
    .searcblog-box {
        margin: 0;
    }

    .blog-container {
        grid-template-columns: auto;
    }

    .blog-title-inner {
        font-size: 20px;
    }

    .blog-inner-content {
        padding: 15px 15px;
    }
}

/** Crypto Deposit - Updated - 6/9/2023 **/
.rate-field {
    position: relative;
    display: grid;
    grid-template-columns: 105px auto;
    align-items: center;
    max-width: 280px;
    padding-bottom: 30px;
}

.reminder-wrapper {
    padding: 15px 0;
    margin-top: 10px;
}

@media(max-width: 767px) {
    a.depo-btn {
        margin-bottom: 6px;
        margin-right: 1px;
        width: 32%;
    }

    .base-btn.crypto .inner-base {
        line-height: 1.1;
        font-size: 13px;
    }
}

/** App download Update 23/7/2024 **/
.new-app-wrapper {
    background: linear-gradient(to right, rgba(200, 208, 234, 1) 0%, rgba(233, 236, 243, 1) 50%, rgba(200, 208, 234, 1) 100%);
    border-radius: 8px;
    border-bottom: 1px solid #d1d6e3;
    padding-bottom: 7px;
}

.new-app-inner {
    background: #f2f5fc;
    position: relative;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 42% auto;
}

    .new-app-inner::after {
        content: 'DOWNLOAD APP';
        font-family: 'Alternate';
        position: absolute;
        color: #c3cada;
        font-size: 160px;
        line-height: 1;
        opacity: 17%;
        left: 2%;
        bottom: 1%;
        pointer-events: none;
        z-index: 0;
    }

.dl-app-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3% 4%;
    margin-right: -15%;
}

.new-title {
    margin-bottom: 20px;
}

.appbox-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.app-dlbox {
    max-width: 165px;
    margin: 0 auto;
}

.app-qrcode {
    max-width: 165px;
    margin: 10px auto;
}

button.app-dl-btn {
    background: linear-gradient(to right, rgba(70, 157, 234, 1) 0%, rgba(133, 206, 248, 1) 49%, rgba(70, 157, 234, 1) 100%);
    border: none;
    border-bottom: 1px solid #418ecd;
    border-radius: 30px;
    color: #000;
    padding: 0;
    padding-bottom: 3px;
    height: 42px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.app-inner-base {
    background: linear-gradient(to bottom, rgba(163, 247, 255, 1) 0%, rgba(141, 216, 251, 1) 100%);
    border: 1px solid #b8e0f9;
    border-radius: 30px;
    padding: 1px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

button.app-dl-btn:hover {
    transform: scale(0.98);
}

.mobile-girl {
    margin-top: -8.5%;
    position: relative;
    z-index: 1;
}

.download-app-mobile {
    display: none;
}

img.mobile-app {
    display: none;
}

@media(max-width: 1080px) {
    .download-app-mobile {
        display: block;
        width: 80%;
    }

    img.mobile-app {
        display: initial;
    }

    img.desktop-app {
        display: none;
    }

    .appbox-wrapper {
        display: none;
    }

    .new-app-inner::after {
        font-size: 12vw;
    }

    .new-app-inner {
        grid-template-columns: 48% auto;
        border-radius: 0.5vw;
    }

    .dl-app-wrapper {
        padding: 2% 4%;
        margin-right: -2%;
    }

    .mobile-girl {
        margin-top: -5.5%;
    }

    .new-title {
        margin-bottom: 2vw;
    }

    .dlm-app-row {
        margin-bottom: 1vw;
    }

    button.app-dl-btn {
        height: 5.5vw;
        font-size: 2.6vw;
        font-weight: 500;
        text-transform: none;
        border-radius: 1.3vw;
    }

    .app-inner-base {
        border-radius: 1.3vw;
    }

    button.app-dl-btn i {
        margin-right: 1vw;
    }

    a.instruct-mb {
        font-size: 2vw;
        color: #000;
        border-bottom: 1px solid #000;
    }

    .store-icon {
        margin-right: 1vw;
    }

        .store-icon img {
            max-height: 4vw;
        }
}

@media(max-width: 480px) {
    .new-app-wrapper {
        padding-bottom: 4px;
    }

    .new-title {
        margin-bottom: 1.5vw;
    }

    button.app-dl-btn {
        height: 6.5vw;
        padding-bottom: 0.4vw;
    }

    a.instruct-mb {
        font-size: 2.4vw;
        color: #000;
        border-bottom: 1px solid #000;
    }
}

/** Updated - 20/3/2025 **/
.activation-wrapper {
    display: grid;
    grid-template-columns: 48% auto;
    width: 100%;
}

.title-activate {
    color: #4d5061;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

.nav-tabs.nav-reg .nav-btn {
    background: linear-gradient(to right, rgba(200, 208, 234, 1) 0%, rgba(233, 236, 243, 1) 50%, rgba(200, 208, 234, 1) 100%);
    border-bottom: 2px solid #d5dae9;
    display: inline-block;
    border-radius: 30px;
    color: #000;
    padding-bottom: 3px;
    min-width: 130px;
    text-align: center;
    margin: 0 5px;
    text-transform: uppercase;
}

    .nav-tabs.nav-reg .nav-btn .tab-inner {
        background: linear-gradient(to bottom, rgba(242, 245, 252, 1) 0%, rgba(242, 245, 252, 1) 70%, rgba(231, 236, 251, 1) 100%);
        border: 2px solid #d1d6e3;
        border-radius: 30px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-tabs.nav-reg .nav-btn.active {
        background: linear-gradient(to right, rgba(70, 157, 234, 1) 0%, rgba(133, 206, 248, 1) 49%, rgba(70, 157, 234, 1) 100%);
        border-bottom: 2px solid #418ecd;
    }

        .nav-tabs.nav-reg .nav-btn.active .tab-inner {
            background: linear-gradient(to bottom, rgba(163, 247, 255, 1) 0%, rgba(141, 216, 251, 1) 100%);
            border: 2px solid #b8e0f9;
        }

.step-box {
    background: none;
    box-shadow: none;
    border: none;
    font-size: 16px;
    color: #4d5061;
}

.sms-activate input {
    background: #e0e5f4;
    border: 1px solid #d1d6e3;
    height: 60px;
    max-width: 50px;
    margin: auto 2px;
}

.smsnote {
    padding: 30px 0 5px;
    color: #4d5061;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

    .smsnote a {
        color: #00ab00;
        text-decoration: underline;
    }

        .smsnote a:hover {
            color: #4d5061;
        }

.smsbtn-wrap button {
    margin: 5px 5px;
}

@media(max-width: 991px) {
    .activation-wrapper {
        grid-template-columns: auto;
    }

    .activ-img {
        grid-row: 2 / 3;
        text-align: center;
    }
}

@media(max-width: 600px) {
    .title-activate {
        font-size: 22px;
    }

    .nav-tabs.nav-reg .nav-btn {
        width: 100%;
        min-width: auto;
        margin: 0;
        font-size: 12px;
    }

    .step-box {
        padding: 15px 0;
        font-size: 15px;
    }

    .sms-activate input {
        height: 55px;
        max-width: 45px;
        margin: auto 0;
    }

    .smsnote {
        font-size: 15px;
    }
}

/** Update - 13/5/2025 **/
span.online-text {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
}

/** Update - 15/5/2025 **/
.succss-depo {
    max-width: 144px;
    margin: 20px auto;
}

.loading-page {
    background: url(../images/bg_light.jpg) no-repeat top center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.wait-title {
    text-align: center;
    max-width: 70%;
    margin: 0 auto 15px;
}

.loading-bar-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: #212028;
    border-radius: 40px;
    overflow: hidden;
}

.loadbar-outer {
    position: relative;
    z-index: 2;
}

.loadbar-inner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .loadbar-inner img {
        object-fit: cover;
        height: 65.5%;
    }

    .loadbar-inner::after {
        content: '';
        background: #212028;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        animation: moving 4s linear;
    }

@keyframes moving {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/** Mission Page - updated 5/5/2025**/
ul.nav.main-nav li.nav-item a.nav-link {
    padding: 5px 1px;
}

    ul.nav.main-nav li.nav-item a.nav-link img {
        max-height: 22px;
    }

.right-menu a {
    padding: 0 1px;
    font-size: 12px;
}

.mission-sec {
    background: url("../images/mission/mission-bg-day.jpg") no-repeat top center;
    background-size: cover;
    padding: 10px 0 30px;
}

.mission-frame-wrapper {
    background: linear-gradient(to right, rgba(200, 208, 234, 1) 0%, rgba(233, 236, 243, 1) 50%, rgba(200, 208, 234, 1) 100%);
    border-radius: 8px;
    border: 1px solid #d1d6e3;
    height: 100%;
    overflow: hidden;
    padding-bottom: 7px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.mission-frame-inner {
    background: linear-gradient(to bottom, rgba(242, 245, 252, 1) 0%, rgba(242, 245, 252, 1) 70%, rgba(231, 236, 251, 1) 100%);
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #d1d6e3;
    padding: 30px;
    border-radius: 0 0 8px 8px;
}

.msbox-wrap {
    position: relative;
    max-width: 276px;
    margin: 0 auto 10px;
    display: inline-block;
}

.msbox {
    position: relative;
    margin-bottom: 15px;
}

.ms-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

button.base-btn.tnc {
    max-width: 150px;
    min-width: 150px;
}

.ms-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    color: #2d2f35;
    font-size: 26px;
    font-weight: 500;
    filter: drop-shadow(0px 0px 1px #fed247) drop-shadow(0px 0px 1px #fed247);
    height: 248px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.mstext-2 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
}

.mstext-3 {
    text-transform: uppercase;
    font-size: 85%;
}

.mstext-4 {
    text-transform: uppercase;
    font-size: 40px;
}

button.msclaim-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/mission/btn.png) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 75px;
    color: #f3c88d;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    border: none;
    padding-bottom: 17px;
    animation: zooming 0.9s ease-in-out infinite;
}

@keyframes zooming {
    0% {
        transform: scale(1.02);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1.02);
    }
}

.dark-mode .mission-sec {
    background: url("../images/mission/mission-bg-night.jpg") no-repeat top center;
    background-size: cover;
}

.dark-mode .mission-frame-wrapper {
    background: linear-gradient(to right, rgba(19, 20, 23, 1) 0%, rgba(45, 47, 53, 1) 50%, rgba(19, 20, 23, 1) 100%);
    border-bottom: 1px solid #000;
    border: 1px solid #35383d;
}

.dark-mode .mission-frame-inner {
    background: linear-gradient(to bottom, rgba(43, 44, 48, 1) 0%, rgba(45, 47, 53, 1) 75%, rgba(29, 30, 33, 1) 100%);
    border-bottom: 1px solid #3e4147;
    color: #fff;
}

/** Mobile Contact floating **/
#toggle:checked ~ .menu-round .menu__item:nth-child(1) {
    transition: all 250ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -5.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(2) {
    transition: all 250ms 100ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -9.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(3) {
    transition: all 250ms 200ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -13.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(4) {
    transition: all 250ms 300ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -17.2em, 0);
}