﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.3;
    font-size: 15px;
    color: #191919;
    background: #1b1b1b;
}

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 {
        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%;
}

.t-body {
    background: #fff9ee;
    padding-top: 143px;
}

    .t-body.home {
        padding-top: 83px;
    }

.max-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 10px;
}

.header-sec {
    position: fixed;
    z-index: 998;
    width: 100%;
    top: 0;
}

.header-top {
    background: #fff9ee;
    position: relative;
    box-shadow: 0 2px 3px rgb(0,0,0,0.2);
    z-index: 2;
    border-bottom: 1px solid #c48f25;
}

    .header-top.theme::before {
        content: '';
        /* background: url(../images/left-header.png)no-repeat right center;*/
        background-size: cover;
        width: 384px;
        height: 82px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .header-top.theme::after {
        content: '';
        /* background: url(../images/right-header.png)no-repeat left center;*/
        background-size: cover;
        width: 412px;
        height: 82px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }

.header-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

.logo img {
    max-height: 72px;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

button.comm-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    min-width: 95px;
    height: 36px;
    padding: 3px;
    margin: 0 3px;
}

    button.comm-btn.org {
        background: #ffb400;
    }

    button.comm-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

button.lang-btn {
    border: none;
    background: #404040;
    color: #fff;
    border-radius: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.arrow-round {
    margin-left: 4px;
    font-size: 13px;
}

.dropdown.language img {
    max-height: 25px;
}

.dropdown-menu.language {
    padding: 3px 0;
    background: rgba(0,0,0,0.7);
    min-width: 100%;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

a.lang-item {
    display: block;
    padding: 3px;
}

    a.lang-item:hover {
        background: #fedd5c;
    }

.header-btm {
    background: #383838;
    position: relative;
    border-bottom: 1px solid #000;
    box-shadow: 0 3px 8px rgb(0 0 0 / 60%);
}

.header-menu-container {
    max-width: 1300px;
    margin: 0 auto;
}

ul.nav.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

    ul.nav.header-menu li.nav-item {
        margin: 0 10px;
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

a.link-item {
    font-weight: 600;
    color: #eac357;
    text-transform: uppercase;
}

.cn-menu {
    font-family: 'Noto Sans SC';
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-container {
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    background: rgb(255,255,255,0.9);
    text-align: center;
    visibility: hidden;
    opacity: 0;
}

    .dropdown-container a {
        display: inline-block;
        max-width: 140px;
        padding: 5px 7px;
    }

.droplogo {
    padding: 5px 0;
}

.dropdown-container a:hover {
    background: #fedd5c;
}

ul.nav.header-menu li.nav-item:hover .dropdown-container {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.header-sec.active .header-btm {
    background: linear-gradient(to bottom, rgba(94,48,33,1) 0%, rgba(94,48,33,0) 98%, rgba(94,48,33,0) 100%);
    border-bottom: none;
    box-shadow: none;
}

button.hamburger-btn, button.account-menu-btn {
    display: none;
}

button.inbox-menu-btn {
    position: relative;
    display: inline-block;
    background: #fcd656;
    border: none;
    padding: 2px;
    min-width: 55px;
    height: 36px;
    border-radius: 30px;
    margin: 0 4px;
    font-size: 24px;
}

span.mail-num {
    background: #ff2400;
    color: #fff;
    font-size: 9px;
    border-radius: 30px;
    padding: 1px 4px;
    position: absolute;
    top: -2px;
    right: 0;
}

.player-top-wrap {
    margin-right: 2px;
}

.hiuser {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.ply-blc {
    background: #a59683;
    border-radius: 35px;
    color: #fff;
    padding: 0 10px;
    font-size: 13px;
    cursor: pointer;
}

    .ply-blc:hover {
        background: #101010;
    }

    .ply-blc.dropdown-toggle::after {
        vertical-align: middle;
    }

/** Footer Sec **/
.ft-menu-wrapper {
    background: linear-gradient(to right, rgba(21,21,21,0) 0%, rgba(21,21,21,0.6) 22%, rgba(21,21,21,0.6) 82%, rgba(21,21,21,0) 100%);
    padding: 12px 0;
    text-align: center;
}

ul.nav.footer-menu {
    justify-content: center;
}

    ul.nav.footer-menu li.nav-item {
        border-right: 1px solid #eac357;
        line-height: 9px;
        padding: 0 10px;
        margin: 4px 0;
    }

        ul.nav.footer-menu li.nav-item:last-child {
            border-right: none;
        }

        ul.nav.footer-menu li.nav-item a {
            font-size: 11px;
            color: #eac357;
            text-transform: uppercase;
        }

            ul.nav.footer-menu li.nav-item a:hover {
                color: #fff;
            }

.footer-btm {
    background: #1b1b1b;
    color: #686868;
    font-size: 11px;
    padding: 25px 0;
    border-top: 1px solid #fbec9c;
}

.ft-logo-provider {
    text-align: center;
    padding: 10px 0;
}

    .ft-logo-provider img {
        max-height: 30px;
        margin: 5px 0;
        filter: invert(1) contrast(0.5) grayscale(1);
    }

.copyright-sec {
    text-align: center;
    font-size: 11px;
    padding: 5px 0;
}

.contact-footer {
    display: none;
}

/** Mobile Bottom Menu **/
.bottom-mobile-menu {
    display: none;
    border-radius: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    filter: drop-shadow(0px -1px 4px rgb(0,0,0,0.3));
}

.mobile-menu-wrap {
    display: grid;
    grid-template-columns: 18% 18% auto 18% 18%;
    text-align: center;
    height: 60px;
}

a.btmbox {
    background: #fccc73;
    display: block;
    font-size: 10px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px;
}

    a.btmbox img {
        max-height: 30px;
        margin-bottom: 3px;
    }

.center-curve {
    background: url(../images/btm-menu-center.png)no-repeat top center;
    background-size: 100% 100%;
}

a.home-btm-round {
    background: linear-gradient(to bottom, rgba(245,255,157,1) 0%, rgba(255,166,88,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 11vw;
    height: 11vw;
    margin: 0 auto;
    padding: 3%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 39%;
}

/** Register Page **/
.reg-sec {
    background: #f7f0e0 url("../images/register-bg.jpg")no-repeat center;
    padding: 15px 0 45px;
    overflow: hidden;
}

.reg-title, .forgot-title {
    text-align: center;
    padding-bottom: 15px;
}

.reg-deco-1 {
    position: absolute;
    left: -24%;
    max-width: 28%;
    bottom: -7%;
}

.reg-deco-2 {
    position: absolute;
    right: -28%;
    bottom: -9%;
    max-width: 33%;
}

.reg-wrapper {
    position: relative;
    background: rgb(255,255,255,0.4);
    padding: 30px 15px;
    border: 2px solid #e9e5dc;
    border-radius: 13px;
    max-width: 800px;
    margin: 0 auto;
    color: #3f3f3f;
    box-shadow: 0 1px 10px rgb(0 0 0 / 6%);
}

.reg-form {
    max-width: 650px;
    margin: 0 auto;
}

.reg-field {
    display: grid;
    grid-template-columns: 170px auto;
    grid-gap: 15px;
    margin-bottom: 12px;
    align-items: center;
}

.input-field {
    position: relative;
}

.reg-label {
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.field-icon {
    position: absolute;
    right: 17px;
    top: 13px;
    font-size: 17px;
    cursor: pointer;
}

.verify-wrap-field {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 10px;
}

button.opt-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.reg-btn-wrap {
    text-align: center;
    padding: 25px 0 15px;
}

button.big-submit-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    padding: 12px 30px;
}

    button.opt-btn:hover, button.big-submit-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

    button.big-submit-btn.login {
        min-width: 220px;
    }

.forgot-row {
    text-align: center;
}

.contact-field {
    display: grid;
    grid-template-columns: 110px auto;
    grid-gap: 5px;
}

a.forgot-link {
    color: #3f3f3f;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
}

    a.forgot-link:hover {
        color: #ffb400;
    }

.code-img img {
    max-height: 40px;
}

/** Contact Side Bar **/
.contact-side-sec {
    position: fixed;
    right: 0;
    top: 25%;
    z-index: 999;
}

a.ct-sidebar {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    border: 2px solid #ffe7be;
    border-radius: 40px 0 0 40px;
    padding: 4px;
    color: #fae77d;
    font-size: 14px;
    margin-bottom: 5px;
    transform: translateX(190px);
    transition: 0.5s;
}

    a.ct-sidebar:hover {
        transform: translateX(0);
        transition: 0.5s;
    }

.contact-icon img {
    height: 47px;
}

.ct-link {
    margin-left: 10px;
}

.ct-info {
    width: 180px;
    padding-right: 5px;
}

.ct-name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

/** Homepage **/
.mobile-login-wrap {
    display: none;
    background: #e2d8be;
    padding: 5px 0;
}

.home-product-sec {
    background: #fff9ee url("../images/home-bg.jpg")no-repeat top center;
    background-size: cover;
    padding: 30px 0
}

.dual-title-wrap {
    font-size: 44px;
    color: #eac357;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    padding-bottom: 15px;
}

.cn-title {
    font-family: 'Noto Sans SC';
    font-weight: 400;
    font-size: 33px;
    color: #4e5357;
}

.home-product-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 0 15px;
    margin: 30px 0;
}

.slots-pd {
    grid-column: 1/3;
    grid-row: 1/2;
}

.casino-pd {
    grid-column: 1/2;
    grid-row: 2/3;
}

.lotto-pd {
    grid-column: 2/3;
    grid-row: 2/3;
}

.sport-pd {
    grid-column: 3/4;
    grid-row: 1/3;
}

.home-product-wrapper a img {
    transition: 0.3s;
}

.home-product-wrapper a:hover img {
    filter: brightness(1.05) drop-shadow(0 3px 5px rgb(0,0,0,0.35)) saturate(1.1);
    transform: scale(1.01);
}

.home-blog-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 10px;
    padding: 20px 0;
}

a.hm-blog-box {
    display: block;
    background: #e0d6bb;
    border: 2px solid #ffe5b8;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 10px 5px;
    color: #944a05;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.btitle {
    padding: 10px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

button.read-blog {
    border: none;
    padding: 0 0 5px;
    background: none;
    color: #944a05;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-home-product-wrapper {
    display: none;
}

/** Info Page **/
.info-sec {
    background: url(../images/home-bg.jpg)no-repeat top center;
    background-size: cover;
    padding: 45px 0;
}

.info-frame {
    background: #fef8ee;
    border-radius: 15px;
    border: 2px solid #ffeac6;
    padding: 35px 45px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 20%);
    color: #242424;
    font-weight: 500;
}

.title-1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 5px;
}

ul.terms, ol.terms {
    padding-left: 17px;
}

table.bank-table {
    background: #f2d6a2;
    text-align: center;
    font-weight: 500;
}

    table.bank-table tr th, table.bank-table tr td {
        border: 1px solid #73716e;
        color: #000;
        padding: 8px 2px;
    }

    table.bank-table tr:nth-child(odd) {
        background: #ffe8bd;
    }

ol.faq-sec {
    padding-left: 17px;
}

    ol.faq-sec li {
        padding-bottom: 14px;
    }

button.btn-tnc {
    background: #2d2d2d;
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 8px 15px;
    color: #fedd5c;
    border: none;
    border-radius: 5px;
    font-weight: 500;
}

    button.btn-tnc.collapsed {
        background: #fedd5c;
        color: #2d2d2d;
        border: none;
        margin-bottom: 5px;
    }

    button.btn-tnc:focus {
        outline: none;
    }

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: #fffaf1;
    padding: 20px 20px 10px;
    border: 1px solid #e6ddd0;
    border-radius: 5px;
    margin-top: 2px;
}

    .tnc-body ol {
        padding-left: 15px;
    }

        .tnc-body ol li {
            padding-bottom: 8px;
        }

.contact-list-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
    margin: 20px 0 30px;
}

.contact-list {
    display: grid;
    grid-template-columns: 100px auto;
    grid-gap: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #f6e5b6;
    background: #2E2E2E;
    padding: 15px 10px;
    transition: 0.3s;
}

    .contact-list:hover {
        background: #fedd5c;
        color: #000;
        transition: 0.3s;
    }

        .contact-list:hover .icon-contact, .contact-list:hover a {
            color: #000;
            transition: 0.3s;
        }

    .contact-list a {
        color: #f6e5b6;
        transition: 0.3s;
    }

.icon-contact {
    text-align: center;
    color: #f6e5b6;
    font-size: 24px;
    line-height: 1;
    transition: 0.3s;
}

.ctinfo {
    align-self: center;
}


/** Game Page **/
.slots-page-sec {
    background: url("../images/slots/slots-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 30px;
}

.game-title-wrap {
    text-align: center;
}

.games-provider-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 0 10px;
}

a.gmbox {
    display: inline-block;
    max-width: 318px;
    margin: 5px auto;
    text-align: center;
}

.gm-img {
    filter: drop-shadow(0px 6px 4px rgb(0,0,0,0.2));
}

.gm-pvd-logo {
    padding: 5px;
}

    .gm-pvd-logo img {
        max-height: 50px;
    }

button.play-game-btn {
    background: #fedd5c;
    border: none;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    height: 38px;
    text-transform: uppercase;
    width: 90%;
    border-radius: 40px;
}

a.gmbox:hover button.play-game-btn {
    background: #ffb400;
}

.lobby-title {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.dlrow-box {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 20px;
}

button.device-dl-btn {
    background: #fedd5c;
    border: none;
    color: #000;
    text-transform: uppercase;
    border-radius: 40px;
    height: 35px;
    font-size: 14px;
    font-weight: 700;
    min-width: 130px;
    padding: 2px;
}

    button.device-dl-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

    button.device-dl-btn i {
        margin-right: 4px;
        font-size: 16px;
    }

.provider-deco {
    position: absolute;
    text-align: center;
    left: 20px;
    right: 0;
    top: -20px;
    pointer-events: none;
}

.lobby-wrapper {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.5);
    border: 1px solid #a89986;
    border-radius: 8px;
    padding: 20px 15px;
    max-width: 1230px;
    margin: 9% auto 0;
    text-align: center;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
}

.lobby-area {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-gap: 20px 10px;
}

.lb-gamebox {
    position: relative;
    font-family: 'Roboto';
    border: 1px solid #fbda8a;
    background: #202020;
    text-align: center;
    padding: 5px;
    display: inline-block;
    max-width: 155px;
    margin: 0 auto;
    box-shadow: 2px 3px 6px rgb(0 0 0 / 80%);
}

.game-name {
    color: #fff;
    font-size: 13px;
    padding-top: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 21px;
}

.playhover {
    background: rgba(0,0,0,0.75);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: ease 0.3s;
}

a.playnow-btn {
    color: #fff;
    border: 1px solid #fedd5c;
    border-radius: 6px;
    padding: 5px 10px 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

    a.playnow-btn:hover {
        background: #fedd5c;
        color: #000;
    }

.lb-gamebox:hover .playhover {
    visibility: visible;
    opacity: 1;
    transition: ease 0.3s;
}

.provider-deco.dlpage {
    max-width: 1060px;
    margin: auto;
}

.game-download-wrapper {
    margin: 100px auto 0;
}

.game-download-wrapper {
    background: rgb(255,249,238,0.75);
    border: 1px solid #a69784;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 120px auto 0;
}

.download-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.download-box {
    position: relative;
    background: #fff9ee;
    border: 1px solid #a69784;
    padding: 15px;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.device-icon {
    position: absolute;
    font-size: 38px;
    color: #383838;
    top: 0px;
    left: 10px;
}

.dl-qrcode img {
    max-height: 160px;
}

.scan-text {
    color: #eac357;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0;
}

.dl-text {
    display: none;
    font-size: 13px;
    color: #161616;
    padding: 5px 0;
    font-weight: 700;
}

button.comm-btn.download {
    font-size: 13px;
    padding: 0 15px;
}

table.info-table tr td {
    border: 1px solid #383838;
    padding: 10px 5px;
    font-weight: 700;
}

    table.info-table tr td:first-child {
        text-transform: uppercase;
        text-align: center;
    }

.pwnote {
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 0;
}

input.pw-input {
    background: #2b2b2b;
    border: 1px solid #e0d6bb;
    border-radius: 40px;
    height: 35px;
    color: #fff;
    padding: 3px 10px 3px 10px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    max-width: 300px;
}

button.comm-btn.password {
    font-size: 12px;
    padding: 0 15px;
}

.casino-page-sec {
    background: url("../images/casino/casino-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 30px;
}

.casino-inner-sec {
    background: url("../images/casino/casino-inner-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 30px;
    text-align: center;
}

.casino-inner-title {
    padding: 5px 15px 0;
}

    .casino-inner-title.shadow-img {
        filter: drop-shadow(1px 2px 1px black);
    }

.casino-prod {
    position: relative;
    margin: 25px 0 0;
}

a.play-casino-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    max-width: 300px;
    padding: 5px 10px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6%;
}

    a.play-casino-btn:hover {
        transform: scale(1.02);
        background: #1b1b1b;
        color: #fff;
        box-shadow: 0 1px 8px rgb(0,0,0,0.4);
    }

.sport-page-sec {
    background: url("../images/sports/sports-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 30px;
}

.sport-inner-sec {
    background: url("../images/sports/sport-innner-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 30px;
    text-align: center;
}

/** Promotions Page **/
.promo-sec {
    background: url("../images/promo/promo-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 30px;
}

.promo-page-title {
    text-align: center;
    padding-bottom: 15px;
}

.mix {
    display: none;
}

.filter-menu {
    background: #2d2d2d;
    border-radius: 40px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.pmbox {
    background: none;
    color: #fedd5c;
    display: inline-block;
    width: 13.96%;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px;
    line-height: 1;
    vertical-align: text-top;
    cursor: pointer;
}

.pmbox-inner {
    border: 3px solid #2d2d2d;
    border-radius: 40px;
    padding: 2px 0;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmbox.active {
    background: #fedd5c;
    color: #2d2d2d;
}

    .pmbox.active .pmbox-inner {
        background: #fedd5c;
    }

.promo-content-area {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px 15px;
    max-width: 1100px;
    margin: 20px auto;
}

.promobox {
    background: #fff9ee;
    color: #000;
    max-width: 550px;
    margin: auto;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.pm-detail-wrap {
    border: 2px solid #fce2b5;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 10px 15px 20px;
}

.pm-img {
    overflow: hidden;
}

    .pm-img img {
        transition: 0.3s;
    }

.comtext {
    height: 80px;
}

.sm-promo-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.smpromo-cn {
    font-family: 'Noto Sans SC';
    font-size: 20px;
    font-weight: 600;
    color: #c8894e;
}

button.pm-more-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
}

button.pm-more-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    height: 40px;
    padding: 4px 20px;
}

    button.pm-more-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

.promobox:hover .pm-img img {
    transform: scale(1.03);
    transition: 0.3s;
}

.promo-inner-img {
    text-align: center;
}

.promo-inner-wrapper {
    position: relative;
    background: #fef8ee;
    border-radius: 15px;
    border: 2px solid #ffeac6;
    padding: 50px 45px 30px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 20%);
    color: #242424;
    font-weight: 500;
    max-width: 900px;
    margin: 15px auto;
}

.pm-inner-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.pm-inner-cn {
    font-family: 'Noto Sans SC';
    font-size: 25px;
    color: #c8894e;
}

.back-btn-wrap {
    max-width: 900px;
    margin: auto;
    padding: 7px 0;
}

a.back-btn {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

/** Blog Page **/
.blog-sec {
    background: url("../images/home-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 15px 0 45px;
}

.blog-page-title {
    text-align: center;
    padding-bottom: 15px;
}

.blog-page-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px 15px;
    max-width: 1100px;
    margin: auto;
}

.blog-box {
    max-width: 600px;
    margin: auto;
    background: #fff9ee;
    border: 2px solid #fbe2ba;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 2px 22px 3px rgb(0 0 0 / 20%);
}

.blog-img {
    overflow: hidden;
}

    .blog-img img {
        transition: 0.3s;
    }

.blog-post-title {
    padding: 15px 0 5px;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
    height: 58px;
    overflow: hidden;
}

.blog-box:hover .blog-img img {
    transform: scale(1.02);
    transition: 0.3s;
}

.blog-inner-text a {
    color: #ffb400;
    font-weight: 500;
}

.blog-inner-content {
    position: relative;
    background: #fff9ee;
    border: 2px solid #ffe7be;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 0 17px 1px rgb(0 0 0 / 25%);
}

.blog-inner-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 90%;
    padding: 5px;
}

.blog-inner-img {
    padding: 10px 0;
}

.blog-inner-text {
    padding: 15px;
    font-weight: 500;
}

a.back-blog-btn {
    background: #fedd5c;
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 45px;
    border-radius: 0 0 0 26px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 55%);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

    a.back-blog-btn i {
        margin-right: 5px;
    }

    a.back-blog-btn:hover {
        color: #fff;
        background: #1b1b1b;
    }

/** 4D Page **/
.lotto-sec {
    background: url("../images/lotto/lotto-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 10px 0 45px;
}

.lotto-page-title {
    text-align: center;
    margin-bottom: -11%;
    position: relative;
}

.lotto-img {
    text-align: center;
}

.lotto-img-mobile {
    text-align: center;
    display: none;
}

.lotto-btn-wrap {
    text-align: center;
    margin-top: -6%;
}

button.payout-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    padding: 12px 23px;
    margin: 0 1px;
}

    button.payout-btn.play {
        background: #ffb400;
    }

    button.payout-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

.lotto-result-content {
    text-align: center;
    padding: 20px 0;
}

.date-result-box {
    display: grid;
    grid-template-columns: 45px auto;
    max-width: 240px;
    height: 46px;
    border: 2px solid #dcb852;
    background: #232323;
    color: #dcb852;
    border-radius: 40px;
    align-items: center;
    padding: 3px 4px;
    font-size: 18px;
    margin: 15px auto 15px;
}

.date-round {
    border: 2px solid #dcb852;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    cursor: pointer;
}

.lotto-result-wrapper {
    max-width: 1000px;
    margin: auto;
    background: #fff9ee;
    border: 2px solid #ffe5b8;
    border-radius: 15px;
    box-shadow: 0 0 16px rgb(0 0 0 / 25%);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    padding: 25px;
}

.lotto-box {
    background: #c5c5c5;
}

.lott-title-grid {
    display: grid;
    grid-template-columns: auto 140px;
    align-items: center;
    background: #363636;
    padding: 1px 0;
    color: #fff;
    height: 45px;
}

.lott-type {
    font-size: 16px;
    font-weight: 600;
}

.cal-date {
    font-size: 13px;
}

.lott-title-box {
    text-align: left;
    padding-left: 15px;
}

table.top-winner tr td {
    padding: 3px 3px;
}

table.special tr.special-title td {
    padding: 4px 3px;
    color: #fff;
}

table.special tr.special-title {
    background: #363636;
    font-weight: 600;
    text-transform: uppercase;
}

table.special tr td {
    padding: 2px 2px;
}

.lotto-box.magnum {
    background: #f6ecd4;
}

    .lotto-box.magnum .lott-title-grid {
        background: #b8860b;
    }

.magnum table.special tr.special-title {
    background: #b8860b;
}

.lotto-box.dmc {
    background: #e3dfde;
}

    .lotto-box.dmc .lott-title-grid {
        background: #231f54;
    }

.dmc table.special tr.special-title {
    background: #231f54;
}

.lotto-box.toto {
    background: #fdded7;
}

    .lotto-box.toto .lott-title-grid {
        background: #ec1c24;
    }

.toto table.special tr.special-title {
    background: #ec1c24;
}

.lotto-box.sgpool {
    background: #e4ebf3;
}

    .lotto-box.sgpool .lott-title-grid {
        background: #2c80fd;
    }

.sgpool table.special tr.special-title {
    background: #2c80fd;
}

.lotto-box.sabah {
    background: #dee2d5;
}

    .lotto-box.sabah .lott-title-grid {
        background: #003c10;
    }

.sabah table.special tr.special-title {
    background: #003c10;
}

.lotto-box.bigsweep {
    background: #def5ed;
}

    .lotto-box.bigsweep .lott-title-grid {
        background: #02d0c9;
    }

.bigsweep table.special tr.special-title {
    background: #02d0c9;
}

/** 4D Result Mobile **/
.lotto-mobile {
    display: none;
}

ul.lt-wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 2px;
    border-bottom: 2px solid #fedd5c;
    padding: 0 2px;
}

.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: #fedd5c;
    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: -1%;
    left: 0;
    right: 0;
    z-index: 10;
}

.result-boxes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.prize {
    background: #f2d6a2;
    font-weight: 600;
    font-size: 14px;
    padding: 3px 2px;
}

.result-tt {
    padding: 7px 2px;
    font-weight: 500;
    font-size: 16px;
    background: #fff9ee;
}

.result-boxes-1 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-ttt {
    padding: 3px 2px;
    font-weight: 500;
    font-size: 14px;
    background: #fff9ee;
}

.table-in div {
    padding: 5px 0;
}

.table-in {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-box {
    border: 1px solid #ffe6c1;
}

.date-box {
    padding: 10px 0px;
    font-size: 16px;
    background: #fff9ee;
}

.info-lotto {
    max-width: 35px;
    margin: 10px auto;
}

/** VIP Page **/
.vip-sec {
    background: url("../images/vip/vip-bg.jpg")no-repeat top center;
    background-size: 100%;
    padding: 10px 0 45px;
}

.title-vip {
    text-align: center;
    padding-bottom: 15px;
}

.vip-wrapper {
    background: #fef8ee;
    border-radius: 20px;
    border: 2px solid #ffeac6;
    padding: 20px 30px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 20%);
    color: #242424;
    font-weight: 500;
    margin-bottom: 15px;
}

table.vip-table {
    font-weight: 500;
}

    table.vip-table tr th {
        border: 1px solid #6c674c;
        padding: 12px 5px;
        text-align: center;
        font-size: 16px;
        letter-spacing: 2px;
        font-weight: 600;
        text-transform: uppercase;
    }

    table.vip-table tr td {
        border: 1px solid #6c674c;
        padding: 12px 5px;
        text-align: center;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.text-initial {
    text-transform: capitalize !important;
}

table.vip-table tr.crowns td {
    border: none;
    padding: 0 0 17px;
}

.vip-term-title {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
}

.tnc-box {
    font-size: 14px;
}

.impt-note .red-text {
    font-size: 13px;
    color: #EA0003;
    margin-bottom: 1px;
    font-weight: 700;
}

.vip-wrapper-mobile {
    display: none;
}

button.btn-vip {
    background: #fef8ee;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    padding: 4px 20px;
    border: 2px solid #ffeac6;
    width: 100%;
    text-align: left;
    position: relative;
}

    button.btn-vip img {
        max-width: 42px;
        margin-right: 15px;
    }

    button.btn-vip:hover {
        color: #000;
    }

    button.btn-vip:focus {
        outline: none;
        box-shadow: none;
    }

.btn.btn-vip.collapsed:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    transform: rotate(0);
    transition: linear 0.3s;
    color: #000;
}

.btn.btn-vip:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #000;
    width: 12px;
    height: 22px;
    position: absolute;
    right: 10px;
    top: 14px;
    transform: rotate(90deg);
    transition: linear 0.3s;
}

.vip-card {
    margin-bottom: 10px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 20%);
    border-radius: 5px;
}

/** Afterlogin Page **/
input.afinput, select.afinput {
    background: #fff9ee;
    border: 1px solid #e0d6bb;
    border-radius: 40px;
    height: 38px;
    color: #3f3f3f;
    padding: 3px 10px 3px 10px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.af-wrapper {
    max-width: 750px;
    margin: 15px auto;
    box-shadow: 0 2px 22px 3px rgb(0 0 0 / 10%);
    border-radius: 0 0 15px 15px;
}

.af-sec {
    background: url("../images/home-bg.jpg")no-repeat top center;
    background-size: cover;
    padding: 30px 0 30px;
}

.wallet-player-wrapper {
    display: grid;
    grid-template-columns: 67% auto;
    grid-gap: 0 20px;
}

.wp-wrap-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff9ee;
    border: 2px solid #f5ddb6;
    border-radius: 15px;
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0 2px 22px 3px rgb(0 0 0 / 20%);
}

.wpgrade {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.wptext {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    color: #7a7a7a;
}

.wpimg img {
    max-height: 70px;
}

.wpimg {
    margin-bottom: 5px;
}

button.depo-btn {
    background: #fedd5c;
    border: 2px solid #fedd5c;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    display: block;
    width: 151px;
    height: 35px;
    margin: 7px 0;
}

    button.depo-btn.allin {
        background: #383838;
        color: #fedd5c;
        font-weight: 600;
    }

    button.depo-btn:hover {
        background: #383838;
        color: #fff;
    }

.vch-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 200px;
    background: #383838;
    overflow: hidden;
    border-radius: 40px;
}

input.voucher-input {
    background: #383838;
    border: none;
    height: 33px;
    padding: 2px 15px;
    color: #fedd5c;
}

button.voucher-btn {
    background: #fedd5c;
    border: none;
    color: #000;
    height: 33px;
    font-size: 23px;
    width: 65px;
    border-radius: 40px;
}

    button.voucher-btn:hover {
        background: #ffb400;
    }

.af-wallet-wrapper {
    background: #fff9ee;
    border: 2px solid #f5ddb6;
    border-radius: 15px;
    padding: 15px 30px;
    box-shadow: 0 2px 22px 3px rgb(0 0 0 / 20%);
    margin: 15px 0;
}

.quickmenu-wrap {
    text-align: center;
    margin-bottom: 15px;
}

.af-quick-menu {
    background: #2d2d2d;
    border-radius: 40px;
    text-align: center;
    margin: auto;
    display: inline-block;
}

a.quickmenu-btn {
    display: inline-block;
    padding: 3px;
    color: #fedd5c;
    border-radius: 40px;
    height: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

.qm-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 40px;
    border: 2px solid #2d2d2d;
    padding: 0 15px;
}

a.quickmenu-btn.active {
    background: #fedd5c;
    color: #2d2d2d;
}

.prod-summary-wrapper {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 10px;
    padding: 15px 0;
}

.pvd-wallet {
    display: grid;
    grid-template-columns: 65px auto;
    align-items: center;
    background: #fff;
    border: 2px solid #edcb6c;
    border-radius: 40px;
    cursor: pointer;
}

.pvd-logo {
    margin: -2px;
}

.pvd-detail {
    text-align: center;
}

.pvd-nm {
    color: #383838;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.pvd-amt {
    color: #9f9f9f;
    font-size: 13px;
    font-weight: 600;
}

.af-field {
    margin-bottom: 12px;
    position: relative;
}

ul.afmenu-nav {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
    grid-gap: 2px;
}

    ul.afmenu-nav.single {
        grid-template-columns: auto;
    }

    ul.afmenu-nav li.nav-item a.nav-link {
        background: #2c2c2c;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        padding: 9px 3px 7px;
        border-bottom: 3px solid transparent;
    }

        ul.afmenu-nav li.nav-item a.nav-link.active {
            background: #fedd5c;
            color: #000;
            border-bottom: 3px solid #eac357;
        }

.tab-content.wallet {
    background: #fffbf3;
    border: 2px solid #e6ddd0;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 10px 15px;
}

a.tutorial-btn {
    display: inline-block;
    background: #fedd5c;
    color: #383838;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.dp-field {
    display: grid;
    grid-template-columns: 220px auto;
    margin-bottom: 12px;
}

.aflabel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 15px;
}

input.reg-input, select.reg-input {
    background: #fff9ee;
    border: 2px solid #e0d6bb;
    border-radius: 40px;
    padding: 3px 20px;
    height: 40px;
    font-weight: 600;
    color: #3f3f3f;
    width: 100%;
}

.bank-account-option {
    display: flex;
    align-items: center;
}

.bank-pay {
    position: relative;
    margin-right: 6px;
}

.input-hide input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.bank-acct-btn {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    margin: 0;
    cursor: pointer;
    display: block;
}

.input-hide[type="radio"],
.input-hide input[type="checkbox"] {
    appearance: none;
    display: none;
}

.bank-acct-btn img {
    filter: grayscale(1);
    max-height: 70px;
}

.input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn {
    border: 2px solid #fedd5c;
}

    .input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn img {
        filter: none;
    }

.submit-btn-wrap {
    text-align: center;
    padding: 10px 0;
}

button.submit-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    min-width: 150px;
    height: 38px;
    padding: 3px;
}

    button.submit-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

.date-time-field {
    display: grid;
    grid-template-columns: 38% 30% 30%;
    grid-gap: 1%;
}

.upload-field {
    display: grid;
    grid-template-columns: auto 180px;
    grid-gap: 0 10px;
}

.field-input {
    position: relative;
}

.upload-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

button.sideup-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    min-width: 150px;
    height: 40px;
    padding: 3px;
}

    button.sideup-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

input:disabled {
    background: #fff9ee;
    color: #3f3f3f;
}

.history-wrapper {
    margin: 20px 0;
}

.time_blk {
    display: block;
}

table.bank-table.history {
    font-size: 14px;
    font-weight: 500;
}

    table.bank-table.history tr td {
        padding: 5px 2px;
    }

.referral-page-title {
    text-align: center;
    padding-bottom: 10px;
}

.referral-wrapper {
    background: rgb(255,255,255,0.30);
    box-shadow: 0 0 10px rgb(0,0,0,0.10);
    border: 2px solid #e5e0d7;
    border-radius: 15px;
    max-width: 1000px;
    margin: auto;
    padding: 15px;
}

.referral-inner {
    max-width: 840px;
    margin: auto;
}

.refer-top-wrap {
    text-align: center;
    color: #3f3f3f;
    font-weight: 500;
}

.refer-title {
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.referral-step {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 5px;
    margin: 15px 0 30px;
}

.refer-gold-base {
    background: url(../images/referral/gold-btn-base.png)no-repeat;
    background-size: 100% 100%;
    max-width: 323px;
    height: 62px;
    padding: 5px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: -10% auto 0;
    position: relative;
    z-index: 2;
}

.refer-stepbox {
    background: #fff;
    border: 3px solid #ffe5b8;
    border-radius: 10px;
    padding: 0px 10px 4px;
}

.refer-terms-wrap {
    padding: 25px 0;
}

button.refer-tnc-btn {
    background: #fedd5c;
    border: none;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    height: 35px;
    padding: 3px 15px;
    margin: 0 3px;
}

    button.refer-tnc-btn:hover {
        background: #1b1b1b;
        color: #fff;
    }

.refer-step-caption {
    font-size: 13px;
    font-weight: 700;
    max-width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-top: 3px;
}

.refer-reward-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
}

.refer-reward-box {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.frame-referral {
    background: #fff9ee;
    border: 2px solid #f5ddb6;
    padding: 10px 15px;
    border-radius: 13px;
    margin: 5px 0 10px;
}

.reftitle {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
}

.referfield {
    display: grid;
    grid-template-columns: auto 120px;
    grid-gap: 0 15px;
    align-items: center;
}

video.tutorial {
    height: 100vh;
}

.mail-af-wrapper {
    background: #fffbf3;
    max-width: 1000px;
    margin: 15px auto;
    box-shadow: 0 2px 22px 3px rgb(0 0 0 / 10%);
    border-radius: 0 0 15px 15px;
}

.inbox-wrapper {
    padding: 5px 20px;
}

.mail-top-wrap {
    display: grid;
    grid-template-columns: 57% 25% 18%;
    text-align: center;
    background: #fedd5c;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0;
    text-transform: uppercase;
}

.mail-box {
    display: grid;
    grid-template-columns: 60px 58% 22% auto;
    background: #fff9ee;
    border: 2px solid #e4dbc2;
    border-radius: 40px;
    margin: 10px 0;
    align-items: center;
    color: #3f3f3f;
    height: 42px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

    .mail-box.unread {
        background: #fff0ce;
    }

    .mail-box:hover {
        background: #fedd5c;
        border: 2px solid #fedd5c;
    }

.mail-status {
    text-align: center;
    font-size: 17px;
}

.mtitle-box {
    padding: 0 10px 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.action-link {
    text-align: center;
}

button.remove-btn {
    background: none;
    padding: 0;
    border: none;
    font-size: 17px;
    color: #3f3f3f;
}

.loadmore-btn-wrap {
    text-align: center;
    padding: 10px 0;
}

button.comm-btn.load {
    min-width: auto;
    padding: 3px 20px;
}




/** Responsive **/
@media(max-width: 1100px) {
    .filter-menu {
        background: none;
    }

    .pmbox {
        background: #2d2d2d;
        margin: 5px 0px;
        width: 24%;
    }
}

@media(max-width: 991px) {
    body {
        padding-bottom: 100px;
    }

    .t-body, .t-body.home {
        padding-top: 61px;
    }

    .m-none {
        display: none;
    }

    .header-btm, .ft-logo-provider {
        display: none;
    }

    .header-top-container {
        height: 60px;
    }

    .header-top.theme::before {
        width: 33%;
        height: 100%;
    }

    .header-top.theme::after {
        width: 30%;
        height: 100%;
    }

    .logo {
        position: absolute;
        left: 0;
        right: 0;
        max-width: 124px;
        margin: auto;
    }

        .logo img {
            max-height: 53px;
        }

    button.hamburger-btn {
        display: inline-block;
        background: none;
        border: none;
        color: #fcd656;
        padding: 5px;
        font-size: 27px;
        filter: drop-shadow(2px 2px 1px rgb(0,0,0,0.5));
    }

    button.account-menu-btn {
        display: inline-block;
        background: #fcd656;
        border: none;
        padding: 2px;
        min-width: 55px;
        height: 36px;
        border-radius: 30px;
        margin: 0 4px;
    }

        button.account-menu-btn img {
            max-width: 25px;
        }

    .player-top-wrap, button.inbox-menu-btn, .af-btn-wrap {
        display: none;
    }

    .footer-top {
        background: #1b1b1b;
        border-top: 1px solid #fbec9c;
    }

    .max-container.footer {
        background: linear-gradient(to bottom, rgba(40,40,40,1) 0%, rgba(40,40,40,1) 33%, rgba(24,24,24,1) 100%);
    }

    .ft-menu-wrapper {
        background: none;
    }

    .footer-btm {
        border-top: none;
    }

    .contact-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(0,0,0,0.5);
        padding: 10px;
        text-align: center;
    }

        .contact-footer a {
            display: inline-block;
            margin: 0 10px;
        }

            .contact-footer a img {
                max-height: 50px;
            }

    .mobile-login-wrap {
        display: block;
    }

    .commbtn-wrap-mobile button {
        width: 48%;
        margin: 0 0.5%;
    }

    .bottom-mobile-menu {
        display: block;
    }

    .mobile-home-product-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 5px;
        padding: 20px 0;
        text-align: center;
    }

    .home-blog-wrapper {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }

    .provider-deco {
        display: none;
    }

    .lobby-title {
        padding-top: 5px;
    }

    .lobby-wrapper {
        margin: 30px auto 0;
    }

    .games-provider-wrapper {
        grid-template-columns: repeat(3,1fr);
    }

    .lobby-area {
        grid-template-columns: repeat(5,1fr);
    }

    .game-download-wrapper {
        margin: 20px auto 0;
    }

    .dl-qrcode, .scan-text {
        display: none;
    }

    .dl-text {
        display: block;
    }

    .device-icon {
        position: initial;
        background: #fff9ee;
        border: 2px solid #a69784;
        max-width: 100px;
        margin: 0 auto 10px;
        border-radius: 10px;
        font-size: 70px;
        padding: 5px;
        line-height: 1;
        box-shadow: 0 3px 8px rgb(0 0 0 / 20%);
    }

    .reg-deco-1, .reg-deco-2 {
        display: none;
    }

    .blog-inner-title {
        font-size: 24px;
    }

    .lotto-img, .lotto-result-wrapper {
        display: none;
    }

    .lotto-img-mobile {
        display: block;
    }

    .lotto-mobile {
        display: block;
    }

    .vip-wrapper {
        display: none;
    }

    .vip-wrapper-mobile {
        display: block;
        margin-bottom: 30px;
    }

    .af-sec {
        padding: 0 0 30px;
    }

    .wallet-player-wrapper {
        display: none;
    }

    .af-wallet-wrapper {
        background: none;
        border: none;
        border-radius: 15px;
        padding: 0;
        box-shadow: none;
        margin: 0;
    }

    .af-quick-menu a.quickmenu-btn:first-child, .af-quick-menu a.quickmenu-btn:last-child {
        display: none;
    }

    .af-quick-menu {
        border-radius: 0;
        margin: auto -10px;
        display: grid;
        grid-template-columns: repeat(5,1fr);
    }

    a.quickmenu-btn {
        border-radius: 0;
        height: 50px;
    }

    .qm-inner {
        border-radius: 0;
        border: none;
        padding: 0;
    }

    .prod-summary-wrapper {
        display: none;
    }

    .contact-side-sec {
        display: none;
    }
}

@media (max-width: 767px) {
    .carousel-item img {
        object-fit: cover;
        object-position: center;
        height: 38vw;
    }

    .lobby-area {
        grid-template-columns: repeat(4,1fr);
    }

    .contact-list-wrapper {
        grid-template-columns: auto;
        margin: 0 0 10px;
    }

    a.play-casino-btn {
        height: 10vw;
        width: 38vw;
        font-size: 4.5vw;
    }

    .promo-content-area {
        grid-template-columns: auto;
    }

    .sm-promo-title, .smpromo-cn {
        font-size: 18px;
        line-height: 1.1;
    }

    .comtext {
        height: 70px;
    }

    button.pm-more-btn {
        font-size: 15px;
        height: 38px;
    }

    a.quickmenu-btn {
        font-size: 11px;
    }

    .dp-field, .aflabel {
        display: block;
    }

    .inbox-wrapper {
        padding: 5px 10px;
    }

    .mail-top-wrap {
        font-size: 14px;
        grid-template-columns: 65% 18% 17%;
    }

    .mdate {
        text-align: center;
    }

    .mtime {
        display: block;
    }

    .mail-box {
        font-size: 14px;
        grid-template-columns: 40px 58% 22% auto;
    }

    .blog-page-wrapper {
        grid-template-columns: auto;
    }

    .referfield {
        grid-template-columns: auto;
    }

    .referral-qr {
        margin: 10px 0;
    }

        .referral-qr img {
            max-height: 150px;
        }

    .refer-title {
        font-size: 28px;
    }

    .referral-page-title {
        max-width: 85%;
        margin: auto;
    }

    .referral-step {
        grid-template-columns: auto;
    }

    .refer-stepbox {
        max-width: 350px;
        width: 100%;
        margin: auto;
    }

    .refer-reward-wrapper {
        grid-template-columns: auto;
    }
}

@media (max-width: 600px) {
    .mobile-menu-wrap {
        display: grid;
        grid-template-columns: 18% 18% auto 18% 18%;
        text-align: center;
        height: 60px;
    }

    a.home-btm-round {
        width: 18vw;
        height: 18vw;
        padding: 4%;
        bottom: 36%;
    }

    a.btmbox img {
        max-height: 26px;
        margin-bottom: 3px;
    }

    a.btmbox {
        padding: 10px 0;
        font-size: 9px;
    }

    .center-curve {
        background: url(../images/btm-menu-center.png)no-repeat bottom center;
        background-size: 48vw 102%;
    }

    .reg-wrapper {
        padding: 20px 15px;
        font-size: 14px;
    }

    .reg-field, .reg-label {
        display: block;
    }

    .verify-wrap-field {
        grid-template-columns: 50% auto;
    }

    button.big-submit-btn {
        font-size: 18px;
        padding: 10px 30px;
    }

        button.big-submit-btn.login {
            min-width: 190px;
        }

    .info-sec {
        padding: 30px 0;
    }

    .info-frame {
        padding: 20px 15px;
        font-size: 14px;
    }

    .title-1 {
        font-size: 22px;
    }

    .promo-inner-wrapper {
        padding: 48px 15px 15px;
        font-size: 14px;
    }

    .pm-inner-title {
        font-size: 20px;
        line-height: 1.1;
    }

    .pm-inner-cn {
        font-size: 21px;
    }

    .pmbox {
        font-size: 13px;
        width: 32%;
        margin: 3px 0px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 18%;
    }

    button.lang-btn {
        height: 30px;
    }

    .dropdown.language img {
        max-height: 20px;
    }

    button.account-menu-btn {
        height: 30px;
        min-width: 45px;
    }

        button.account-menu-btn img {
            max-width: 20px;
        }

    .dual-title-wrap {
        font-size: 30px;
    }

    .cn-title {
        font-size: 22px;
    }

    .home-product-sec {
        background-size: 120%;
    }

    a.hm-blog-box {
        padding: 5px 5px 5px;
        font-size: 10px;
    }

    .games-provider-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    button.play-game-btn {
        font-size: 15px;
        height: 30px;
    }

    .gm-pvd-logo {
        padding: 5px 10px;
    }

    .lobby-area {
        grid-template-columns: repeat(3,1fr);
    }

    button.device-dl-btn {
        font-size: 11px;
        min-width: 100px;
    }

    .lobby-wrapper {
        padding: 10px 10px;
    }

    .game-download-wrapper {
        padding: 10px;
    }

    .download-box {
        padding: 10px;
    }

    .download-wrap {
        grid-gap: 10px;
    }

    button.comm-btn.download {
        font-size: 12px;
        padding: 0 10px;
    }

    table.info-table {
        font-size: 13px;
    }

    .pwnote {
        font-size: 12px;
    }

    .reg-title {
        max-width: 90%;
        margin: auto;
    }

    .contact-list {
        grid-template-columns: 70px auto;
        font-size: 16px;
    }

    .tnc-body {
        padding: 15px 14px 10px;
    }

    .blog-inner-title {
        font-size: 20px;
        padding-top: 30px;
        max-width: 100%;
    }

    a.back-blog-btn {
        width: 85px;
        height: 35px;
        font-size: 13px;
    }

    .blog-inner-text {
        padding: 10px;
        font-size: 14px;
    }

    button.payout-btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    ul.afmenu-nav li.nav-item a.nav-link {
        font-size: 14px;
    }

    input.reg-input, select.reg-input {
        padding: 3px 10px;
        font-size: 14px;
    }

    .bank-acct-btn img {
        max-height: 55px;
    }

    .upload-field {
        grid-template-columns: auto auto;
    }

    button.sideup-btn {
        font-size: 13px;
        min-width: auto;
        padding: 3px 10px;
    }

    table.bank-table.history {
        font-size: 13px;
    }

    .mdate {
        font-size: 11px;
    }

    .mail-box {
        font-size: 13px;
        grid-template-columns: 30px 58% 22% auto;
    }

    .mail-top-wrap {
        font-size: 12px;
    }

    .mail-status, button.remove-btn {
        font-size: 14px;
    }

    button.comm-btn {
        font-size: 13px;
        height: 32px;
    }

    .blog-post-title {
        font-size: 15px;
    }

    table.bank-table {
        font-size: 14px;
    }

    .frame-referral {
        padding: 10px 10px;
    }

    .reg-title {
        max-width: 70%;
    }

    .blog-page-title {
        max-width: 70%;
        margin: auto;
    }
}

/** Register Password input update - 26/8/2024 **/
.reg-field.pw-validation {
    align-items: baseline;
}

ul.list-valid {
    padding-left: 15px;
    list-style: none;
    margin: 5px 0 0;
    font-weight: 500;
    font-size: 13px;
}

    ul.list-valid li i {
        color: #E20003;
    }

    ul.list-valid li .text-success i {
        color: #28a745 !important;
    }

/** UUSlots floating side Updated -27/8/2024 **/
.float-side-wrapper {
    position: fixed;
    left: 0;
    bottom: 50px;
    z-index: 999;
    text-align: center;
    max-width: 250px;
    background: rgb(0, 0, 0, 0.5);
    padding: 15px 15px;
    border-radius: 0 10px 10px 0;
    transition: ease-in-out 0.3s;
}

    .float-side-wrapper.active {
        transform: translateX(-80%);
        transition: ease-in-out 0.3s;
    }

button.fside-btn {
    position: absolute;
    right: 9px;
    top: 47%;
    margin: 0 auto;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: none;
    background: #fff;
    font-size: 12px;
    padding: 0;
}

    button.fside-btn:hover {
        background: #ffb400;
    }

.float-side-wrapper.active button.fside-btn i {
    transform: rotate(180deg);
    transform-origin: center;
}

.fside-img:hover {
    transform: scale(0.98);
    filter: brightness(1.07);
}

@media(max-width: 991px) {
    .float-side-wrapper {
        bottom: 90px;
        max-width: 170px;
    }
}

@media(max-width: 480px) {
    .float-side-wrapper {
        bottom: 90px;
        max-width: 150px;
        padding: 10px 15px;
    }

    button.fside-btn {
        right: 6px;
        top: 46%;
        height: 14px;
        width: 14px;
        font-size: 8px;
    }
}

.event-floating-icon {
    position: fixed;
    left: 15px;
    bottom: 100px;
    z-index: 99;
    max-width: 180px;
    animation: float 1.8s ease-in-out infinite;
}

@-webkit-keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .event-floating-icon {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    .event-floating-icon {
        max-width: 110px;
    }
}

@media (max-width: 480px) {
    .event-floating-icon {
        max-width: 85px;
    }
}

/** Updated - 24/4/2025 **/
.banking-detail {
    margin: 15px 0 0;
    background: #fff9ee;
    border: 2px solid #e0d6bb;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px;
}

table.bktable tr td {
    padding: 5px 5px;
    font-weight: 600;
    color: #3f3f3f;
}

@media(max-width: 480px) {
    .banking-detail {
        font-size: 13px;
    }
}
