@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');

body {
    font-family: "Lato", sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: #4e4e4e;
    background: #dce2f0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

    a:hover, a:focus, button:focus, button:hover, input:focus, select:focus, textarea:focus {
        text-decoration: none;
        outline: none;
    }

img {
    max-width: 100%;
}

input, textarea, select {
    color: #666;
    width: 100%;
}

    input:focus {
        outline: none;
    }

button {
    background: none;
    border: none;
    padding: 0;
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(159, 100, 249, 1) 0%, rgba(219, 66, 125, 1) 100%);
    border-radius: 30px;
}

    html::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to top, rgba(159, 100, 249, 1) 0%, rgba(219, 66, 125, 1) 100%);
    }

.t-body {
    overflow: hidden;
    padding-top: 125px;
}

.deco {
    position: absolute;
}

.max-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

/** Header**/
.header-sec {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 99;
    width: 100%;
    box-shadow: 0 1px 7px rgb(0, 0, 0, 0.25);
}

.header-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
    height: 75px;
}

button.hamburger-button {
    display: none;
}

.logo {
    max-width: 200px;
}

    .logo img {
        max-height: 70px;
    }

.header-rightwrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

button.switch-btn {
    background: #dee4f2;
    border-radius: 50%;
    max-width: 40px;
    padding: 5px;
    margin: 0 2px;
}

    button.switch-btn:hover {
        background: #687da8;
    }

        button.switch-btn:hover img {
            filter: brightness(10) contrast(1);
        }

img.night-icon {
    display: none;
}

button.switch-btn.active img.day-icon {
    display: none;
}

button.switch-btn.active img.night-icon {
    display: block;
}

.dropdown.login {
    margin: 0 2px;
}

button.grey-btn {
    background: #464646;
    border: 2px solid #f64c8b;
    color: #fff;
    border-radius: 40px;
    height: 40px;
    min-width: 140px;
    padding: 4px 7px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 1px #a5678e;
}

    button.grey-btn:hover {
        background: #f64c8b;
    }

.mobile-login {
    display: none;
}

.join-btn-wrap {
    margin: 0 2px;
}

button.pink-btn {
    background: linear-gradient(180deg, rgba(255,79,145,1) 0%, rgba(219,66,123,1) 100%);
    border: 2px solid #f64c8b;
    color: #fff;
    border-radius: 40px;
    height: 40px;
    min-width: 140px;
    padding: 1px 7px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 1px #a5678e;
}

    button.pink-btn:hover {
        background: linear-gradient(180deg, rgba(172,87,254,1) 0%, rgba(240,52,131,1) 100%);
    }

.dropdown.language {
    margin: 0 0 0 5px;
}

button.lang-btn {
    background: #dee4f2;
    border-radius: 40px;
    padding: 4px 5px;
    height: 40px;
    width: 65px;
    color: #33539e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
}

    button.lang-btn img {
        max-width: 27px;
        margin-right: 5px;
    }

.dropdown-menu.language {
    background: #dee4f2;
    border: 1px solid #d4d4d4;
    width: 100%;
    min-width: auto;
    padding: 0;
    border-radius: 7px;
    overflow: hidden;
}

a.lang-item {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2px 0;
}

    a.lang-item img {
        max-width: 30px;
    }

    a.lang-item:hover {
        background: #f64c8b;
    }

.dropdown-login {
    background: linear-gradient(37deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    position: absolute;
    z-index: 2;
    min-width: 300px;
    right: 0;
    top: 144%;
    border-radius: 10px;
    padding: 15px 15px;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.dropdown.login.active .dropdown-login {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 3px 5px rgb(0,0,0,0.6);
}

.dropdown-login::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #83b0c9;
    margin: 0 auto;
    position: absolute;
    top: -9px;
    right: 58px;
}

.welcome-title {
    text-align: center;
    color: #fff;
    font-size: 17px;
    padding-bottom: 10px;
}

.input-wrap {
    position: relative;
    margin-bottom: 10px;
}

input.login-input {
    background: #fff;
    border-radius: 45px;
    border: none;
    height: 40px;
    padding: 2px 15px;
}

span.user-icon {
    position: absolute;
    right: 15px;
    top: 9px;
    font-size: 18px;
    color: #666;
}

.field-icon {
    position: absolute;
    right: 11px;
    top: 12px;
    font-size: 18px;
    color: #666;
    z-index: 2;
}

.login-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
    color: #fff;
}

.check-group {
    display: flex;
    align-items: center;
}

input.rmbinput {
    margin-right: 2px;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .check-group label:before {
        content: '';
        -webkit-appearance: none;
        background-color: #fff;
        border: none;
        border-radius: 2px;
        padding: 3px;
        display: inline-block;
        position: relative;
        vertical-align: text-bottom;
        cursor: pointer;
        margin-right: 5px;
        width: 13px;
        height: 13px;
        color: #fff;
    }

.check-group input:checked + label:before {
    background: #db427b;
}

.check-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

a.forgot-link {
    color: #fff;
    text-decoration: underline;
}

    a.forgot-link:hover {
        color: #db427b;
    }

button.login-btn {
    background: linear-gradient(180deg, rgba(143,166,213,1) 0%, rgba(106,127,170,1) 100%);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 40px;
    height: 38px;
    width: 140px;
    padding: 4px 7px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgb(0,0,0,0.3);
    text-shadow: 0 2px 1px #a5678e;
}

    button.login-btn:hover {
        background: linear-gradient(0deg, rgba(143,166,213,1) 0%, rgba(106,127,170,1) 100%);
        box-shadow: 0 1px 2px rgb(0,0,0,0.3);
    }

.reg-note {
    text-align: center;
    font-size: 13px;
    padding: 0 0 5px;
    color: #fff;
}

a.reg-link {
    color: #fffc00;
    text-decoration: underline;
}

    a.reg-link:hover {
        color: #fff;
    }

.header-bottom {
    background: #dee4f2;
    position: relative;
}

.header-menu-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

ul.nav.header-menu {
    height: 50px;
    align-items: center;
    justify-content: space-evenly;
}

    ul.nav.header-menu li.menu-item a.menu-link {
        position: relative;
        color: #687da8;
        font-size: 18px;
        font-weight: 700;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2px 4px 0 4px;
        border-bottom: 3px solid transparent;
    }

        ul.nav.header-menu li.menu-item a.menu-link.active, ul.nav.header-menu li.menu-item a.menu-link:hover {
            color: #e54681;
            border-bottom: 3px solid #e54681;
        }

            ul.nav.header-menu li.menu-item a.menu-link.active::after, ul.nav.header-menu li.menu-item a.menu-link:hover::after {
                content: '';
                width: 0;
                height: 0;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-bottom: 5px solid #e54681;
                margin: 0 auto;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
            }

.greybox-wrap {
    background: #687da8;
    display: grid;
    grid-template-columns: 25px auto;
    grid-gap: 5px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    min-width: 100px;
    max-width: 150px;
    border-radius: 45px;
    margin: 0 2px;
    padding: 0 12px;
    height: 40px;
    box-shadow: inset 0 2px 3px rgb(0,0,0,0.5);
    font-size: 15px;
    font-weight: 700;
}

    .greybox-wrap.wallet {
        min-width: 120px;
    }

button.acc-btn {
    max-width: 40px;
    position: relative;
    margin: 0 4px;
}

span.mail-notice {
    background: #e1447e;
    color: #fff;
    border-radius: 50%;
    height: 17px;
    width: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    right: -4px;
    top: 0px;
    z-index: 1;
}

.dropdown-account {
    background: linear-gradient(37deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    position: absolute;
    min-width: 300px;
    top: 35% !important;
    left: 50% !important;
    border-radius: 10px;
    padding: 0;
    border: none;
    box-shadow: 0 3px 5px rgb(0,0,0,0.6);
}

    .dropdown-account::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #83b0c9;
        margin: 0 auto;
        position: absolute;
        top: -10px;
        right: 29px;
        z-index: -1;
    }

.header-user-wrap {
    background: rgb(219, 229, 253, 0.3);
    box-shadow: 0 1px 9px rgb(0,0,0,0.2);
    display: grid;
    grid-template-columns: 55px auto;
    grid-gap: 20px;
    align-items: center;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    color: #fff;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.utext-2 {
    color: #e4ebfc;
    padding: 5px 0;
}

ul.nav.accmenu {
    flex-direction: column;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

    ul.nav.accmenu li {
        position: relative;
        width: 100%;
    }

        ul.nav.accmenu li a.acc-nav {
            display: flex;
            align-items: center;
            color: #fff;
            padding: 8px 15px;
            font-weight: 500;
            font-size: 17px;
            position: relative;
            text-transform: uppercase;
        }

            ul.nav.accmenu li a.acc-nav:hover {
                background: #b6b8dd;
            }

            ul.nav.accmenu li a.acc-nav img {
                max-height: 27px;
                margin-right: 15px;
            }

        ul.nav.accmenu li.logout {
            border-top: 2px solid #b6b8dd;
        }

span.mailnum {
    background: #e1447e;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-size: 14px;
}

.header-wallet-wrap {
    position: relative;
}

.greybox-wrap.wallet {
    cursor: pointer;
}

.dropdown-login.wallet {
    padding: 0;
    border-radius: 0;
    background: #fff;
    min-width: 400px;
    z-index: 999;
}

    .dropdown-login.wallet.active {
        visibility: visible;
        opacity: 1;
    }

    .dropdown-login.wallet::after {
        border-bottom: 10px solid rgba(239, 10, 106, 1);
    }

.main-wallet {
    background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
}

button.all-btn {
    background: #fff;
    border: 1px solid #fff;
    color: #e54681;
    border-radius: 40px;
    padding: 1px 15px;
    height: 26px;
}

    button.all-btn:hover {
        background: #687da8;
        color: #fff;
    }

table.mw-tb.main {
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
}

table.mw-tb tr td {
    padding: 3px 2px;
}

.prov-balc {
    padding: 10px 15px;
    max-height: 70vh;
    overflow: auto;
}

    .prov-balc::-webkit-scrollbar {
        width: 4px;
    }

    .prov-balc::-webkit-scrollbar-track {
        background: rgba(182, 53, 156, 1);
    }

    .prov-balc::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, rgba(159, 100, 249, 1) 0%, rgba(219, 66, 125, 1) 100%);
    }

        .prov-balc::-webkit-scrollbar-thumb:hover {
            background: #687da8;
        }

table.mw-tb {
    text-transform: uppercase;
    font-size: 14px;
    text-align: right;
}

    table.mw-tb tr td:first-child {
        text-align: left;
    }

button.trans-btn {
    background: #7ab529;
    border: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    min-width: 50px;
    height: 23px;
    border-radius: 1px;
    margin: 0px 4px;
}

    button.trans-btn.red {
        background: #e54681;
    }

    button.trans-btn:hover {
        filter: brightness(1.1);
    }












/** Footer **/
.footer-sec {
    border-top: 1px solid #fff;
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
}

.footer-top {
    border-bottom: 1px solid #fff;
}

.footer-top-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-follow-us {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

    .ft-follow-us a {
        display: inline-block;
        max-width: 26px;
        margin: 0 2px;
    }

ul.nav.footer-nav {
    justify-content: center;
}

    ul.nav.footer-nav li.ft-item {
        position: relative;
        border-right: 2px solid #fff;
        line-height: 0.6;
        padding: 0 10px;
    }

        ul.nav.footer-nav li.ft-item:last-child {
            border-right: none;
        }

        ul.nav.footer-nav li.ft-item a.ft-link {
            color: #fff;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 700;
        }

            ul.nav.footer-nav li.ft-item a.ft-link:hover {
                color: #e64682;
            }

.footer-btm-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 10px;
    color: #fff;
}

.ftpvd-title {
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
}

.logo-provider {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 5px;
}

.logo-item {
    text-align: center;
    background: rgb(0, 0, 0, 0.2);
    border-radius: 8px;
}

.logo-provider .logo-item:nth-child(n+10) {
    display: none;
}

.logo-provider.active .logo-item:nth-child(n+10) {
    display: block;
}

.prov-btn-wrap {
    text-align: center;
    padding: 15px 0 10px;
}

button.prov-btn {
    border: 1px solid #fff;
    border-radius: 40px;
    background: rgb(255, 255, 255, 0.15);
    color: #fff;
    text-shadow: 0 2px 1px #6a6a6a;
    padding: 5px 20px;
    font-size: 15px;
    font-weight: 700;
}

.footer-copyright {
    background: rgb(0, 0, 0, 0.12);
    text-align: center;
    font-size: 13px;
    padding: 7px 10px;
    color: #fff;
}

button#backtop-btn {
    position: fixed;
    right: 5px;
    bottom: 30px;
    z-index: 99;
    color: #a5678e;
    border-radius: 50%;
    border: 2px solid #a5678e;
    height: 45px;
    width: 45px;
    font-size: 18px;
    display: none;
}

    button#backtop-btn:hover i {
        transform: translateY(-5px);
        transition: 0.2s;
    }

/** Floating Bubble **/
.float-container {
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 99;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-15px);
    }

    100% {
        transform: translatey(0px);
    }
}

#toggle {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

    #toggle:checked ~ .menu-round .menu__item:nth-child(1) {
        transition: all 250ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
        transform: translate3d(-1.5em, -4em, 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(-3.5em, -1.4em, 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(-3.5em, 1.9em, 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(-1.5em, 4.5em, 0);
    }

.menu__button {
    position: absolute;
    cursor: pointer;
    transition: all 100ms ease;
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

    .menu__button:hover {
        transform: scale(1.08);
    }

#toggle:checked + .menu__toggle > .menu__button {
    animation: none;
}

.menu-round {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
    left: 0;
    top: 0;
}

.menu__item {
    color: #fff;
    padding: 5px;
    max-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    transition: all 250ms;
    visibility: hidden;
    opacity: 0;
}

    .menu__item a {
        transition: 0.2s;
    }

        .menu__item a:hover {
            transform: scale(1.03);
            filter: brightness(1.07);
            transition: 0.2s;
        }

#toggle:checked ~ .menu-round .menu__item {
    visibility: visible;
    opacity: 1;
}

/** Mobile Bottom Menu **/
.mobile-footer-menu {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
    display: none;
}

.footer-menu-nav {
    background: rgb(195,196,255);
    background: linear-gradient(180deg, #b3caf7 0%, #687da8 100%);
    height: 65px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

a.ftmenu-item, a.sub-ftmenu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    height: 100%;
    text-shadow: 0 1.5px 1px #1344a3;
}

a.ftmenu-item {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.mntext {
    margin-top: 3px;
}

img.ftmn-icon-1 {
    filter: drop-shadow(0 1px 0px #1344a3);
}

img.ftmn-icon-1, img.ftmn-icon {
    max-height: 33px;
}

a.ftmenu-item:hover, a.ftmenu-item.active {
    background: linear-gradient(180deg, rgba(235,20,110,1) 0%, rgba(187,52,152,1) 100%);
    border-color: #fff;
}

.ftmenu-dropdown {
    background: #b6359c;
    position: absolute;
    width: 100%;
    padding: 0;
    z-index: 99;
    border-radius: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #fff;
    float: none;
    min-width: auto;
}

.ftmenu-dropdown-wrap {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #fff;
    height: 65px;
}

.ftmenu-dropdown.dropdown-menu.show {
    top: -100% !important;
    transform: none !important;
}


/** Home page **/
.member-home-top {
    background: #687da8;
    color: #fff;
    display: none;
}

.mbtopbox {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 14px;
    text-align: center;
}

.lvlbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 1;
    padding: 0 5px;
}

.mbtopvip {
    margin-right: 5px;
}

    .mbtopvip img {
        max-width: 30px;
    }

.cpbox {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    padding: 8px 5px;
}

    .cpbox img {
        max-height: 20px;
    }

.mobile-slider {
    display: none;
}

.home-top {
    background: url("../images/bg-home.jpg")no-repeat bottom center;
    background-size: cover;
}

.game-categoty-content {
    padding: 20px 0;
}

.category-tab-wrapper {
    background: linear-gradient(180deg, #687da8 0%, #b3caf7 100%);
    border: 2px solid #fff;
    border-radius: 40px;
    box-shadow: 0 2px 6px rgb(0,0,0,0.2);
}

ul.nav.nav-category {
    height: 55px;
    align-items: center;
    justify-content: space-evenly;
}

    ul.nav.nav-category li.nav-item {
    }

        ul.nav.nav-category li.nav-item a.nav-link {
            padding: 4px 18px;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            text-shadow: 0 2px 1px #1344a3;
            text-transform: uppercase;
            text-align: center;
            display: flex;
            align-items: center;
            border: 2px solid transparent;
            border-radius: 40px;
        }

            ul.nav.nav-category li.nav-item a.nav-link.active, ul.nav.nav-category li.nav-item a.nav-link:hover {
                background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
                border: 2px solid #fff;
                box-shadow: 0 2px 5px rgb(0,0,0,0.3);
            }

.ctg-icon {
    margin-right: 5px;
}

    .ctg-icon img {
        max-width: 23px;
        filter: drop-shadow(0px 2px 1px #1344a3);
    }

.tab-content.home {
    padding: 30px 0;
}

.games-provider-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}

.pvd-gamebox {
    background: url("../images/base-bg/slots-base-1.jpg");
    position: relative;
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    border-radius: 14px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

    .pvd-gamebox::after {
        content: '';
        width: 91%;
        height: 90%;
        border: 2px solid #fff;
        border-radius: 12px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        pointer-events: none;
        z-index: 0;
    }

.pg-img {
    position: relative;
    z-index: 1;
    max-width: 200px;
    margin: 0 auto;
}

a.prdhover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: rgb(31, 36, 53, 0.7);
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 2;
}

.play-icon {
    font-size: 30px;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.2);
}

.pvdname {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.2);
}

.pvd-gamebox:hover a.prdhover {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.pvd-gamebox:hover .pg-img {
    filter: blur(0.5px);
}

.pvd-gamebox:hover a.prdhover .play-icon, .pvd-gamebox:hover a.prdhover .pvdname {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: 0.3s;
    transition-delay: 0.1s;
}

.slots .pvd-gamebox:nth-child(7n+1) {
    background: url("../images/base-bg/slots-base-1.jpg");
}

.slots .pvd-gamebox:nth-child(7n+2) {
    background: url("../images/base-bg/slots-base-2.jpg")
}

.slots .pvd-gamebox:nth-child(7n+3) {
    background: url("../images/base-bg/slots-base-3.jpg")
}

.slots .pvd-gamebox:nth-child(7n+4) {
    background: url("../images/base-bg/slots-base-4.jpg")
}

.slots .pvd-gamebox:nth-child(7n+5) {
    background: url("../images/base-bg/slots-base-5.jpg")
}

.slots .pvd-gamebox:nth-child(7n+6) {
    background: url("../images/base-bg/slots-base-6.jpg")
}

.slots .pvd-gamebox:nth-child(7n+7) {
    background: url("../images/base-bg/slots-base-7.jpg")
}
/** Appslots **/
.appslots .pvd-gamebox:nth-child(7n+1) {
    background: url("../images/base-bg/app-base-1.jpg");
}

.appslots .pvd-gamebox:nth-child(7n+2) {
    background: url("../images/base-bg/app-base-2.jpg")
}

.appslots .pvd-gamebox:nth-child(7n+3) {
    background: url("../images/base-bg/app-base-3.jpg")
}

.appslots .pvd-gamebox:nth-child(7n+4) {
    background: url("../images/base-bg/app-base-4.jpg")
}

.appslots .pvd-gamebox:nth-child(7n+5) {
    background: url("../images/base-bg/app-base-5.jpg")
}

.appslots .pvd-gamebox:nth-child(7n+6) {
    background: url("../images/base-bg/app-base-6.jpg")
}

.appslots .pvd-gamebox:nth-child(7n+7) {
    background: url("../images/base-bg/app-base-7.jpg")
}

/** Fishing **/
.fishing .pvd-gamebox:nth-child(7n+1) {
    background: url("../images/base-bg/fish-base-1.jpg");
}

.fishing .pvd-gamebox:nth-child(7n+2) {
    background: url("../images/base-bg/fish-base-2.jpg")
}

.fishing .pvd-gamebox:nth-child(7n+3) {
    background: url("../images/base-bg/fish-base-3.jpg")
}

.fishing .pvd-gamebox:nth-child(7n+4) {
    background: url("../images/base-bg/fish-base-4.jpg")
}

.fishing .pvd-gamebox:nth-child(7n+5) {
    background: url("../images/base-bg/fish-base-5.jpg")
}

.fishing .pvd-gamebox:nth-child(7n+6) {
    background: url("../images/base-bg/fish-base-6.jpg")
}

.fishing .pvd-gamebox:nth-child(7n+7) {
    background: url("../images/base-bg/fish-base-7.jpg")
}

/** Casino **/
.casino .pvd-gamebox:nth-child(7n+1) {
    background: url("../images/base-bg/casino-base-1.jpg");
}

.casino .pvd-gamebox:nth-child(7n+2) {
    background: url("../images/base-bg/casino-base-2.jpg")
}

.casino .pvd-gamebox:nth-child(7n+3) {
    background: url("../images/base-bg/casino-base-3.jpg")
}

.casino .pvd-gamebox:nth-child(7n+4) {
    background: url("../images/base-bg/casino-base-4.jpg")
}

.casino .pvd-gamebox:nth-child(7n+5) {
    background: url("../images/base-bg/casino-base-5.jpg")
}

.casino .pvd-gamebox:nth-child(7n+6) {
    background: url("../images/base-bg/casino-base-6.jpg")
}

.casino .pvd-gamebox:nth-child(7n+7) {
    background: url("../images/base-bg/casino-base-7.jpg")
}

/** Sports **/
.sports .pvd-gamebox:nth-child(7n+1) {
    background: url("../images/base-bg/sports-base-1.jpg");
}

.sports .pvd-gamebox:nth-child(7n+2) {
    background: url("../images/base-bg/sports-base-2.jpg")
}

.sports .pvd-gamebox:nth-child(7n+3) {
    background: url("../images/base-bg/sports-base-3.jpg")
}

.sports .pvd-gamebox:nth-child(7n+4) {
    background: url("../images/base-bg/sports-base-4.jpg")
}

.sports .pvd-gamebox:nth-child(7n+5) {
    background: url("../images/base-bg/sports-base-5.jpg")
}

.sports .pvd-gamebox:nth-child(7n+6) {
    background: url("../images/base-bg/sports-base-6.jpg")
}

.sports .pvd-gamebox:nth-child(7n+7) {
    background: url("../images/base-bg/sports-base-7.jpg")
}

/** ESports **/
.esports .pvd-gamebox:nth-child(3n+1) {
    background: url("../images/base-bg/sports-base-1.jpg");
}

.esports .pvd-gamebox:nth-child(3n+2) {
    background: url("../images/base-bg/sports-base-2.jpg")
}

.esports .pvd-gamebox:nth-child(3n+3) {
    background: url("../images/base-bg/sports-base-3.jpg")
}

/** Lottery **/
.lottery .pvd-gamebox:nth-child(2n+1) {
    background: url("../images/base-bg/lottery-base-1.jpg");
}

.lottery .pvd-gamebox:nth-child(2n+2) {
    background: url("../images/base-bg/lottery-base-2.jpg")
}


.feature-wrapper {
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    border-radius: 12px;
    padding: 10px;
}

.feature-wrapper-inner {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.feature-box-inner {
    display: grid;
    grid-template-columns: 30% auto;
    grid-gap: 10px;
    align-items: center;
}

.featinfo {
    color: #4e4e4e;
}

.ft-text-1 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ft-text-2 {
    font-size: 17px;
    line-height: 1.1;
}

.playhere-wrapper {
    position: relative;
    text-align: center;
    padding: 20px 0;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
}

button.pink-btn.big {
    min-width: 200px;
    font-size: 15px;
}

.seo-container {
    padding: 20px 0;
}

.seo-wrapper {
    position: relative;
    font-size: 14px;
    color: #4e4e4e;
    max-height: 160px;
    overflow: hidden;
}

    .seo-wrapper.active {
        max-height: none;
    }

        .seo-wrapper.active::after {
            content: none;
        }

    .seo-wrapper ul, .seo-wrapper ol {
        padding-left: 17px;
    }

    .seo-wrapper a {
        color: #4e4e4e;
        text-decoration: underline;
    }

        .seo-wrapper a:hover {
            color: #f54b8a;
        }

    .seo-wrapper h1 {
        font-size: 20px;
        font-weight: 700;
    }

    .seo-wrapper h2 {
        font-size: 18px;
        font-weight: 700;
    }

    .seo-wrapper h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .seo-wrapper h4 {
        font-size: 15px;
        font-weight: 700;
    }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.seo-more-btn {
    text-align: center;
    padding: 10px 0 0;
}

button.read-more {
    width: 27px;
    height: 27px;
    color: #505050;
    border: 2px solid #505050;
    border-radius: 50%;
    line-height: 1.7;
    margin: 0 auto;
}

    button.read-more:hover {
        color: #f54b8a;
        border: 2px solid #f54b8a;
    }

    button.read-more i {
        transform-origin: center;
        transition: 0.3s;
    }

    button.read-more.active i {
        transform: rotate(180deg);
        transition: 0.3s;
    }

/** Product Pages **/
.product-page {
    background: url(../images/bg-home.jpg) no-repeat bottom center;
    background-size: cover;
    padding: 15px 0 0;
}

.title-img-top {
    text-align: center;
    margin-bottom: 15px;
}

.search-bar-game {
    position: relative;
    margin-bottom: 30px;
}

    .search-bar-game input.login-input {
        box-shadow: 0 2px 5px rgb(0,0,0,0.2);
        width: 100%;
        padding: 2px 15px 2px 45px;
    }

.search-icon {
    position: absolute;
    left: 16px;
    top: 10px;
    color: #b3b8c4;
    font-size: 18px;
}

.products-container {
    padding-bottom: 30px;
}

.prov-title {
    text-align: center;
    margin-bottom: 30px;
}

.prov-logo-box {
    background: url("../images/base-bg/app-base-2.jpg")no-repeat center;
    background-size: cover;
    position: relative;
    max-width: 300px;
    width: 100%;
    border-radius: 14px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

    .prov-logo-box::after {
        content: '';
        width: 91%;
        height: 90%;
        border: 2px solid #fff;
        border-radius: 12px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        pointer-events: none;
        z-index: 0;
    }

.play-online {
    text-align: center;
    position: relative;
    margin-top: -25px;
}

button.play-online-btn {
    background: linear-gradient(180deg, rgba(238, 55, 133, 1) 0%, rgba(178, 87, 244, 1) 100%);
    border: 3px solid #fff;
    border-radius: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    min-width: 180px;
    height: 45px;
    padding: 0 15px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.2);
}

    button.play-online-btn:hover {
        background: linear-gradient(0deg, rgba(238, 55, 133, 1) 0%, rgba(178, 87, 244, 1) 100%);
        transform: scale(0.98);
    }

.dl-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.dl-box {
    background: linear-gradient(180deg, rgba(144,167,214,1) 0%, rgba(104,125,168,1) 100%);
    border: 3px solid #fff;
    color: #fff;
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 0 15px;
    border-radius: 10px;
    padding: 15px 15px 20px;
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.2);
}

a.dl-btn {
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    max-width: 180px;
    margin: auto;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    a.dl-btn:hover {
        background: #464646;
    }

.scan-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.device-os {
    background: #fff;
    max-width: 230px;
    color: #687da8;
    border: 2px solid #fc4e8f;
    border-radius: 40px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
    padding: 5px 5px;
    margin: 0 auto 15px;
}

    .device-os img {
        max-height: 38px;
    }

.qrcode-dl {
    max-width: 200px;
    margin: auto;
    padding-bottom: 10px;
}

.device-os-m {
    background: linear-gradient(180deg, rgba(238, 55, 133, 1) 0%, rgba(178, 87, 244, 1) 100%);
    font-size: 80px;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 2px solid #ef21af;
    margin: 0 auto 15px;
    display: none;
    justify-content: center;
    align-items: center;
}

.acces-wrap {
    max-width: 700px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #fff;
    color: #fff;
}

table.access-table tr th {
    text-align: center;
    background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
    border-bottom: 2px solid #fff;
    font-size: 16px;
    padding: 10px 5px;
}

table.access-table tr td {
    background: #5a6c90;
    border-bottom: 2px solid #38445b;
    border-right: 2px solid #38445b;
    padding: 7px 10px;
}

    table.access-table tr td:last-child {
        border-right: none;
    }

table.access-table tr:last-child td {
    border-bottom: none;
}

input.np-input {
    padding: 1px 5px;
    max-width: 200px;
}

button.pw-btn {
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
}

    button.pw-btn:hover {
        background: #464646;
    }

.copy-btn {
    color: #fff;
    cursor: pointer;
}

.game-menu {
    background: linear-gradient(180deg, #687da8 0%, #b3caf7 100%);
    border-bottom: 1px solid #fff;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.2);
    display: none;
}

.game-category {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

ul.nav.menu-game-nav {
    justify-content: space-between;
    align-items: center;
}

    ul.nav.menu-game-nav li {
        width: 14%;
    }

        ul.nav.menu-game-nav li.nav-item a {
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 1px;
            height: 65px;
            text-shadow: 0 1.5px 1px #1344a3;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            border-left: 1px solid transparent;
            border-right: 1px solid transparent;
        }

            ul.nav.menu-game-nav li.nav-item a img {
                max-height: 30px;
                margin-bottom: 4px;
                filter: drop-shadow(0px 1px 1px #1344a3);
            }

            ul.nav.menu-game-nav li.nav-item a.active {
                background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
                border-color: #fff;
            }


/** Promotions **/
.promo-page {
    background: url("../images/promo/promo-bg.jpg")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 10px 0 5px;
}

.promo-top-title {
    text-align: center;
    margin-bottom: -30px;
}

.promo-container {
    background: #fff;
    border: 4px solid #ff4f91;
    border-radius: 15px;
    padding: 50px 30px 30px;
    margin-bottom: 30px;
}

.mix {
    display: none;
}

.filter-menu {
    background: linear-gradient(180deg, rgba(173, 173, 255, 1) 0%, rgba(197, 198, 255, 1) 100%);
    border: 2px solid #fff;
    border-radius: 40px;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.2);
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.pmbox {
    padding: 6px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 1px #6262ff;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 40px;
    cursor: pointer;
}

.pmbox-inner {
    display: flex;
    align-items: center;
}

.pmbox.active, .pmbox:hover {
    background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
}

.promo-wrapper {
    position: relative;
    text-align: center;
}

.promobox {
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0.3%;
    max-width: 32%;
    padding: 4px 4px;
}

.promo-img {
    overflow: hidden;
    border-radius: 11px;
}

.pm-valid {
    background: #fff;
    color: #687da8;
    margin: 4px 0 0;
    border-radius: 11px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.backpage-wrap {
    padding: 10px 0 15px;
}

a.promo-back-btn {
    color: #e54681;
    font-weight: 700;
    font-size: 16px;
}

    a.promo-back-btn:hover {
        color: #464646;
    }

.promo-container.inner {
    padding: 30px 30px;
}

.pm-inner-img {
    max-width: 600px;
    margin: 0 auto 15px;
}

.pm-inner-title {
    margin: 0 0 15px;
}

.pmtitle-1 {
    color: #e54681;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pmtitle-2 {
    color: #687da8;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.pmtitle-3 {
    font-size: 18px;
    margin-bottom: 5px;
}

table.promo-table tr th {
    background: #4a5a7c;
    color: #fff;
    padding: 5px 5px;
    border: 1px solid #687da8;
}

table.promo-table tr td {
    background: #fff;
    color: #4a5a7c;
    padding: 5px 5px;
    border: 1px solid #687da8;
}

.terms-title {
    color: #ff4f91;
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0 10px;
}

ul.terms {
    padding-left: 17px;
}

    ul.terms li {
        padding: 1px 0;
    }


/** Lottery Page**/
.lottery-page {
    background: url("../images/lottery/lottery-bg.jpg")no-repeat top center;
    background-size: cover;
    text-align: center;
}

.top-lotto {
    background: url(../images/lottery/ball-bg.png) no-repeat top center;
    background-size: auto;
    background-position-y: 30px;
    padding-bottom: 45px;
}

.lotto-logo {
    margin: -2% auto;
}

.lucky-title {
    color: #404d67;
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
}

.lucky-numer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    max-width: 620px;
    margin: 15px auto;
}

.round-num {
    position: relative;
    background: url(../images/lottery/ball.png) no-repeat;
    background-size: 100% 100%;
    height: 135px;
    width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 78px;
    font-weight: 900;
    color: #687da8;
}

.inner-num {
    background: #fff;
    border-radius: 50%;
    height: 75%;
    width: 75%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.lotto-btn {
    background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    height: 45px;
    min-width: 180px;
    padding: 1px 10px;
    border-radius: 40px;
    border: 2px solid #fff;
    box-shadow: 0 3px 4px rgb(0, 0, 0, 0.25);
    margin: 0 4px;
}

    button.lotto-btn.payout {
        background: linear-gradient(270deg, rgba(254, 152, 139, 1) 0%, rgba(247, 138, 158, 1) 100%);
    }

    button.lotto-btn.bet {
        background: linear-gradient(180deg, rgba(239,10,106,1) 0%, rgba(182,53,156,1) 100%);
    }

    button.lotto-btn:hover {
        transform: scale(0.98);
        filter: brightness(1.07);
    }

.date-result {
    border-top: 1px solid #fff;
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 450px;
    height: 60px;
    padding: 3px;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 40px;
    font-size: 20px;
    text-transform: uppercase;
}

.drdate-1 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

    .drdate-1 img {
        margin-right: 10px;
        max-height: 30px;
    }

.drdate-2 {
    border-radius: 0 40px 40px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

input.date-choose {
    font-size: 20px;
    max-width: 190px;
    margin: auto;
    background: none;
    border: none;
    color: #687da8;
    font-weight: 700;
}

.lotto-result-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    max-width: 970px;
    margin: 20px auto;
}

.lotto-box {
    background: #687da8;
    border: 4px solid #687da8;
    text-transform: uppercase;
}

table.lotto-table tr.title-lotto {
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
}

    table.lotto-table tr.title-lotto td {
        padding: 2px 5px;
    }

.lotto-name-date {
    text-align: right;
}

td.lotto-vendor {
    text-align: left;
}

    td.lotto-vendor img {
        max-height: 40px;
    }

table.lotto-table tr th {
    background: #4a5a7c;
    color: #fff;
    padding: 3px 1px;
    font-size: 16px;
    border-top: 4px solid #687da8;
}

table.lotto-table tr td {
    background: #fff;
    border-right: 1px solid #4a5a7c;
    border-bottom: 1px solid #4a5a7c;
    color: #687da8;
    padding: 2px 1px;
    width: 33.33%;
    font-weight: 600;
    font-size: 16px;
}

table.lotto-table tr.title-lotto td {
    color: #fff;
    background: none;
    border: none;
}

table.lotto-table tr td:last-child {
    border-right: none;
}

table.lotto-table tr:last-child td {
    border-bottom: none;
}

table.lotto-table tr td:empty {
    background: none;
}

.lotto-result-mobile {
    display: none;
    margin: 20px auto;
}

ul.nav.lotto-nav {
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    display: grid;
    grid-template-columns: repeat(7,1fr);
}

    ul.nav.lotto-nav li.nav-item a.nav-link {
        padding: 3px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 56px;
    }

        ul.nav.lotto-nav li.nav-item a.nav-link.active {
            background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
        }

        ul.nav.lotto-nav li.nav-item a.nav-link img {
            max-height: 40px;
        }

/*** VIP ***/
.vip-page {
    background: url("../images/promo/promo-bg.jpg")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 10px;
    padding-bottom: 10px;
}

.vip-container {
    background: #fff;
    border: 4px solid #ff4f91;
    border-radius: 15px;
    padding: 50px 30px 30px;
    margin-bottom: 30px;
}

.vip-top-title {
    text-align: center;
    margin-bottom: -34px;
}

.vip-content-in {
    display: grid;
    grid-template-columns: 16% auto;
    margin-bottom: 80px;
}

.vip-desktop .vip-content-in:last-child {
    margin-bottom: 30px;
}

.viplogo {
    text-align: center;
    margin: -20px auto 30px;
}

ul.vip-bnf {
    background: #ababff;
    color: #fff;
    border-radius: 13px;
    list-style-type: none;
    padding: 30px 0;
    margin: -25px 0;
    text-align: center;
    box-shadow: 0 3px 3px rgb(0, 0, 0, 0.25);
}

    ul.vip-bnf li {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        padding: 5px 10px;
        text-transform: uppercase;
    }

        ul.vip-bnf li:first-child {
            margin-bottom: 10px;
        }

table.vip-badge-table tr td {
    width: 9%;
    padding: 15px 0 25px;
}

table.vip-top-table tr td {
    height: 50px;
}

.vip-table-wrapper-2 {
    background: #ababff;
    color: #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    border-radius: 0 40px 40px 0;
    box-shadow: 0 2px 0px #6262ff;
    margin-bottom: 10px;
}

table.vip-top-table tr td {
    height: 44px;
    width: 9%;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.vip-table-wrapper-3 {
    background: #dee4f2;
    text-align: center;
    border-radius: 0 15px 15px 0;
    color: #687da8;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
}

table.vip-inner-table tr td {
    height: 50px;
    width: 9%;
}

.vip-tnc {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    color: #687da8;
    margin-bottom: 30px;
}

.tnc-title {
    font-size: 17px;
    text-transform: uppercase;
    color: #db427b;
    font-weight: 800;
    margin-bottom: 10px;
}

.vip-tnc ul {
    padding-left: 17px;
    margin-bottom: 0;
}

.vip-mobile {
    display: none;
}

.vip-panel {
    position: relative;
    margin: 0 auto 10px;
}

button.vip-btn-tab {
    background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
    width: 100%;
    position: relative;
    text-align: left;
    padding: 5px 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

    button.vip-btn-tab:before {
        font-size: 15px;
        position: absolute;
        right: 15px;
        top: 13px;
        transform: rotate(90deg);
        transition: all 0.5s;
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        font-weight: 700;
    }

    button.vip-btn-tab.collapsed:before {
        position: absolute;
        transform: rotate(0deg);
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        font-weight: 700;
    }

.vp-ico {
    width: 55px;
    display: inline-block;
}

    .vp-ico img {
        max-height: 35px;
    }

.panel-body {
    position: relative;
    padding: 10px 10px;
    margin-top: 2px;
    background: #dee4f2;
    border-radius: 8px;
}

table.vip-table {
    width: 100%;
    font-weight: 700;
}

    table.vip-table tr td {
        padding: 8px 10px;
        background: #dee4f2;
        color: #687da8;
        border: 1px solid #fff;
        text-align: center;
    }

    table.vip-table tr th {
        padding: 8px 10px;
        background: #4a5a7c;
        color: #fff;
        text-align: center;
    }

/** BLOG **/
.blog-page {
    background: url("../images/promo/promo-bg.jpg")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 10px;
    padding-bottom: 20px;
}

.blog-top-title {
    text-align: center;
    margin-bottom: -30px;
}

.blog-wrapper {
    text-align: center;
    position: relative;
}

    .blog-wrapper .promobox {
        display: inline-block;
    }

.blog-info {
    background: #fff;
    border-radius: 12px;
    margin-top: 4px;
    padding: 10px 10px;
    text-align: left;
    color: #687da8;
}

.blog-title {
    color: #db427b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-subtitle {
    font-size: 13px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 5px;
}

.blog-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 0;
}

.bgdate {
    padding: 5px 0;
    font-weight: 700;
}

    .bgdate i {
        margin-right: 5px;
    }

button.pink-btn.blog {
    border: 1px solid #f64c8b;
    font-size: 14px;
    height: 30px;
    min-width: 125px;
}

.blog-date {
    font-size: 16px;
    color: #565656;
    font-weight: 700;
}

    .blog-date i {
        margin-right: 5px;
    }

.blog-content h1 {
    font-size: 18px;
    font-weight: 700;
}

.blog-content h2 {
    font-size: 17px;
    font-weight: 700;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 700;
}

.blog-content h4 {
    font-size: 15px;
    font-weight: 700;
}

.blog-content h5, .blog-content h6 {
    font-size: 15px;
}

.blog-content a {
    color: #e54681;
    font-weight: 700;
}

.prenex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

a.prebtn {
    color: #8d8d8d;
    font-size: 14px;
}

    a.prebtn:hover {
        color: #e54681;
    }

.promo-container.latest {
    padding: 15px 30px 30px;
}

.latest-wrapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 10px;
    font-size: 20px;
}

.ltblog {
    color: #db427b;
    font-weight: 800;
    text-transform: uppercase;
}

a.all-blog {
    color: #4e4e4e;
    font-weight: 700;
}

.pagination-blog {
    padding: 20px 0 0;
    text-align: center;
}

button.pagin-btn {
    color: #a0a1a2;
    padding: 0 3px;
    margin: 3px 7px;
}

    button.pagin-btn.active, button.pagin-btn:hover {
        color: #ff4f91;
    }

/** Register Page **/
.register-page {
    background: url("../images/bg-home.jpg")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 30px 0;
}

.register-container {
    background: #fff;
    border: 4px solid #ff4f91;
    border-radius: 15px;
    padding: 30px 30px 30px;
    margin-bottom: 30px;
}

.regtitle {
    filter: drop-shadow(0 2px 1px rgb(98, 98, 255, 0.8));
    text-align: center;
    margin-bottom: 15px;
}

.regtext {
    background: linear-gradient(to bottom, #ED1B74 0%, #AF4EF7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 30px;
    text-transform: uppercase;
    filter: drop-shadow(1px 1px 0px #fff) drop-shadow(-1px 0px 0px #fff);
}

.register-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    padding: 15px 0;
}

.reg-input-wrap {
    display: grid;
    grid-template-columns: 35% auto;
    grid-gap: 5px;
    margin: 0 0 10px;
    font-size: 16px;
}

.reglabel {
    color: #687da8;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0px 0;
}

.reddot {
    color: #ff005f;
}

input.reg-input, select.reg-input {
    background: #fff;
    border: 2px solid #bfb8da;
    border-radius: 10px;
    height: 35px;
    padding: 2px 5px;
}

input::placeholder {
    color: #b9b9b9;
}

.mbnumber-wrap {
    display: grid;
    grid-template-columns: 100px auto;
    grid-gap: 5px;
}

button.otp-btn {
    background: linear-gradient(90deg, rgba(144, 167, 214, 1) 0%, rgba(106, 127, 170, 1) 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    height: 35px;
}

.reglabel.pink {
    color: #db427b;
}

.favorite-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4px 2px;
    padding-top: 8px;
}

.check-box {
    color: #687da8;
    font-weight: 700;
}

    .check-box input {
        width: auto;
    }

    .check-box label {
        cursor: pointer;
        margin: 0 0 0 3px;
    }

button.pink-btn.reg-submit {
    min-width: auto;
    width: 100%;
    height: 40px;
    font-size: 15px;
}

.member-already {
    text-align: center;
    padding: 5px 5px;
    color: #687da8;
    font-size: 14px;
}

a.login-link {
    color: #687da8;
    border-bottom: 1px solid #687da8;
}

    a.login-link:hover {
        color: #db427b;
        border-bottom: 1px solid #db427b;
    }

.regcol-right {
    text-align: center;
    max-width: 530px;
    margin: 0 auto;
}

.reg-img-banner {
    margin: -15px 0 10px;
}

    .reg-img-banner img {
        filter: drop-shadow(0 6px 3px rgb(0,0,0,0.25));
    }

.reg-intro-feature {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    text-align: center;
}

.reg-feat-box {
    position: relative;
    max-width: 170px;
    margin: 0 auto;
    color: #687da8;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
}

.pinktext {
    color: #c839aa;
}

/** Info Page **/
.info-page {
    background: url("../images/info-bg.jpg") no-repeat bottom center;
    background-attachment: fixed;
    background-size: cover;
    padding: 30px 0 30px;
}

.info-container {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
}

.info-wrapper {
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 4px 4px;
}

.info-inner {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    color: #687da8;
}

.info-title {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-inner ul, .info-inner ol {
    padding-left: 17px;
}

a.pmbox {
    color: #fff;
}

table.table-banking {
    text-align: center;
}

    table.table-banking tr td {
        background: #dee4f2;
        color: #687da8;
        border: 1px solid #687da8;
        padding: 10px 5px;
    }

    table.table-banking tr th {
        background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
        border: 1px solid #687da8;
        color: #fff;
        font-size: 16px;
        padding: 10px 5px;
    }

.depo-note {
    padding: 5px 0;
    font-weight: 700;
    color: #787878;
}

.card-tnc {
    margin-bottom: 5px;
}

button.tnc-btn-link {
    background: #e54681;
    color: #fff;
    height: 45px;
    padding: 2px 15px;
    font-size: 16px;
    width: 100%;
    text-align: left;
    border-radius: 5px;
}

    button.tnc-btn-link.collapsed {
        background: #687da8;
    }

.card-body-tnc {
    background: #fff;
    border: 1px solid #687da8;
    margin: 5px 0 0;
    padding: 15px;
    border-radius: 5px;
}

    .card-body-tnc ul {
        margin: 0;
    }

        .card-body-tnc ul li {
            padding: 2px 0;
        }

.cntbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ct-img {
    font-size: 34px;
    margin-right: 15px;
    color: #e54681;
    text-align: center;
    width: 45px;
}

    .ct-img.whatsapp {
        color: #25D366;
    }

    .ct-img.wechat {
        color: #2DC100;
    }

    .ct-img.telegram {
        color: #0088CC;
    }

a.livechat-link {
    color: #e54681;
    font-weight: 700;
}

.smap-wrap a {
    color: #687da8;
}

.smlang {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.smap-wrap ul li {
    padding: 1px 0;
}

/** Deposit /Transfer/ Widthdraw page etc .. **/
.depo-sec {
    background: url("../images/info-bg.jpg")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 20px 0 30px;
}

.afmenu-wrapper {
    margin: 0 auto 20px;
    max-width: 800px;
}

.afterlogin-menu {
    background: linear-gradient(180deg, rgba(173, 173, 255, 1) 0%, rgba(197, 198, 255, 1) 100%);
    border: 2px solid #fff;
    border-radius: 40px;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.2);
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 20px;
}

a.afbtn {
    width: 19%;
    margin: 0 0.25%;
    padding: 6px 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 1px #6262ff;
    text-align: center;
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 40px;
}

    a.afbtn.active, a.afbtn:hover {
        background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
        border: 2px solid #fff;
        box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
    }

.afcontainer {
    background: linear-gradient(37deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    padding: 6px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.afcontainer-inner {
    background: #fff;
    border-radius: 8px;
    padding: 15px 15px;
    position: relative;
    min-height: 300px;
}

.top-afmenu {
    margin: 10px 0 25px;
    position: relative;
    text-align: center;
}

a.afsubtn {
    background: #fff;
    border: 2px solid #687da8;
    color: #687da8;
    font-size: 16px;
    font-weight: 800;
    padding: 7px 10px;
    border-radius: 40px;
    min-width: 115px;
    display: inline-block;
    vertical-align: text-top;
    margin: 0 5px;
}

    a.afsubtn.active, a.afsubtn:hover {
        background: #e7eeff;
        color: #ee4986;
        border: 2px solid #ee4986;
    }

.form-wrap {
    max-width: 650px;
    margin: 0 auto;
}

.field-wrap {
    display: grid;
    grid-template-columns: 170px auto;
    margin: 10px 0;
}

.label-form {
    font-size: 15px;
    color: #687da8;
    font-weight: 700;
    margin-top: 6px;
}

.field-input {
    position: relative;
}

input.reg-input, select.reg-input {
    background: #fff;
    height: 35px;
    border-radius: 8px;
    padding: 2px 10px;
    border: 2px solid #bfb8da;
}

.bank-account-option {
    display: flex;
    align-items: center;
}

.bank-pay {
    position: relative;
    margin-right: 2px;
}

.input-hide input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.bank-acct-btn {
    position: relative;
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    display: block;
}

.input-hide[type="radio"],
.input-hide input[type="checkbox"] {
    appearance: none;
    display: none;
}

.bank-acct-btn img {
    max-height: 60px;
}

.input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn {
    border: 2px solid #e54681;
}

    .input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn img {
        filter: none;
    }

.quick-amt-wrap {
    margin-top: 5px;
}

button.qamt-btm {
    width: 19%;
    background: #fff;
    height: 35px;
    border-radius: 8px;
    padding: 2px 10px;
    border: 2px solid #bfb8da;
    margin: 0 0.25% 5px;
    color: #687da8;
}

    button.qamt-btm:hover, button.qamt-btm.active {
        background: #687da8;
        color: #fff;
    }

.upload-field {
    position: relative;
}

.upload-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

button.upload-btn {
    background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
    color: #fff;
    text-transform: uppercase;
    padding: 1px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 5px;
}

    button.upload-btn:hover {
        background: linear-gradient(0deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
        filter: brightness(1.1);
    }

.smbtn-wrap {
    text-align: center;
    padding: 10px 0 0;
}

button.submit-btn {
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    color: #fff;
    border-radius: 40px;
    height: 35px;
    min-width: 140px;
    padding: 1px 15px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 1px 1px #a5678e;
}

    button.submit-btn:hover {
        background: linear-gradient(180deg, rgba(172, 87, 254, 1) 0%, rgba(240, 52, 131, 1) 100%);
    }

.terms-telco {
    margin: 20px 0 0;
}

.bank-info-box {
    border-radius: 8px;
    padding: 3px 10px;
    border: 2px solid #bfb8da;
    margin: 10px 0 0;
}

.bk-row {
    padding: 2px 0;
}

button.depo-copy-btn {
    color: #fd4e90;
    margin-left: 3px;
}

.trans-field {
    display: grid;
    grid-template-columns: 240px auto;
    grid-gap: 10px;
}

button.upload-btn.allout {
    position: initial;
    max-width: 120px;
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
}

button.upload-btn.allout {
    position: initial;
    max-width: 120px;
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    height: 35px;
}

.field-note {
    font-size: 14px;
    line-height: 1.1;
    padding: 5px 0;
}

.field-input.gender {
    display: flex;
    align-items: center;
}

.gender-btn {
    background: #fff;
    color: #494949;
    border: 2px solid #e54681;
    margin: 0 5px;
    min-width: 110px;
    font-weight: 500;
    text-align: center;
    border-radius: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.input-hide input:active + .gender-btn, .input-hide input:checked + .gender-btn {
    background: #e54681;
    color: #fff;
}

.form-wrap .field-icon {
    font-size: 15px;
}

button.upload-btn.reset {
    position: initial;
    height: 35px;
    min-width: 100px;
}

table.history-table {
    text-align: center;
}

    table.history-table tr th {
        background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
        border: 1px solid #687da8;
        color: #fff;
        padding: 8px 2px;
        font-weight: 700;
    }

    table.history-table tr td {
        background: #dee4f2;
        color: #687da8;
        border: 1px solid #687da8;
        padding: 6px 2px;
        font-size: 14px;
        font-weight: 500;
    }

.green-text {
    color: #45cb00;
}

.red-text {
    color: #fe0000;
}

.pagination-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 5px;
    font-size: 14px;
}

    .pagination-bottom a {
        color: #666;
        margin: 0 10px;
    }

.afcontainer.full {
    max-width: 1200px;
}

/** Inbox **/
.inbox-wrapper {
    background: #F7F8FA;
    min-height: 385px;
}

    .inbox-wrapper.inner {
        background: none;
    }

    .inbox-wrapper.xline table.inbox-table tr:nth-child(odd) {
        background: #EAF2F5;
    }

    .inbox-wrapper.xline table.inbox-table tr:nth-child(even) {
        background: #F7F8FA;
    }

table.inbox-table tr {
    height: 48px;
    cursor: pointer;
}

    table.inbox-table tr.unread td {
        color: #e54681;
        font-weight: 700;
    }

    table.inbox-table tr:hover td {
        color: #e54681;
    }

    table.inbox-table tr td {
        padding: 2px 5px;
        color: #687da8;
        font-size: 14px;
    }

.inbox-wrapper table.inbox-table tr td:first-child {
    padding-left: 15px;
    width: 25%;
}

.inbox-wrapper table.inbox-table tr td:last-child {
    padding-right: 15px;
    width: 5%;
}

table.inbox-table tr td a {
    color: #687da8;
}

    table.inbox-table tr td a:hover {
        color: #e54681;
    }

.inbox-wrapper table.inbox-table tr td:nth-child(2) {
    width: 50%;
}

.inbox-wrapper table.inbox-table tr td:nth-child(3) {
    width: 20%;
    text-align: center;
}

span.mail-icon {
    margin-right: 10px;
}

a.caption-tb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 510px;
}

.title-tb {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 230px;
}

.inbox-pagination {
    display: flex;
    justify-content: center;
    margin: 15px 0 0;
}

a.arrow-box {
    background: #fff;
    color: #11084c;
    font-size: 12px;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.page-num {
    background: #e7e7e7;
    color: #161616;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

    span.page-num.active {
        background: #e54681;
        color: #fff;
    }

.inbox-pagination .arrow-box:first-child {
    border-radius: 3px 0 0 3px;
}

.inbox-pagination .arrow-box:last-child {
    border-radius: 0 3px 3px 0;
}

.inbox-table tr td.active {
    background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
    color: #fff;
}

.mail-wrap {
    border-left: 1px solid #687da8;
    min-height: 385px;
    padding: 15px 30px;
    position: relative;
    color: #4e4e4e;
}

.mail-inner-wrapper {
    display: grid;
    grid-template-columns: 271px auto;
    background: #dee4f2;
}

.mtitle {
    font-weight: 700;
    padding-bottom: 5px;
}

.mail-wrap a {
    color: #e54681;
    text-decoration: underline;
    font-style: italic;
}

.mail-back {
    position: absolute;
    right: 10px;
    top: 10px;
}

    .mail-back a {
        color: #e54681 !important;
        font-size: 23px;
    }

        .mail-back a:hover {
            color: #fff;
        }

.mailbtm-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

button.mcom-btm {
    background: #e54681;
    border: 1px solid #e54681;
    color: #fff;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    min-width: 110px;
    height: 30px;
    margin: 0 5px;
}

    button.mcom-btm.delete {
        background: #687da8;
        border: 1px solid #687da8;
    }

    button.mcom-btm:hover {
        filter: brightness(1.1);
    }

    button.mcom-btm i {
        margin-right: 5px;
    }

.reply-input textarea {
    height: 90px;
    padding: 5px 10px;
    border: 1px solid #687da8;
    border-radius: 5px;
}

/** Inbox Mobile **/
.account-wrapper.mobile {
    display: none;
}

.inbox-wrapper table.inbox-table.mobile tr td {
    font-size: 13px;
}

    .inbox-wrapper table.inbox-table.mobile tr td:first-child {
        width: auto;
    }

    .inbox-wrapper table.inbox-table.mobile tr td:nth-child(2) {
        width: auto;
        text-align: center;
    }

    .inbox-wrapper table.inbox-table.mobile tr td:last-child {
        width: 50px;
    }

table.inbox-table.mobile .title-tb {
    max-width: 50vw;
}

.mail-pop {
    background: #fff;
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 2px solid #e54681;
    padding: 15px;
    padding-bottom: 80px;
    max-height: 400px;
    overflow: auto;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(90%);
}

    .mail-pop.active {
        visibility: visible;
        opacity: 1;
        transition: all 0.5s ease-in-out;
        transform: translateY(0);
    }

    .mail-pop a {
        color: #fff;
        font-style: italic;
        text-decoration: underline;
    }

    .mail-pop::-webkit-scrollbar {
        width: 2px;
    }

    .mail-pop::-webkit-scrollbar-thumb {
        background: #251176;
    }

.referral-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.ref-soon {
    text-align: center;
    color: #ca4e7b;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.referral-top-btn {
    text-align: center;
    padding: 10px 0;
}

.ref-divider {
    height: 1px;
    background: #687da8;
    margin: 10px 0;
}

.nav-ref-wrapper {
    text-align: left;
    padding: 10px 0;
}

button.refnav-btn {
    background: #fff;
    color: #9766f0;
    font-size: 16px;
    font-weight: 700;
    height: 35px;
    padding: 2px 25px;
    border-radius: 25px;
    border: 2px solid #9766f0;
    min-width: 120px;
    margin: 2px 5px;
    text-transform: uppercase;
}

    button.refnav-btn.active {
        background: linear-gradient(90deg, rgba(154, 101, 235, 1) 0%, rgba(200, 78, 126, 1) 100%);
        color: #fff;
    }

/** Error, maintenance pages **/
.error-sec {
    background: url("../images/error/bg-404.jpg")no-repeat top center;
    background-size: cover;
    position: relative;
    padding: 30px 0;
}

.error-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    text-align: center;
    color: #687da8;
}

.error-wrap {
    padding: 15px 0 0;
}

.logo-img {
    max-width: 200px;
    margin: 0 auto;
}

.title-error-1 {
    font-size: 44px;
    font-weight: 800;
    margin: 5px 0 15px;
}

.title-error-2 {
    font-size: 36px;
    font-weight: 800;
    margin: 5px 0 15px;
}

.subtitle-error {
    font-size: 18px;
    margin-bottom: 20px;
}

button.big-btn {
    background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
    color: #fff;
    height: 50px;
    min-width: 165px;
    border-radius: 45px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin: 0 5px;
}

    button.big-btn.pink {
        background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    }

    button.big-btn:hover {
        transform: scale(0.98);
        filter: brightness(1.1);
    }

.error-img {
    margin-left: -21%;
}

.error-wrapper.maintenance {
    height: 90vh;
    align-items: center;
}










@media(max-width: 1080px) {
    .t-body {
        padding-bottom: 65px;
        padding-top: 75px;
    }

    .m-none {
        display: none;
    }

    .mobile-footer-menu, .member-home-top {
        display: block;
    }

    button#backtop-btn {
        bottom: 80px;
        transform: scale(0.8);
        transform-origin: right bottom;
    }

    .float-container {
        right: 5px;
        bottom: 130px;
        transform: scale(0.8);
    }

    button.lang-btn i {
        display: none;
    }

    button.lang-btn {
        height: 40px;
        width: 45px;
    }

        button.lang-btn img {
            max-width: 27px;
            margin-right: 0;
        }

    .dropdown.login {
        display: none;
    }

    .mobile-login {
        display: inline-block;
    }

    .game-categoty-content {
        padding: 0 0 20px;
    }

    .category-tab-wrapper {
        border-radius: 0;
        margin: 0 -10px;
        border: 1px solid #fff;
    }

    ul.nav.nav-category {
        display: grid;
        grid-template-columns: repeat(7,1fr);
        height: auto;
    }

        ul.nav.nav-category li.nav-item a.nav-link {
            padding: 10px 5px;
            font-size: 14px;
            border: none;
            width: 100%;
            flex-direction: column;
            border-radius: 0;
        }

            ul.nav.nav-category li.nav-item a.nav-link.active, ul.nav.nav-category li.nav-item a.nav-link:hover {
                border: none;
                border-left: 1px solid #fff;
                border-right: 1px solid #fff;
                box-shadow: none;
            }

        ul.nav.nav-category li.nav-item:first-child a.nav-link {
            border-left: none;
        }

        ul.nav.nav-category li.nav-item:last-child a.nav-link {
            border-right: none;
        }

    .ctg-icon {
        margin-right: 0;
        margin-bottom: 6px;
    }

        .ctg-icon img {
            max-width: 30px;
        }

    .header-leftwrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    button.hamburger-button {
        display: inline-block;
        color: #464646;
        font-size: 30px;
        margin-right: 15px;
    }

    .header-bottom, button.switch-btn {
        display: none;
    }

    .footer-top-container {
        flex-direction: column;
    }

    .ft-follow-us {
        margin: 5px 0;
    }

    .ft-footer-link {
        margin: 2px 0 8px;
    }

    ul.nav.footer-nav li.ft-item {
        margin: 5px 0;
    }

        ul.nav.footer-nav li.ft-item a.ft-link {
            font-size: 13px;
        }

    .device-os-m {
        display: flex;
    }

    .lotto-result-mobile {
        display: block;
    }

    .lotto-result-wrapper {
        display: none;
    }

    .promo-container {
        padding: 50px 15px 20px;
    }

    .pm-valid {
        font-size: 1.4vw;
    }

    .pmbox {
        font-size: 1.5vw;
    }

    .vip-desktop {
        display: none;
    }

    .vip-mobile {
        display: block;
    }

    .game-menu {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 10;
    }

    .title-img-top {
        display: none;
    }

    .product-page {
        padding: 80px 0 0;
    }

    .account-wrapper.mobile {
        display: block;
    }

    .error-wrapper {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .error-img {
        max-width: 400px;
        margin: 0 auto 10px !important;
    }

    .error-wrap {
        padding: 0;
    }

    .error-wrapper.maintenance {
        display: flex;
    }
}

@media(max-width: 991px) {
    .t-body {
        padding-top: 60px;
    }

    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }

    .header-top-container {
        height: 60px;
    }

    button.hamburger-button {
        font-size: 24px;
        margin-right: 12px;
    }

    .logo img {
        max-height: 50px;
    }

    button.grey-btn, button.pink-btn {
        height: 30px;
        min-width: 110px;
        font-size: 14px;
    }

    button.lang-btn {
        height: 35px;
        width: 40px;
    }

    button.acc-btn {
        max-width: 30px;
        margin: 0 3px;
    }

    span.mail-notice {
        height: 13px;
        width: 13px;
        font-size: 9px;
    }

    .games-provider-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .logo-provider {
        grid-template-columns: repeat(6, 1fr);
    }

        .logo-provider .logo-item:nth-child(n+7) {
            display: none;
        }

        .logo-provider.active .logo-item:nth-child(n+7) {
            display: block;
        }

    .pvd-gamebox::after {
        border: 1px solid #fff;
    }

    .blog-btm {
        display: block;
    }

    .bgdate {
        font-size: 14px;
    }

    .register-wrapper {
        grid-template-columns: auto;
        grid-gap: 30px;
        max-width: 767px;
        margin: 0 auto;
    }

    .depo-sec {
        padding: 0 0 30px;
    }

    .afmenu-wrapper {
        max-width: 100%;
    }

    .afterlogin-menu {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #fff;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        padding: 0;
        margin: 0 -10px;
    }

    a.afbtn {
        width: auto;
        border-radius: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
    }

        a.afbtn.active {
            border: 0;
            border-left: 1px solid #fff;
            border-right: 1px solid #fff;
        }

            a.afbtn.active:first-child {
                border-left: 0;
            }

            a.afbtn.active:last-child {
                border-right: 0;
            }

    .promo-page {
        padding: 15px 0 5px;
    }

    .promo-top-title {
        display: none;
    }

    .promo-container {
        padding: 20px 15px 20px;
    }

    .games-provider-wrapper {
        overflow: auto;
        max-height: 525px;
    }
}

@media(max-width: 767px) {
    .logo img {
        max-height: 40px;
    }

    button.grey-btn, button.pink-btn {
        min-width: 100px;
        font-size: 13px;
    }

    button.switch-btn {
        max-width: 30px;
    }

    button.lang-btn {
        height: 30px;
        width: 30px;
    }

        button.lang-btn img {
            max-width: 23px;
            margin-right: 0;
        }

    ul.nav.nav-category li.nav-item a.nav-link {
        padding: 10px 2px;
        font-size: 12px;
    }

    .games-provider-wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 14px 10px;
    }

    .feature-wrapper {
        background: none;
        border-radius: 12px;
        padding: 0;
    }

    .feature-wrapper-inner {
        background: none;
        padding: 0;
        grid-template-columns: auto;
        grid-gap: 10px;
    }

    .feature-box {
        background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
        border-radius: 12px;
        padding: 7px;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .feature-box-inner {
        background: #fff;
        border-radius: 10px;
        padding: 10px 10px;
        grid-template-columns: 120px auto;
    }

    .playhere-wrapper {
        font-size: 30px;
    }

    .seo-wrapper h1 {
        font-size: 18px;
        font-weight: 700;
    }

    .seo-wrapper h2 {
        font-size: 16px;
        font-weight: 700;
    }

    .seo-wrapper h3 {
        font-size: 14px;
        font-weight: 700;
    }

    .seo-wrapper h4 {
        font-size: 13px;
        font-weight: 700;
    }

    .ftpvd-title {
        font-size: 13px;
    }

    .dl-box {
        width: 45%;
        margin: 0 2%;
        padding: 15px 10px 20px;
    }

    .promo-container {
        padding: 20px 5px 20px;
    }

    .filter-menu {
        display: block;
        background: none;
        border: none;
        box-shadow: none;
        height: auto;
    }

    .pmbox {
        font-size: 14px;
        padding: 3px 5px;
        height: 40px;
        width: 23%;
        background: linear-gradient(180deg, rgba(173, 173, 255, 1) 0%, rgba(197, 198, 255, 1) 100%);
        border: 2px solid #fff;
        border-radius: 40px;
        box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
        margin: 4px 0.5%;
        vertical-align: text-top;
    }

    .promobox {
        margin: 0.3%;
        max-width: 48%;
        padding: 3px 3px;
    }

    .pmbox-inner {
        justify-content: center;
        height: 100%;
    }

    .pm-valid {
        font-size: 2vw;
    }

    .promo-container.inner {
        padding: 20px 10px;
    }

    .vip-container {
        border: 4px solid #ff4f91;
        padding: 50px 10px 20px;
    }

    .lucky-numer-wrapper {
        max-width: 85%;
    }

    .round-num {
        width: 19vw;
        height: 19vw;
        font-size: 10vw;
    }

    .lucky-title {
        font-size: 28px;
    }

    .register-container {
        padding: 25px 15px 25px;
    }

    .promo-container.latest {
        padding: 15px 10px 15px;
    }

    ul.nav.menu-game-nav li.nav-item a {
        font-size: 13px;
    }

    .field-wrap {
        grid-template-columns: auto;
        grid-gap: 3px;
        margin: 10px 0;
    }

    a.afsubtn {
        min-width: auto;
        width: 32%;
        margin: 0 0.25%;
        font-size: 14px;
        padding: 7px 5px;
    }

    .bank-info-box {
        font-size: 14px;
    }

    button.qamt-btm {
        padding: 2px 5px;
        margin: 0 0.1% 5px;
    }

    .title-error-1 {
        font-size: 30px;
    }

    .title-error-2 {
        font-size: 28px;
    }

    .subtitle-error {
        font-size: 16px;
    }
}

@media(max-width: 480px) {
    .header-top-container {
        padding: 0 5px;
    }

    button.grey-btn, button.pink-btn {
        min-width: 80px;
        font-size: 12px;
        padding: 3px 4px;
    }

    a.lang-item img {
        max-width: 25px;
    }

    .mbtopbox {
        font-size: 13px;
    }

    ul.nav.nav-category li.nav-item a.nav-link {
        padding: 10px 1px;
        font-size: 9px;
        text-shadow: 0 1.5px 1px #1344a3;
        font-weight: 400;
    }

    .ctg-icon img {
        max-width: 28px;
    }

    .tab-content.home {
        padding: 25px 0;
    }

    .feature-box {
        padding: 5px;
    }

    .feature-box-inner {
        padding: 7px 10px;
        grid-template-columns: 30% auto;
    }

    .ft-text-1 {
        font-size: 18px;
    }

    .ft-text-2 {
        font-size: 16px;
    }

    .playhere-wrapper {
        font-size: 28px;
    }

    ul.nav.footer-nav li.ft-item a.ft-link {
        font-size: 12px;
    }

    .logo-provider {
        grid-template-columns: repeat(4, 1fr);
    }

        .logo-provider .logo-item:nth-child(n+5) {
            display: none;
        }

        .logo-provider.active .logo-item:nth-child(n+5) {
            display: block;
        }

    .logo-item {
        border-radius: 4px;
        padding: 3px 0;
    }

    button.prov-btn {
        text-shadow: 0 1.5px 1px #6a6a6a;
        padding: 4px 15px 6px;
        font-size: 13px;
    }

    a.prdhover {
        font-size: 14px;
    }

    .play-icon {
        font-size: 22px;
    }

    .prov-logo-box {
        max-width: 68%;
    }

        .prov-logo-box img {
            max-height: 34vw;
        }

    .acces-wrap {
        font-size: 13px;
    }

    table.access-table tr th {
        font-size: 14px;
    }

    .device-os-m {
        font-size: 20vw;
        height: 30vw;
        width: 30vw;
    }

    a.dl-btn {
        font-size: 13px;
        height: 35px;
    }

    .promo-container {
        border: 2px solid #ff4f91;
    }

    .pmbox {
        font-size: 12px;
        width: 23%;
        line-height: 1;
        height: 35px;
        text-shadow: 0 1.5px 1px #6262ff;
    }

    .promobox {
        margin: 1% 0;
        max-width: 100%;
        padding: 4px 4px;
    }

    .pm-valid {
        font-size: 4vw;
        height: 8vw;
    }

    .promo-container.inner {
        font-size: 14px;
    }

    .pmtitle-1 {
        font-size: 22px;
    }

    .pmtitle-2 {
        font-size: 17px;
    }

    .pmtitle-3 {
        font-size: 15px;
    }

    .vip-top-title {
        max-width: 90%;
        margin: 0 auto -6%;
    }

    .vip-container {
        border: 2px solid #ff4f91;
        padding: 8% 10px 20px;
    }

    button.vip-btn-tab {
        font-size: 14px;
    }

    .panel-body {
        font-size: 14px;
    }

    .vip-tnc {
        padding: 20px 15px;
        font-size: 14px;
    }

    .tnc-title {
        font-size: 15px;
    }

    .blog-btm {
        display: flex;
    }

    button.pagin-btn {
        margin: 3px 5px;
    }

    button.lotto-btn, button.lotto-btn {
        width: 48%;
        min-width: auto;
        margin: 1% 0.5%;
        vertical-align: text-top;
        font-size: 15px;
    }

    .reg-input-wrap {
        grid-template-columns: auto;
    }

    .reglabel {
        font-size: 15px;
        padding: 0;
    }

    .regtext {
        font-size: 26px;
    }

    .reg-feat-box {
        font-size: 13px;
    }

    .info-inner {
        padding: 20px 15px;
        font-size: 14px;
    }

    .info-title {
        font-size: 20px;
    }

    button.tnc-btn-link {
        font-size: 15px;
    }

    .date-result {
        height: 50px;
        font-size: 16px;
    }

    input.date-choose {
        font-size: 16px;
    }

    ul.nav.menu-game-nav li.nav-item a {
        font-size: 11px;
    }

        ul.nav.menu-game-nav li.nav-item a img {
            max-height: 28px;
        }

    .afcontainer {
        background: linear-gradient(37deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
        padding: 3px;
        border-radius: 10px;
    }

    .afcontainer-inner {
        padding: 15px 10px;
    }

    .terms-telco {
        font-size: 14px;
    }

    .trans-field {
        display: grid;
        grid-template-columns: 185px auto;
    }

    input.reg-input.pink {
        text-align: center;
    }

    button.upload-btn {
        padding: 1px 10px;
        font-size: 12px;
    }

    button.refnav-btn {
        font-size: 14px;
        height: 30px;
        padding: 1px 10px;
        min-width: 110px;
    }

    .referral-top-btn button.submit-btn {
        font-size: 14px;
        min-width: 120px;
        margin: 0 3px;
    }

    table.history-table, table.history-table tr td {
        font-size: 13px;
    }

    a.afbtn {
        padding: 6px 2px;
        font-size: 13px;
        text-shadow: 0 1.5px 1px #6262ff;
    }

    .logo-img {
        max-width: 130px;
        margin: 0 auto;
    }

    .title-error-1 {
        font-size: 24px;
    }

    .title-error-2 {
        font-size: 24px;
    }

    .subtitle-error {
        font-size: 14px;
    }

    button.big-btn {
        min-width: auto;
        width: 45%;
        margin: 0.5% 1%;
        font-size: 15px;
    }

    .error-sec {
        padding: 15px 0;
    }

    .error-img {
        max-width: 80%;
    }

    .games-provider-wrapper {
        max-height: 84vw;
    }
}


/** Referral Update 30/7/2024 **/
.rp-banner-wrap {
    position: relative;
    filter: drop-shadow(0px 3px 3px rgb(0, 0, 0, 0.3));
    margin-bottom: 20px;
}

.rptitle {
    display: none;
}

.referral-top-btn {
    text-align: center;
    padding: 10px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
}

button.refer-btn {
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 40px;
    height: 35px;
    min-width: 120px;
    margin: 4px 2px;
    padding: 1px 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 2px 1px #6262ff;
    box-shadow: 0 1px 5px rgb(0,0,0,0.2);
}

    button.refer-btn:hover {
        background: linear-gradient(0deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    }

ul.nav.nav-referral {
    justify-content: center;
    padding: 5px 0 15px;
}

    ul.nav.nav-referral li.nav-item {
        margin: 0 5px;
    }

        ul.nav.nav-referral li.nav-item a.nav-link {
            background: #fff;
            border: 2px solid #5d73a2;
            border-radius: 40px;
            color: #687da8;
            box-shadow: 0 1px 5px rgb(0, 0, 0, 0.2);
            font-weight: 700;
            font-size: 16px;
            padding: 6px 5px;
            min-width: 115px;
            text-align: center;
        }

            ul.nav.nav-referral li.nav-item a.nav-link.active {
                background: #e7efff;
                border: 2px solid #f02068;
                color: #ef2f73;
            }

.commis-date {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 15px;
}

button.date-search-btn {
    background: #7358b5;
    color: #fff;
    padding: 5px 10px;
    height: 35px;
    border-radius: 8px;
    min-width: 110px;
    font-weight: 600;
    text-transform: uppercase;
}

table.history-table tr.inviline td {
    background: none;
}

.pinktext {
    color: #f44b8a;
}

@media(max-width: 767px) {
    .rpbanner-img {
        display: none;
    }

    .rp-banner-wrap {
        background: url("../images/referral/referbg.jpg")no-repeat;
        background-size: cover;
        border: 2px solid #fff;
        padding: 15px 10px;
        text-align: center;
        border-radius: 10px;
    }

    .referral-top-btn {
        position: initial;
    }

    .rptitle {
        display: block;
        margin-bottom: 10px;
    }
}

@media(max-width: 480px) {
    ul.nav.nav-referral li.nav-item {
        margin: 0 0.5%;
        width: 32%;
    }

        ul.nav.nav-referral li.nav-item a.nav-link {
            font-size: 14px;
            padding: 6px 3px;
            min-width: auto;
        }
}

/** Update - 22/1/2025 **/
.live-transaction-container {
    position: relative;
    padding: 15px 0 0;
}

.live-table-wrapper {
    display: grid;
    grid-template-columns: 72% auto;
    align-items: center;
}

.transac-img {
    margin-left: -13%;
}

.livetable-outer {
    background: linear-gradient(90deg, rgba(167, 139, 191, 1) 0%, rgba(141, 160, 211, 1) 50%, rgba(129, 180, 199, 1) 100%);
    border-radius: 12px;
    padding: 8px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.livetable-box {
    background: #fff;
    border-radius: 10px;
    height: 100%;
}

.live-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 23px;
    font-weight: 800;
    color: #e8030a;
    text-transform: uppercase;
    padding: 4px 15px;
    height: 50px;
}

.livetrans-iconive {
    background: #e8030a;
    color: #fff;
    font-size: 20px;
    padding: 4px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

span.live-circle {
    font-size: 65%;
    margin-left: 5px;
    animation: blink 1.3s ease-in-out infinite
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.table-responsive.trans-live-wrap {
    max-height: 226px;
}

    .table-responsive.trans-live-wrap::-webkit-scrollbar {
        display: none;
    }

table.live-table tr td {
    font-size: 18px;
    font-weight: 700;
    padding: 7px 15px;
    border: 2px solid #a38ec3;
    text-transform: uppercase;
    color: #4e4e4e;
}

    table.live-table tr td:first-child {
        border-left: none;
    }

table.live-table tr:last-child td {
    border-bottom: none;
}

table.live-table tr td:last-child, table.live-table tr td:nth-child(2) {
    border-right: none;
    text-align: right;
    color: #e8030a;
}

table.live-table tr td.dpcol {
    background: #efbc1d;
    color: #fff;
    font-size: 20px;
}

table.live-table tr td.wdcol {
    background: #40c99a;
    color: #fff;
    font-size: 20px;
    text-align: left;
}

@media(max-width: 1080px) {
    .live-transaction-container {
        padding: 20px 0 20px;
    }
}

@media(max-width: 991px) {
    .live-table-wrapper {
        display: block;
    }

    .transac-img {
        display: none;
    }
}

@media(max-width: 767px) {
    table.live-table tr td.dpcol, table.live-table tr td.wdcol {
        font-size: 15px;
    }

    table.live-table tr td {
        font-size: 14px;
        padding: 7px 10px;
    }
}

@media(max-width: 480px) {
    .livetable-outer {
        padding: 5px;
    }

    .live-title-wrap {
        font-size: 18px;
        padding: 4px 10px;
        height: 45px;
    }

    .livetrans-iconive {
        font-size: 15px;
    }

    table.live-table tr td.dpcol, table.live-table tr td.wdcol {
        font-size: 15px;
    }

    table.live-table tr td {
        font-size: 13px;
        padding: 6px 5px;
    }
}

/** Updated - 7/4/2025**/
.bank-qrcode {
    padding: 10px;
    border: 2px solid #bfb8da;
    border-radius: 10px;
    margin: 5px 0;
    max-width: 180px;
}

/** Shop Page Updated - 13/5/2025**/
.shop-page {
    background: url("../images/bg-home.jpg") no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 10px 0 5px;
    text-align: center;
}

button.shop-btn {
    background: linear-gradient(180deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    color: #fff;
    border-radius: 40px;
    height: 40px;
    padding: 3px 15px;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    text-shadow: 1px 1px 2px #a5678e;
    min-width: 160px;
    margin: 3px 5px;
}

    button.shop-btn.reward {
        background: linear-gradient(180deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
        text-shadow: 1px 1px 2px #a5678e;
    }

    button.shop-btn:hover {
        background: linear-gradient(0deg, rgba(255, 79, 145, 1) 0%, rgba(219, 66, 123, 1) 100%);
    }

    button.shop-btn.reward:hover {
        background: linear-gradient(0deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
        text-shadow: 1px 1px 2px #a5678e;
    }

.shop-search-wrap {
    position: relative;
    max-width: 600px;
    margin: 25px auto;
}

.searchbox {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 0 15px;
    overflow: hidden;
    box-shadow: 0 4px 7px rgb(104, 125, 168, 0.4);
}

input.search-input {
    height: 37px;
    border: none;
    padding: 4px 10px;
}

.shop-filter-menu {
    padding-bottom: 15px;
}

.ctgbox {
    display: inline-block;
    vertical-align: top;
    margin: 3px;
    border: 2px solid #fff;
    border-radius: 10px;
    width: 110px;
    background: linear-gradient(0deg, rgba(144, 167, 214, 1) 0%, rgba(104, 125, 168, 1) 100%);
    color: #fff;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
    padding: 5px 6px;
    line-height: 1.1;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 1px 1.5px 2px #6262ff;
    cursor: pointer;
}

    .ctgbox.active {
        background: linear-gradient(180deg, rgba(239, 10, 106, 1) 0%, rgba(182, 53, 156, 1) 100%);
    }

.shopcatg-icon {
    max-width: 47px;
    margin: 0 auto 2px;
}

.ctg-inner {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prodwrap {
    vertical-align: top;
    background: linear-gradient(180deg, rgba(129, 180, 199, 1) 0%, rgba(167, 139, 191, 1) 100%);
    position: relative;
    padding: 3px;
    overflow: hidden;
    border-radius: 15px;
    max-width: 270px;
    margin: 5px;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 0.3);
}

.prod-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.prd-thumbnail {
    border-bottom: 2px solid #81b4c7;
    height: 265px;
    overflow: hidden;
}

    .prd-thumbnail img {
        object-fit: cover;
        height: 100%;
        transition: ease 0.3s;
    }

.prod-box:hover .prd-thumbnail img {
    transform: scale(1.05);
    transition: ease 0.3s;
}

.prd-info-wrap {
    padding: 7px 8px;
}

.pdinfo {
    color: #4e4e4e;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pdpts {
    color: #e22076;
    font-size: 16px;
    font-weight: 600;
    padding: 7px 0 0;
}

.reward-pagination-wrap {
    padding: 20px 0px;
}

    .reward-pagination-wrap a {
        color: #4e4e4e;
        font-size: 16px;
        font-weight: 600;
        margin: 0 5px;
    }

button.page-btn {
    color: #4e4e4e;
}

    .reward-pagination-wrap a:hover, button.page-btn:hover {
        color: #e54681;
    }

@media(max-width: 767px) {
    .ctgbox {
        padding: 4px 4px;
        font-size: 11px;
        width: 80px;
        margin: 3px 1px;
    }

    .shopcatg-icon {
        max-width: 32px;
        margin: 0 auto 2px;
    }
}

@media(max-width: 600px) {
    .prodwrap {
        max-width: 47%;
        margin: 1% 0.6%;
    }

    .prd-thumbnail {
        height: 44vw;
    }

    .pdinfo {
        font-size: 2.6vw;
        height: 5.6vw;
    }

    .pdpts {
        font-size: 2.7vw;
    }
}

@media(max-width: 480px) {
    .ctgbox {
        font-size: 2.2vw;
        width: 18.5%;
        margin: 1% 0.3%;
    }

    .shopcatg-icon {
        max-width: 7vw;
        margin: 0 auto;
    }

    .ctg-inner {
        height: 6.5vw;
    }
}

/** Free line Update 28/5/2025 **/
a.free-top-icon {
    display: inline-block;
    margin-right: 5px;
}

    a.free-top-icon img {
        max-height: 35px;
    }

.modal-content.freeline {
    background: url("../images/free-bg.jpg")no-repeat;
    background-size: cover;
    border: 4px solid #a78bbf;
    border-radius: 12px;
    text-align: center;
    padding: 30px 20px;
}

button.close-free-btn {
    border: 2px solid #295080;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    color: #295080;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    right: 6px;
    top: 7px;
    z-index: 2;
}

.freeprd {
    position: relative;
    display: inline-block;
    margin: 5px 8px;
    max-width: 150px;
    vertical-align: top;
}

.prdimg {
    filter: drop-shadow(0px 0px 3px rgb(0, 0, 0, 0.3));
}

a.freeplay-btn {
    background: #fb4d8e;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 40px;
    min-width: 130px;
    padding: 6px 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 1px 6px rgb(0, 0, 0, 0.3);
    text-shadow: 0 1px 1px #a5678e;
    display: inline-block;
    margin: 10px 0px 0;
}

    a.freeplay-btn:hover {
        background: #464646;
    }

@media(max-width: 480px) {
    .freeprd {
        margin: 5px 6px;
        max-width: 120px;
    }

    a.freeplay-btn {
        min-width: 110px;
        font-size: 13px;
    }
}

/** Update - 3/7/2025 **/
.live-table-wrapper {
    grid-template-columns: 80% auto;
}

.live-title-wrap {
    font-size: 20px;
    height: 35px;
}

.livetrans-iconive {
    font-size: 15px;
}

table.live-table tr td {
    font-size: 15px;
    padding: 4px 15px;
}

table.live-table tr:first-child td {
    border-top: none;
}

.mblive-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .mblive-wrap .livetrans-iconive {
        display: none;
    }

.free-credit-games-wrapper {
    position: relative;
    text-align: center;
    padding: 30px 0 15px;
}

.claim-free-title {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.free-games-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.free-more {
    background: #fff;
    color: #e8010b;
    padding: 5px 10px;
    max-width: max-content;
    margin: 0 auto;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
}

.bank-title {
    font-size: 20px;
    font-weight: 800;
    padding: 10px 0;
    text-align: center;
}

@media(max-width: 991px) {
    .livetable-box {
        overflow: hidden;
    }

    .live-title-wrap {
        display: none;
    }

    .mblive-wrap .livetrans-iconive {
        display: flex;
    }

    table.live-table tr td.dpcol, table.live-table tr td.wdcol {
        font-size: 15px;
    }

    .livetrans-iconive {
        font-size: 13px;
    }

    table.live-table tr:last-child {
        display: none;
    }

    table.live-table tr:nth-last-child(2) td {
        border-bottom: none;
    }
}

@media(max-width: 767px) {
    .claim-free-title {
        font-size: 24px;
    }

    .free-more {
        font-size: 13px;
    }
}

@media(max-width: 480px) {
    .free-games-wrap {
        grid-gap: 10px;
    }

    .claim-free-title {
        font-size: 20px;
    }

    table.live-table tr td {
        font-size: 13px;
        padding: 5px 5px;
    }

    .live-title-wrap {
        font-size: 16px;
    }

    .livetrans-iconive {
        font-size: 14px;
    }

    table.live-table tr td.dpcol, table.live-table tr td.wdcol {
        font-size: 13px;
    }

    .livetrans-iconive {
        font-size: 10px;
    }
}