﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Anton&family=Roboto:wght@400;500;700;900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: #191919;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    a:hover, a:focus, button:focus, select:focus, input:focus {
        text-decoration: none;
        outline: none;
    }

img {
    max-width: 100%;
}

input, textarea, select {
    color: #666;
    width: 100%;
}

    input::placeholder, textarea::placeholder, select::placeholder {
        color: #c8c6c6;
    }

.event-floating {
    position: fixed;
    z-index: 9999;
    bottom: 5%;
    left: 2%;
    max-width: 180px;
    animation: float 2s ease-in-out infinite;
}

.t-body {
    padding-top: 126px;
}

.max-container {
    max-width: 1280px;
    padding: 0 10px;
    position: relative;
    margin: 0 auto;
}

/** Header **/
.header-sec {
    position: fixed;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}

.header-top {
    background: #fff;
}

.topbar-container {
    max-width: 1300px;
    padding: 0 10px;
    margin: 0 auto;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.day-mode {
    background: linear-gradient(to bottom, rgba(204,204,204,1) 0%, rgba(229,229,229,1) 100%);
    border: 1px solid #d3d3d3;
    border-radius: 40px;
    width: 64px;
    height: 22px;
    padding: 2px;
    font-family: 'Abel';
    font-size: 13px;
    font-weight: 700;
    color: #1f1f1f;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgb(0 0 0 / 45%);
}

span.day-text {
    margin-left: 5px;
    line-height: 0;
}

.night-mode {
    background: linear-gradient(to bottom, rgba(33,31,32,1) 0%, rgba(66,62,63,1) 100%);
    border: 1px solid #3b3738;
    border-radius: 40px;
    width: 64px;
    height: 22px;
    padding: 2px;
    font-family: 'Abel';
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgb(0 0 0 / 45%);
    display: none;
}

.switch-btn.active .night-mode {
    display: flex;
}

.switch-btn.active .day-mode {
    display: none;
}

.dropdown.language {
    margin-left: 10px;
}

button.lang-btn {
    background: #3c3c3c;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 40px;
    height: 22px;
    width: 60px;
    font-family: 'Abel';
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

span.arrow-round {
    font-size: 7px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    padding: 3px;
}

.dropdown-menu.language {
    padding: 3px 0;
    background: rgba(0,0,0,0.7);
    min-width: 100%;
    border: none;
}

    .dropdown-menu.language .lang-item {
        font-family: 'Abel';
        color: #fff;
        padding: 1px 2px;
        font-size: 13px;
        display: block;
        text-align: center;
    }

        .dropdown-menu.language .lang-item:hover {
            color: #ff9c00;
        }

.header-btm {
    background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
}

.header-container {
    max-width: 1377px;
    padding: 0 10px;
    margin: 0 auto;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 80px;
}

.header-menu {
    width: 45%;
}

ul.main-nav li.nav-item {
    margin: 0 12px;
    padding: 0;
    cursor: pointer;
    position: relative;
}

    ul.main-nav li.nav-item a.link-nav {
        position: relative;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        height: 92px;
        align-items: center;
    }

        ul.main-nav li.nav-item a.link-nav::after {
            content: '';
            width: 100%;
            height: 3px;
            background: transparent;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

    ul.main-nav li.nav-item:hover a.link-nav {
        color: #ffcd7d;
    }

        ul.main-nav li.nav-item:hover a.link-nav::after {
            background: #ffcd7d;
        }

.dropdown-container {
    position: absolute;
    background: #eefafb;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
}

.dropdown-wrapper {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    max-width: 1366px;
    margin: 0 auto;
}

    .dropdown-wrapper a {
        display: block;
        padding: 5px 5px 10px;
    }

        .dropdown-wrapper a:hover {
            background: #e8e8e8;
        }

ul.main-nav li.nav-item:hover .dropdown-container {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.dropdown-menu-container {
    position: absolute;
    background: #eefafb;
    top: 100%;
    left: 0;
    right: 0;
    width: 190px;
    margin: 0 auto;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
}

ul.main-nav li.nav-item:hover .dropdown-menu-container {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.dropdown-menu-wrapper a {
    display: block;
    padding: 7px 15px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

    .dropdown-menu-wrapper a:hover {
        background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
        color: #fff;
    }

.dropdown-menu-wrapper img {
    filter: contrast(0) brightness(0);
}

.dropdown-menu-wrapper a:hover img {
    filter: none;
}

.mdicon img {
    max-width: 30px;
}

.mdicon {
    margin-right: 10px;
}

.login-top-wrap {
    min-width: 25%;
    display: flex;
    justify-content: end;
}

.login-reg {
    color: #fff;
    font-size: 17px;
}

    .login-reg a {
        color: #fff;
        text-transform: uppercase;
        margin: 0 3px;
    }

        .login-reg a:hover {
            color: #ffcd7d;
        }

.login-top-mobile {
    display: none;
}

button.m-login-btn {
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(227,227,227,1) 100%);
    border: 1px solid #ff9c00;
    border-radius: 35px;
    color: #ff9c00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 90px;
    height: 30px;
    padding: 2px 5px;
    margin: 0 4px;
}

    button.m-login-btn.reg {
        background: #ff9c00;
        color: #fff;
        border: 1px solid #fff;
    }

button.day-night-btn {
    background: url("../images/day-btn.png")no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    border: none;
    padding: 0;
}

    button.day-night-btn.active {
        background: url("../images/night-btn.png")no-repeat;
        background-size: 100%;
    }

button.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 0 10px;
}

    button.mobile-menu-btn img {
        max-width: 37px;
    }

.dp-arrow {
    margin-left: 9px;
    font-size: 14px;
}






/** Header After login **/
.user-top-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    grid-gap: 5px;
    min-width: 30%;
}

.player-user-wrapper {
    position: relative;
    color: #fff;
    margin-left: 5px;
    cursor: pointer;
}

.player-dropdown-wrap {
    position: absolute;
    min-width: 200px;
    top: 100%;
    right: 0;
    background: #fff;
    overflow: auto;
    border-radius: 10px;
    border: 1px solid #2d71a0;
    color: #000;
    z-index: 2;
    display: none;
}

.player-user-wrapper:hover .player-dropdown-wrap {
    display: block;
}

.ply-top {
    background: linear-gradient(to bottom, rgba(64,178,180,1) 0%, rgba(45,113,160,1) 100%);
    color: #fff;
    text-align: center;
    padding: 7px 0;
}

.ply-username {
    font-size: 15px;
    font-weight: 500;
}

.point-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
    padding: 5px;
}

.player-menu a {
    display: block;
    padding: 7px 15px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

    .player-menu a img {
        filter: contrast(0) brightness(0);
    }

    .player-menu a:hover {
        background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
        color: #fff;
    }

        .player-menu a:hover img {
            filter: none;
        }

.ply-vip {
    color: #ffcd7d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
}

.play-vipbadge img {
    max-height: 42px;
}

span.ply-arrow {
    position: absolute;
    right: 0;
    font-size: 14px;
}

.tpicon {
    margin-right: 6px;
}

    .tpicon img {
        max-height: 25px;
        filter: drop-shadow(0px 1px 2px rgb(0,0,0,0.3));
    }

.ply-box-wrap {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    grid-gap: 8px 5px;
}

.pts-box {
    background: #165379;
    color: #ffcd7d;
    font-size: 13px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pts-text {
    color: #fff;
    margin-left: 3px;
    font-size: 15px;
}

button.balance-btn {
    background: #165379;
    color: #ffcd7d;
    font-size: 14px;
    height: 35px;
    padding: 0;
    width: 100%;
    border: none;
    border-radius: 8px;
    line-height: 1;
    position: relative;
}

.amt-py {
    display: block;
    font-size: 13px;
}

.wt-arrow {
    position: absolute;
    right: 7px;
    top: 10px;
    font-size: 13px;
}

button.wallet-btn {
    background: #165379;
    color: #ffcd7d;
    font-size: 14px;
    height: 35px;
    padding: 0;
    width: 100%;
    border: none;
    border-radius: 8px;
}

    button.balance-btn:hover, button.balance-btn.active, button.wallet-btn:hover, button.wallet-btn.active {
        background: #022840;
    }

.dropdown-wallet-wrap {
    display: none;
}

.dropdown.wallet:hover .dropdown-wallet-wrap {
    display: block;
    position: absolute;
    min-width: 150px;
    top: 100%;
    left: 0;
    background: #fff;
    overflow: auto;
    border-radius: 10px;
    border: 1px solid #2d71a0;
}

.dropdown-wallet-wrap a {
    display: block;
    padding: 5px 15px;
    color: #000;
}

    .dropdown-wallet-wrap a img {
        filter: contrast(0) brightness(0);
    }

    .dropdown-wallet-wrap a:hover {
        background: #3898ac;
        color: #fff;
    }

        .dropdown-wallet-wrap a:hover img {
            filter: none;
        }

.tquick-wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

a.topquick-link {
    margin: 0 2px;
}

    a.topquick-link img {
        filter: contrast(0) brightness(10);
        max-height: 24px;
    }

    a.topquick-link:hover img {
        filter: none;
    }

.dropdown-wallet {
    position: absolute;
    top: 110%;
    right: 0;
    padding: 0;
    border-radius: 0;
    min-width: 350px;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

    .dropdown-wallet.active {
        visibility: visible;
        opacity: 1;
        transition: 0.3s;
    }

.wallet-overview-wrapper {
    overflow: auto;
    border-radius: 10px;
    border: 1px solid #2d71a0;
}

.main-wallet {
    background: linear-gradient(to bottom, rgba(64,178,180,1) 0%, rgba(45,113,160,1) 100%);
    color: #fff;
    padding: 7px 7px;
}

.table-responsive.wallet {
    background: #f2f5fc;
    padding: 4px 7px 7px;
    max-height: 500px;
}

    .table-responsive.wallet::-webkit-scrollbar {
        width: 2px;
    }

    .table-responsive.wallet::-webkit-scrollbar-track {
        background: #fff;
    }

    .table-responsive.wallet::-webkit-scrollbar-thumb {
        background: #3898ac;
    }

        .table-responsive.wallet::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

table.wallet-table tr td {
    padding: 1px 2px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

    table.wallet-table tr td:nth-child(2), table.wallet-table tr td:last-child {
        text-align: right;
    }

button.all-btn {
    background: #fff;
    border-radius: 35px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    box-shadow: 1px 2px 3px rgb(0 0 0 / 40%);
}

    button.all-btn:hover {
        box-shadow: none;
        transform: scale(0.98);
    }

button.inout-btn {
    background: #3898ac;
    border: none;
    color: #fff;
    text-transform: uppercase;
    margin: 0 2px;
    padding: 2px 1px;
    min-width: 52px;
    font-size: 14px;
}

    button.inout-btn.grey {
        background: #6b6b6b;
    }

    button.inout-btn:hover {
        filter: brightness(1.1);
    }



/** Footer **/
.footer-top {
    background: #1c2e38;
    color: #c0c0c0;
    padding: 30px 0 15px;
}

.footer-provider {
    text-align: center;
}

    .footer-provider img {
        filter: grayscale(1) contrast(0.7) brightness(1);
    }

.footer-divider {
    text-align: center;
    padding: 15px 0;
}

.logo-cert {
    text-align: center;
    padding: 10px 0;
}

    .logo-cert img {
        filter: grayscale(1) contrast(0.7);
        margin: 5px 15px;
    }

        .footer-provider img:hover, .logo-cert img:hover {
            filter: none;
        }

.seo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
    font-size: 13px;
}

    .seo-wrapper a {
        color: #fff;
    }

.htitle-1 {
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    padding-bottom: 10px;
}

.footer-menu {
    text-align: center;
}

    .footer-menu a {
        color: #fff;
        font-size: 16px;
        display: inline-block;
        padding: 0 10px;
        border-right: 1px solid #fff;
        line-height: 13px;
    }

        .footer-menu a:hover {
            color: #ff9c00;
        }

        .footer-menu a:last-child {
            border: none;
        }

.footer-btm {
    background: #0d0d0d;
    color: #fff;
    text-align: center;
    padding: 6px 5px;
    font-size: 12px;
}

/** Side Float **/
.floating-right-wrapper {
    position: fixed;
    z-index: 99;
    top: 20%;
    right: 10px;
}

.option-wrap {
    position: relative;
    margin-bottom: 12px;
}

.circle-btn {
    background: linear-gradient(45deg, rgba(202,202,202,1) 0%, rgba(254,254,254,1) 100%);
    border-radius: 50%;
    border: 1px solid #ff9c00;
    height: 75px;
    width: 75px;
    box-shadow: inset 2px -1px 1px rgb(0 0 0 / 15%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.option-wrap img {
    max-height: 37px;
}

.option-wrap:hover .circle-btn {
    background: radial-gradient(ellipse at center, rgba(255,191,0,1) 0%, rgba(255,157,0,1) 100%);
}

    .option-wrap:hover .circle-btn img {
        filter: brightness(10) contrast(1);
    }

.option-wrap:hover .sideout-wrapper {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.sideout-wrapper {
    position: absolute;
    right: 120%;
    top: 0;
    background: #fff;
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 22%);
    min-width: 224px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

    .sideout-wrapper::after {
        content: '';
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #fff;
        position: absolute;
        right: -10px;
        top: 30px;
        filter: drop-shadow(2px 2px 1px rgb(0,0,0,0.1));
    }

.sideout-inner {
    background: #f8f8f8;
    box-shadow: inset 0 2px 6px rgb(0 0 0 / 14%);
    border: 1px solid #ff9c00;
    border-radius: 15px;
    padding: 4px 12px;
}

a.ct-button {
    color: #ff9c00;
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 10px;
    margin: 10px 0;
}

    a.ct-button:hover .ctinfo {
        text-decoration: underline;
    }

.ct-icon {
    font-size: 34px;
    text-align: center;
}

.ct-detail {
    font-size: 15px;
    font-weight: 500;
}

.ctinfo {
    color: #444444;
}

.wechat-qr img {
    max-height: none;
    max-width: 140px;
}

/** Floating Bubble **/
.float-container {
    position: fixed;
    bottom: 11%;
    right: 0px;
    z-index: 99;
    display: none;
}

    .float-container.active {
        animation: none;
    }

#toggle {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.chat-contact {
    color: #031b33;
    font-size: 23px;
}

.close-contact {
    color: #808080;
    display: none;
    font-size: 16px;
}

#toggle:checked + .menu__toggle > .menu__button .chat-contact {
    display: none;
}

#toggle:checked + .menu__toggle > .menu__button .close-contact {
    display: block;
}

#toggle:checked + .menu__toggle > .menu__button {
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #ffa20f;
    --d: 60px;
    animation: none;
    box-shadow: inset 0px 1px 4px rgb(0 0 0 / 20%);
}

.menu__item {
    visibility: hidden;
    opacity: 0;
}

#toggle:checked ~ .menu-round .menu__item:nth-child(1) {
    transition: all 250ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -11.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(2) {
    transition: all 250ms 100ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -15.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(3) {
    transition: all 250ms 200ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -19.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item:nth-child(4) {
    transition: all 250ms 300ms cubic-bezier(0.04, 0.76, 0.67, 1.2);
    transform: translate3d(0, -23.2em, 0);
}

#toggle:checked ~ .menu-round .menu__item {
    visibility: visible;
    opacity: 1;
}

.menu__button {
    --d: 70px;
    width: var(--d);
    height: var(--d);
    position: absolute;
    bottom: calc(10px / 2);
    right: calc(17px / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 100ms ease;
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

.menu-round {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
    left: -12px;
    top: -20px;
}

.menu__item {
    position: absolute;
    right: 0;
    transition: all 250ms;
}

.mbcont {
}

.mbcont-inner {
    background: #fff;
    box-shadow: inset 0px 2px 4px rgb(0 0 0 / 15%);
    border: 1px solid #ff9c00;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 45px auto;
    grid-gap: 5px;
    align-items: center;
    width: 170px;
    font-size: 12px;
    color: #ff9c00;
    font-weight: 700;
    height: 50px;
    padding: 0 3px;
}

.sc-icon {
    color: #ff9c00;
    font-size: 35px;
    text-align: center;
}

.ct-text {
    font-weight: 500;
    color: #000;
}

.mbcont-inner.wechat {
    border-radius: 6px 6px 0 6px;
}

.wechat-qr-wrap {
    max-width: 110px;
    margin: 0 0 0 auto;
    background: #fff;
    border: 1px solid #ff9c00;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 1px;
    margin-top: -1px;
}

    .wechat-qr-wrap img {
        max-height: 105px;
    }




/** Back to Top **/
#scroll {
    position: fixed;
    right: 10px;
    bottom: 30px;
    cursor: pointer;
    z-index: 999;
}

.arrow-top {
    background: linear-gradient(45deg, rgba(202,202,202,1) 0%, rgba(254,254,254,1) 100%);
    border-radius: 50%;
    border: 1px solid #a2a2a2;
    height: 45px;
    width: 45px;
    box-shadow: inset 1px -1px 1px rgb(0 0 0 / 15%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

    .arrow-top:hover {
        border: 1px solid #ff9c00;
    }


/** Home Page **/
.desktop-slider .carousel-indicators li {
    border-radius: 50%;
    width: 19px;
    height: 19px;
    position: relative;
    padding: 0;
    opacity: 1;
    border: 1px solid transparent;
}

    .desktop-slider .carousel-indicators li::after {
        content: '';
        background: #ff9c00;
        height: 9px;
        width: 9px;
        margin: auto;
        border: 1px solid #fff;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
    }

    .desktop-slider .carousel-indicators li.active {
        border: 1px solid #ff9c00;
    }

.home-body {
    background: url("../images/bg_home.jpg")no-repeat top center;
    background-size: cover;
    padding: 25px 0;
}

.annoucement-wrap {
    max-width: 1280px;
    margin: 0 auto 15px;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
    padding: 2px 15px;
    border: 1px solid #9f9f9f;
    color: #686767;
    border-radius: 9px;
    height: 35px;
    display: flex;
    align-items: center;
}

.speaker-icon {
    margin-right: 15px;
}

.bestgame-sec {
    text-align: center;
    padding: 30px 0;
}

.title-wrapper {
    text-align: center;
}

.title-1 {
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    color: #ff9c00;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.subtitle-1 {
    color: #ff9c00;
    font-size: 19px;
    position: relative;
    display: inline-block;
    max-width: 925px;
    margin: auto;
    padding: 0 105px;
}

    .subtitle-1::before {
        content: '';
        background: url("../images/subicon-left.png")no-repeat;
        background-size: 100%;
        width: 100px;
        height: 26px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .subtitle-1::after {
        content: '';
        background: url("../images/subicon-right.png")no-repeat;
        background-size: 100%;
        width: 100px;
        height: 26px;
        position: absolute;
        top: 0;
        right: 0;
    }

.bestgame-wrapper {
    margin-top: 15px;
}

ul.nav-game {
    text-align: center;
}

    ul.nav-game .nav-item {
        width: 19%;
        margin: 0 0.5%;
    }

        ul.nav-game .nav-item .nav-link {
            position: relative;
            color: #fff;
            padding: 0;
        }

.gmtext {
    position: absolute;
    font-size: 38px;
    text-transform: uppercase;
    text-shadow: 1px 2px 3px rgb(0 0 0 / 60%);
    bottom: 3%;
    left: 2%;
    z-index: 2;
}

.gmimg-b {
    display: none;
}

ul.nav-game .nav-item .nav-link.active .gmimg-a {
    display: none;
}

ul.nav-game .nav-item .nav-link.active .gmimg-b {
    display: initial;
}

.gmimg-b img {
    filter: drop-shadow(0 2px 4px rgb(0,0,0,0.35));
}

.game-provider {
    padding: 30px 0 15px;
}

.pvd-item {
    display: inline-block;
    max-width: 110px;
    margin: 8px 12px;
    position: relative;
    vertical-align: text-top;
}

.pvd-box {
    background: #fff;
    border-radius: 15px;
    width: 110px;
    height: 110px;
    margin: auto;
    box-shadow: 0 2px 5px rgb(0 0 0 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pvd-item:hover .pvd-box, .pvd-item.active .pvd-box {
    background: linear-gradient(45deg, rgba(49,121,163,1) 0%, rgba(62,174,178,1) 100%);
}

    .pvd-item:hover .pvd-box img, .pvd-item.active .pvd-box img {
        filter: brightness(0) invert(1);
    }

.pvd-text {
    color: #686767;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.benefit-sec {
    padding: 45px 0;
    background: rgb(215,227,240,0.35);
    text-align: center;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
    margin: 30px 0 25px;
}

.benefit-box {
    position: relative;
    max-width: 280px;
    margin: auto;
}

.bnf-text {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 14%;
    font-family: 'Abel';
    font-size: 19px;
    font-weight: 600;
    color: #1f1f1f;
    text-transform: uppercase;
    transition: 0.3s;
}

.bnf-img {
    position: relative;
    z-index: 2;
    padding: 0 5px;
    transition: 0.3s;
}

.greybase {
    background: #eaeaea;
    border-radius: 15px;
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: -3%;
}

.benefit-box:hover .bnf-img {
    transition: 0.3s;
    transform: scale(1.08);
}

.best-sec {
    padding: 45px 0;
    text-align: center;
}

.best-online-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 15px;
    margin: 30px 0 15px;
}

.usp-title {
    font-size: 19px;
    color: #ff9c00;
}

.usp-text {
    font-size: 14px;
    color: #747474;
    max-width: 260px;
    margin: 5px auto;
}

/** Best Game mobile **/
.bestgame-mobile {
    display: none;
}

.bestgame-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0;
}

    .bestgame-btn img {
        display: none;
    }

        .bestgame-btn img.img-b {
            display: block;
        }

    .bestgame-btn.collapsed img.img-b {
        display: none;
    }

    .bestgame-btn.collapsed img.img-a {
        display: block;
    }

.bestgame-title {
    position: absolute;
    left: 3%;
    bottom: 5%;
    color: #fff;
    font-size: 5vw;
    text-transform: uppercase;
    text-shadow: 1px 2px 3px rgb(0 0 0 / 60%);
}

/** Register, Login, Activation. Forgot Password Page **/
.register-sec {
    background: url("../images/bg_home.jpg")no-repeat top center;
    background-size: cover;
    padding: 60px 0;
}

.reg-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    min-height: 400px;
    background: #fff;
    background-image: url("../images/reg-bg-2.jpg"), url("../images/reg-bg-1.jpg");
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, 100%;
    background-position: top left, bottom right;
    border-radius: 10px;
    border: 1px solid #ffcc7c;
    box-shadow: 2px 4px 5px rgb(0,0,0,0.2);
    padding: 30px;
}

.reg-form {
    max-width: 620px;
    margin: 15px auto;
}

.rfield {
    position: relative;
}

.field-wrap {
    margin-top: 12px;
}

.flabel {
    padding-bottom: 5px;
    color: #686767;
}

input.reg-input, select.reg-input {
    border: 1px solid #ffcc7c;
    height: 42px;
    border-radius: 8px;
    padding: 5px 15px;
    box-shadow: inset 0 1px 3px rgb(0,0,0,0.35);
}

.rfield.contact {
    display: grid;
    grid-template-columns: 100px auto;
    grid-gap: 10px;
}

.rfield.verify {
    display: grid;
    grid-template-columns: auto 155px;
    grid-gap: 10px;
    align-items: center;
}

.reg-submit-wrap {
    text-align: center;
    padding: 15px 0;
}

button.reg-submit-btn {
    background: #ff9c00;
    border: 1px solid #ff9c00;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    padding: 7px 15px;
    border-radius: 14px;
    min-width: 150px;
    margin-top: 10px;
}

    button.reg-submit-btn:hover {
        background: #fff;
        color: #ff9c00;
    }

span.field-icon {
    position: absolute;
    right: 15px;
    top: 16px;
    font-size: 18px;
    color: #7E7E7E;
}

.login-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 5px;
    font-size: 13px;
    color: #686767;
}

.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;
}

    .check-group label:before {
        content: '';
        -webkit-appearance: none;
        background-color: #fff;
        border: 2px solid #d7dbe7;
        border-radius: 3px;
        padding: 7px;
        display: inline-block;
        position: relative;
        vertical-align: text-bottom;
        cursor: pointer;
        margin-right: 5px;
        width: 18px;
        height: 19px;
    }

.check-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid #4d5061;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

a.forgot-link {
    color: #686767;
}

.regnow {
    text-align: center;
    color: #686767;
    font-size: 14px;
}

    .regnow a {
        color: #ff9c00;
    }

.subtitle-pw {
    text-align: center;
    color: #686767;
    font-size: 17px;
}

ul.nav-activation {
    max-width: 620px;
    margin: 15px auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
}

    ul.nav-activation li.nav-item a.nav-link {
        border: 1px solid #ffcc7c;
        border-radius: 6px;
        font-weight: 600;
        color: #000;
        text-transform: uppercase;
        padding: 10px 5px;
    }

        ul.nav-activation li.nav-item a.nav-link.active {
            color: #fff;
            background: #ff9c00;
        }

.tab-content.activation {
    max-width: 620px;
    margin: 0 auto;
}

.active-method-wrap {
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(227,227,227,1) 100%);
    padding: 20px 15px;
    border: 1px solid #ffcc7c;
    border-radius: 6px;
    text-align: center;
}

.active-caption {
    max-width: 300px;
    margin: 0 auto 20px;
    color: #686767;
}

.activation-code-wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
    max-width: 300px;
    margin: auto;
}

input.active-input {
    text-align: center;
    height: 60px;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    border: 1px solid #ffcc7c;
    border-radius: 8px;
}

.step-activate {
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(227,227,227,1) 100%);
    padding: 10px 15px;
    border: 1px solid #ffcc7c;
    border-radius: 6px;
    text-align: left;
    color: #686767;
    margin-bottom: 10px;
}

    .step-activate code {
        color: #686767;
        font-size: 100%;
    }

.activated-wrapper {
    text-align: center;
    padding: 15px 0 0;
    color: #686767;
}

.activate-img {
    margin-bottom: 18px;
}

.congrat-text {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
}

.activated-sub {
    font-weight: 500;
}

/** Games Page **/
.games-sec {
    background: url("../images/bg_home.jpg")no-repeat top center;
    background-size: cover;
    padding: 35px 0 45px;
}

.gmtitle-wrap {
    text-align: center;
    padding-bottom: 15px;
}

.game-title {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: #ff9c00;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 130px;
}

    .game-title::before {
        content: '';
        background: url("../images/subicon-left.png")no-repeat;
        background-size: 100%;
        width: 110px;
        height: 30px;
        position: absolute;
        top: 24%;
        left: 0;
    }

    .game-title::after {
        content: '';
        background: url("../images/subicon-right.png")no-repeat;
        background-size: 100%;
        width: 110px;
        height: 30px;
        position: absolute;
        top: 24%;
        right: 0;
    }

.pvd-banner {
    position: relative;
    text-align: center;
    border: 8px solid #fff;
    margin-top: 15px;
}

.pvd-deco {
    position: absolute;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.slot-deco-1 {
    left: 18%;
    top: -11%;
    animation: float 3s ease-in-out infinite;
}

.slot-deco-2 {
    left: 16%;
    bottom: -15%;
    animation: float 4s ease-in-out infinite;
}

.slot-deco-3 {
    right: 18%;
    top: -16%;
    animation: float 5s ease-in-out infinite;
}

.slot-deco-4 {
    right: 15%;
    bottom: -7%;
    animation: float 4s ease-in-out infinite;
}

.bg-text {
    font-size: 110px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: #1d1d1d;
    opacity: 0.25;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-tab .bg-text {
    color: #c6c6c6;
}

.game-container-wrap {
    position: relative;
    min-height: 500px;
}

.pvd-character {
    position: absolute;
    left: 0;
    right: 0;
    top: -30%;
    z-index: 3;
    max-width: 482px;
    margin: auto;
}

a.playnow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    color: #fff;
    font-size: 47px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 3px 4px 4px rgb(0 0 0 / 50%);
}

    a.playnow:hover {
        color: #ffcd7d;
        transform: scale(1.03);
    }

.provider-nav {
    margin-top: 2%;
    text-align: center;
    justify-content: center;
}

.game-dl-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
}

    .game-dl-wrapper::before {
        content: '';
        background: url(../images/dl-stick.png)no-repeat;
        background-size: 100%;
        width: 176px;
        height: 31px;
        margin: auto;
        position: absolute;
        z-index: -1;
        top: -28%;
    }

a.download-game-btn {
    background: url("../images/download-button.png")no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 74px;
    margin: 0 5px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 3px rgb(0,0,0,0.5);
}

    a.download-game-btn:hover {
        color: #fff;
        transform: scale(0.98);
    }

    a.download-game-btn img {
        margin-right: 8px;
        filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.6));
        height: 38px;
    }

a.playnow.casino {
    bottom: 8%;
}

.casino-deco-1 {
    left: 18%;
    top: -11%;
    animation: float 3s ease-in-out infinite;
}

.casino-deco-2 {
    left: 16%;
    bottom: -15%;
    animation: float 4s ease-in-out infinite;
}

.casino-deco-3 {
    right: 18%;
    top: -16%;
    animation: float 5s ease-in-out infinite;
}

.casino-deco-4 {
    right: 15%;
    bottom: -7%;
    animation: float 4s ease-in-out infinite;
}

.game-container-wrap.sports {
    min-height: 410px;
}

    .game-container-wrap.sports .bg-text {
        font-size: 200px;
    }

.game-container-wrap.esports .bg-text {
    font-size: 130px;
    color: #c4c4c4;
}

a.playnow.sports {
    bottom: 7%;
}

.sports-deco-1 {
    left: 18%;
    top: -11%;
    animation: float 3s ease-in-out infinite;
}

.sports-deco-2 {
    left: 16%;
    bottom: -15%;
    animation: float 4s ease-in-out infinite;
}

.sports-deco-3 {
    right: 18%;
    top: -16%;
    animation: float 5s ease-in-out infinite;
}

.sports-deco-4 {
    right: 15%;
    bottom: -7%;
    animation: float 4s ease-in-out infinite;
}

.play-fish-btn {
    background: url(../images/fishing/play-fish-btn.png)no-repeat;
    background-size: 100% 100%;
    max-width: 214px;
    height: 50px;
    border: none;
    width: 100%;
    margin: 10px auto;
    color: #4e4e4e;
    font-weight: 900;
    font-size: 21px;
    font-style: italic;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 2px 3px rgb(0,0,0,0.4));
}

    .play-fish-btn:hover {
        transform: scale(0.98);
    }

span.play-round {
    height: 23px;
    width: 23px;
    font-size: 9px;
    border: 2px solid #4e4e4e;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.provider-nav.fish {
    position: absolute;
    top: 7%;
    width: 100%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.provider-nav a.fh-item img {
    filter: grayscale(0.9);
}

.provider-nav a.fh-item.active img {
    filter: none;
}

.game-container-wrap.esports {
    min-height: 410px;
}

    .game-container-wrap.esports .pvd-character {
        max-width: none;
    }



/*fire*/
@keyframes scaleUpDown {
    0%, 100% {
        transform: scaleY(1) scaleX(1);
    }

    50%, 90% {
        transform: scaleY(1.1);
    }

    75% {
        transform: scaleY(0.95);
    }

    80% {
        transform: scaleX(0.95);
    }
}

@keyframes shake {
    0%, 100% {
        transform: skewX(0) scale(1);
    }

    50% {
        transform: skewX(5deg) scale(0.9);
    }
}

@keyframes particleUp {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: -100%;
        transform: scale(0.5);
    }
}

@keyframes glow {
    0%, 100% {
        background-color: #ff1d1d;
    }

    50% {
        background-color: #ff0000;
    }
}

.fire {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
}

.fire-main {
    position: absolute;
    height: 100%;
    width: 100%;
    animation: scaleUpDown 3s ease-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

    .fire-main .main-fire {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(farthest-corner at 10px 0, #d40000 0%, #fb0000 95%);
        transform: scaleX(0.8) rotate(45deg);
        border-radius: 0 40% 60% 40%;
        filter: drop-shadow(0 0 10px #d43322);
    }

    .fire-main .particle-fire {
        position: absolute;
        top: 10%;
        left: 45%;
        width: 5%;
        height: 5%;
        background-color: #d43322;
        border-radius: 50%;
        filter: drop-shadow(0 0 10px #d43322);
        animation: particleUp 2s ease-out 0;
        animation-iteration-count: infinite;
        animation-fill-mode: both;
    }

.fire-right {
    height: 100%;
    width: 100%;
    position: absolute;
    animation: shake 2s ease-out 0;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

    .fire-right .main-fire {
        position: absolute;
        top: 15%;
        right: -25%;
        width: 80%;
        height: 80%;
        background-color: #ff0000;
        transform: scaleX(0.8) rotate(45deg);
        border-radius: 0 40% 60% 40%;
        filter: drop-shadow(0 0 10px #fb0000);
    }

    .fire-right .particle-fire {
        position: absolute;
        top: 25%;
        left: 50%;
        width: 5px;
        height: 5px;
        background-color: #fb0000;
        transform: scaleX(0.8) rotate(45deg);
        border-radius: 50%;
        filter: drop-shadow(0 0 10px #fb0000);
        animation: particleUp 2s ease-out 0;
        animation-iteration-count: infinite;
        animation-fill-mode: both;
    }

.fire-left {
    position: absolute;
    height: 100%;
    width: 100%;
    animation: shake 3s ease-out 0;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

    .fire-left .main-fire {
        position: absolute;
        top: 15%;
        left: -20%;
        width: 80%;
        height: 80%;
        background-color: #fb0000;
        transform: scaleX(0.8) rotate(45deg);
        border-radius: 0 40% 60% 40%;
        filter: drop-shadow(0 0 10px #fb0000);
    }

    .fire-left .particle-fire {
        position: absolute;
        top: 5%;
        left: 5%;
        width: 5%;
        height: 5%;
        background-color: #fb0000;
        border-radius: 50%;
        filter: drop-shadow(0 0 10px #fb0000);
        animation: particleUp 3s infinite ease-out 0;
        animation-fill-mode: both;
    }

.fire p {
    position: absolute;
    font-size: 9px;
    font-weight: bold;
    top: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
}

.fish-dl-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

button.play-dl-btn {
    background: url(../images/fishing/play-fish-btn.png)no-repeat;
    background-size: 100% 100%;
    width: 48%;
    margin: 0 1%;
    filter: drop-shadow(0px 2px 3px rgb(0,0,0,0.4));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 19px;
    font-weight: 900;
    color: #4e4e4e;
    text-transform: uppercase;
    font-style: italic;
}

span.dl-round {
    margin-left: 10px;
    font-size: 20px;
}

button.play-dl-btn:hover {
    transform: scale(0.98);
}




/** Info Pages **/
.info-sec {
    background: url("../images/bg_home.jpg")no-repeat top center;
    background-size: cover;
    padding: 35px 0;
}

.info-container {
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 25px;
}

ul.info-tabs {
    flex-flow: column;
    border: none;
    justify-content: center;
    text-align: center;
}

    ul.info-tabs .nav-item {
        width: 100%;
        max-width: 186px;
        margin: 0px auto 10px 0;
    }

ul.nav.info-tabs .nav-link {
    background: #fff;
    color: #686767;
    border: 1px solid #e8e8e8;
    border-radius: 40px;
    padding: 12px 4px;
    box-shadow: 1px 2px 6px rgb(0 0 0 / 10%);
}

    ul.nav.info-tabs .nav-link.active, ul.nav.info-tabs .nav-link:hover {
        background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
        color: #fff;
    }

.info-content-innner {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 400px;
    background: #fff;
    background-image: url(../images/info-bg_01.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top right;
    border-radius: 10px;
    border: 1px solid #ffcc7c;
    box-shadow: 2px 4px 5px rgb(0 0 0 / 20%);
    padding: 30px;
    color: #686767;
}

.info-title-1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}

ol.terms, ul.terms {
    padding-left: 17px;
}

table.banking-table tr td, table.banking-table tr th {
    background: #fff;
    border: 1px solid #ffcc7c;
    padding: 6px 2px;
    text-align: center;
}

ol.faq {
    padding-left: 17px;
}

    ol.faq li {
        padding-bottom: 10px;
    }

button.btn-tnc {
    position: relative;
    background: #ffcc7c;
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 8px 15px;
    color: #000;
    border: 1px solid #ffcc7c;
    border-radius: 5px;
}

    button.btn-tnc.collapsed {
        background: #fff;
        color: #686767;
    }

    button.btn-tnc::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 700;
        font-size: 12px;
        position: absolute;
        right: 14px;
        top: 11px;
        transform-origin: center;
        transform: rotate(180deg);
        transition: 0.3s;
    }

    button.btn-tnc.collapsed::after {
        content: '\f078';
        transform: rotate(0);
        transition: 0.3s;
    }

    button.btn-tnc:focus {
        outline: none;
    }

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: #fff;
    border: 1px solid #ffcc7c;
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}

    .tnc-body ol {
        padding-left: 15px;
    }

        .tnc-body ol li {
            padding-bottom: 8px;
        }

/** Promo **/
.promo-sec {
    background: url(../images/bg_home.jpg)no-repeat top center;
    background-size: cover;
    padding: 15px 0 45px;
    background-attachment: fixed;
}

.promo-top-title {
    background: url(../images/promo/promo-top.png)no-repeat;
    background-size: 100%;
    max-width: 1240px;
    height: 226px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-style: italic;
    font-size: 120px;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 5px 2px rgb(0 0 0 / 30%);
    margin-bottom: 15px;
}

.mix {
    display: none;
}

.filter-menu {
    background: #fff;
    border-radius: 40px;
    display: flex;
}

.pmbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17%;
    text-align: center;
    height: 50px;
    padding: 8px 5px;
    border-radius: 40px;
    color: #484848;
    cursor: pointer;
}

.pminner {
    display: flex;
    align-items: center;
    justify-content: center;
}

span.pmicon {
    margin-right: 12px;
}

    span.pmicon img {
        max-height: 30px;
        filter: contrast(0);
    }

.pmbox.active {
    background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    color: #ffcc7c;
    box-shadow: 0 0 4px rgb(0,0,0,0.25);
}

    .pmbox.active span.pmicon img {
        filter: none;
    }

.promo-content-area {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px 10px;
    margin-top: 25px;
}

.promo-bx {
    position: relative;
    max-width: 400px;
    margin: auto;
}

.promo-inner {
    border: 1px solid #bcc1c1;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.label-list {
    background: url(../images/promo/label-promo.png)no-repeat;
    background-size: 100%;
    width: 119px;
    height: 43px;
    padding: 0px 3px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -8px;
    top: 22%;
}

.promo-title {
    background: #fff;
    height: 43px;
    padding: 5px;
    max-width: 400px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pm-title-wrap {
    background: #fff;
    max-width: 400px;
    height: 43px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.pm-title-inner {
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #484848;
    font-weight: 500;
}

/** VIP Page **/
.vip-sec {
    background: url(../images/bg_home.jpg)no-repeat top center;
    background-size: cover;
    padding: 35px 0 45px;
}

.desktop-vip-wrapper {
    background: url("../images/vip/vip-bg.jpg")no-repeat top center;
    background-size: cover;
    overflow: hidden;
    border: 1px solid #b0b0b0;
    border-radius: 10px;
    padding: 20px 20px;
    margin-bottom: 20px;
}

.vip-title {
    margin-bottom: 30px;
}

.vptitle {
    font-size: 27px;
    color: #ff9c00;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.vp-subtitle {
    color: #ff9c00;
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 0 0 15px;
}

.table-responsive.vip {
    border: 1px solid #bdbdbd;
    background: #f2f0f0;
    margin-bottom: 15px;
    box-shadow: 1px 1px 3px rgb(0 0 0 / 20%)
}

table.vclub-table {
    color: #686767;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

    table.vclub-table a {
        color: #686767;
    }

        table.vclub-table a:hover {
            color: #ff9c00;
        }

    table.vclub-table tr td {
        padding: 10px 1px;
        border-bottom: 1px solid #fff;
    }

        table.vclub-table tr td:first-child {
            text-align: left;
            padding: 10px 10px;
            border-right: 1px solid #fff;
        }

    table.vclub-table tr:last-child td {
        border-bottom: none;
    }

    table.vclub-table tr.access-tb td {
        border-right: 1px solid #fff;
    }

        table.vclub-table tr.access-tb td:last-child {
            border-right: none;
        }

    table.vclub-table tr.access-tr td:nth-child(5), table.vclub-table tr.access-tr td:nth-child(7), table.vclub-table tr.access-tr td:nth-child(9) {
        border-right: 1px solid #fff;
    }

.terms-wrapper {
    background: rgb(154,245,254,0.5);
    font-size: 13px;
    padding: 20px 30px;
    border-radius: 10px;
    color: #686767;
}

.vpterm-title {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}

ul.terms-vip {
    padding-left: 17px;
}

    ul.terms-vip li {
        padding-bottom: 5px;
    }

a.join_btn_big {
    background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    height: 50px;
    margin: auto;
    font-size: 22px;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 40%);
}

    a.join_btn_big:hover {
        transform: scale(0.98);
        box-shadow: none;
    }

/** VIP Mobile **/
.slidermain_vip {
    overflow: hidden;
    margin-top: -20px;
    display: none;
}

.slick-current .vip-card {
    filter: drop-shadow(0 0 4px #faab29) drop-shadow(0 0 8px #faab29);
    max-width: 90%;
    bottom: 23%;
}

.slick-prev, .slick-next {
    display: none;
}

.slick-slide.slick-current.slick-active.slick-center > div {
    width: 120% !important;
    margin-left: -10% !important;
}

.vip-card-wrapper {
    text-align: center;
    padding: 20px 0 10px;
    color: #686767;
    font-size: 18px;
    font-weight: 500;
}

.vip-base-mobile {
    position: relative;
    transform: scale(0.8);
}

.vip-card-name {
    display: none;
}

.slick-current .vip-base-mobile {
    transform: scale(1.1);
    z-index: 9;
    transition: 0.3s;
}

.slick-current .vip-card-name {
    display: block;
}

.vpclub-table-wrapper {
    border: 1px solid #bdbdbd;
    background: #f2f0f0;
    margin-bottom: 15px;
    overflow: auto;
}

    .vpclub-table-wrapper table {
        color: #686767;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: -0.5px;
    }

        .vpclub-table-wrapper table tr td {
            padding: 10px 1px;
            border-bottom: 1px solid #fff;
        }

            .vpclub-table-wrapper table tr td:first-child {
                text-align: left;
                padding: 10px 10px;
                border-right: 1px solid #fff;
            }

        .vpclub-table-wrapper table a {
            color: #686767;
        }

/** VIP Rewards **/
.rewards-sec {
    background: url(../images/bg_home.jpg)no-repeat top center;
    background-size: cover;
    padding: 15px 0 45px;
    background-attachment: fixed;
}

.f-dropdown {
    position: relative;
    z-index: 10;
}

    .f-dropdown select {
        display: none;
    }

    .f-dropdown > span {
        cursor: pointer;
        padding: 8px 12px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        position: relative;
        width: 200px;
        height: 50px;
        font-size: 16px;
        font-weight: 500;
        color: #bbb;
        background: #fff;
        transition: color 0.2s ease, border-color 0.2s ease;
        box-shadow: 0 0 4px rgb(0 0 0 / 25%);
    }

        .f-dropdown > span > span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 12px;
        }

        .f-dropdown > span img {
            width: 30px;
            margin-right: 10px;
        }

        .f-dropdown > span:before, .f-dropdown > span:after {
            content: "";
            display: block;
            position: absolute;
            width: 8px;
            height: 2px;
            border-radius: 1px;
            top: 50%;
            right: 12px;
            background: #ffcc7c;
            transition: all 0.3s ease;
        }

        .f-dropdown > span:before {
            margin-right: 4px;
            transform: scale(0.96, 0.8) rotate(50deg);
        }

        .f-dropdown > span:after {
            transform: scale(0.96, 0.8) rotate(-50deg);
        }

    .f-dropdown ul {
        margin: 0;
        padding: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        max-height: calc(var(--max-scroll) * 46px);
        top: 40px;
        left: 0;
        z-index: 1;
        right: 0;
        overflow-x: hidden;
        overflow-y: auto;
        transform-origin: 0 0;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
        transform: translate(0, 5px);
    }

        .f-dropdown ul li {
            padding: 0;
            margin: 0;
            margin-bottom: 7px;
        }

            .f-dropdown ul li a {
                cursor: pointer;
                display: block;
                padding: 8px 12px;
                color: #000;
                text-decoration: none;
                outline: none;
                position: relative;
                transition: all 0.2s ease;
                display: flex;
                align-items: center;
                border-radius: 40px;
                border: 1px solid #3faeb3;
                background: #fff;
            }

                .f-dropdown ul li a img {
                    width: 30px;
                    margin-right: 10px;
                }

                .f-dropdown ul li a:hover {
                    color: #5C6BC0;
                }

            .f-dropdown ul li.active a {
                color: #FFF;
                background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
            }

                .f-dropdown ul li.active a:before, .f-dropdown ul li.active a:after {
                    --scale: 0.6;
                    content: "";
                    display: block;
                    width: 10px;
                    height: 2px;
                    position: absolute;
                    right: 12px;
                    top: 50%;
                    opacity: 0;
                    background: #FFF;
                    transition: all 0.2s ease;
                }

                .f-dropdown ul li.active a:before {
                    transform: rotate(45deg) scale(var(--scale));
                }

                .f-dropdown ul li.active a:after {
                    transform: rotate(-45deg) scale(var(--scale));
                }

                .f-dropdown ul li.active a:hover:before, .f-dropdown ul li.active a:hover:after {
                    --scale: 0.9;
                    opacity: 1;
                }

    .f-dropdown.disabled {
        opacity: 0.7;
    }

        .f-dropdown.disabled > span {
            cursor: not-allowed;
        }

    .f-dropdown.filled > span {
        color: #ffcc7c;
        background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    }

    .f-dropdown.open {
        z-index: 15;
    }

        .f-dropdown.open > span {
            border-color: #AAA;
        }

            .f-dropdown.open > span:before, .f-dropdown.open > span:after {
                background: #ffcc7c;
            }

            .f-dropdown.open > span:before {
                transform: scale(0.96, 0.8) rotate(-50deg);
            }

            .f-dropdown.open > span:after {
                transform: scale(0.96, 0.8) rotate(50deg);
            }

        .f-dropdown.open ul {
            opacity: 1;
            visibility: visible;
            transform: translate(0, 12px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
        }

/* --------------------------- */
.f-group {
    max-width: 200px;
    margin: 0 auto;
    text-align: left;
}

    .f-group select {
        width: 100%;
    }

.f-control {
    font-size: 14px;
    line-height: normal;
    color: #000;
    display: inline-block;
    background-color: #ffffff;
    border: #ccc 1px solid;
    border-radius: 6px;
    padding: 8px 12px;
    outline: none;
    max-width: 250px;
}

.f-dropdown ul li a img {
    filter: contrast(0) brightness(0);
}

.f-dropdown ul li.active a img {
    filter: none;
}

.f-dropdown ul li.active a {
    color: #ffcc7c;
}

.reward-title-wrap {
    background: url("../images/rewards/rewards-title.png")no-repeat;
    background-size: 100%;
    max-width: 1240px;
    height: 293px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-style: italic;
    font-size: 140px;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 5px 2px rgb(0 0 0 / 30%);
    margin-bottom: 15px;
    padding-top: 20px;
}

.reward-tab-wrapper {
    background: #fff;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 40px;
}

ul.reward-nav {
    align-items: center;
    justify-content: center;
}

    ul.reward-nav li.nav-item {
        margin: 0 25px;
    }

        ul.reward-nav li.nav-item a.nav-link {
            color: #484848;
            font-weight: 500;
            font-size: 16px;
            border-radius: 40px;
            width: 200px;
            height: 50px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            ul.reward-nav li.nav-item a.nav-link img {
                filter: contrast(0) brightness(0.4);
                margin-right: 10px;
            }

            ul.reward-nav li.nav-item a.nav-link.active {
                color: #ffcc7c;
                box-shadow: 0 0 4px rgb(0 0 0 / 25%);
                background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
            }

                ul.reward-nav li.nav-item a.nav-link.active img {
                    filter: none;
                }

.reward-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
}

.reward-box {
    position: relative;
    max-width: 404px;
    width: 100%;
    margin: auto;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #b0b0b0;
    cursor: pointer;
}

.rewards-item-img {
    background: #fff;
    overflow: hidden;
}

    .rewards-item-img img {
        transition: 0.3s;
    }

.reward-subtitle {
    background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    padding: 5px 10px;
}

.item-name {
    font-size: 14px;
    height: 43px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.rdpoint {
    font-size: 13px;
}

.reward-box:hover .rewards-item-img img {
    transform: scale(1.05);
    transition: 0.3s;
}

.label-reward {
    background: url(../images/rewards/yellow-tag.png)no-repeat;
    background-size: 100%;
    position: absolute;
    z-index: 3;
    width: 35px;
    height: 85px;
    left: 25px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0px 6px 3px rgb(0,0,0,0.7));
}

span.label-rwname {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    transform: rotate(90deg);
    transform-origin: center;
    display: block;
    padding-right: 18px;
}

.redeem-reward-content {
    background: #bcf8fe;
    border: 1px solid #484848;
    border-radius: 8px;
    box-shadow: inset 0 3px 7px rgb(0,0,0,0.3);
    max-width: 1100px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
    color: #484848;
}

.rd-title {
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.rd-text {
    font-size: 17px;
    max-width: 850px;
    margin: 0 auto;
    padding: 5px 0;
}

.step-redeem-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 5px;
    background: linear-gradient(to bottom, rgba(188,249,254,1) 0%, rgba(188,249,254,1) 26%, rgba(56,153,172,1) 100%);
    overflow: hidden;
    border-radius: 10px;
    padding-bottom: 10px;
    max-width: 1030px;
    margin: 0 auto;
}

.redeem-box {
    padding: 10px 0;
}

.rd-step-caption {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    max-width: 200px;
    margin: auto;
}

.redeem-reward-content ul.terms li {
    padding-bottom: 6px;
}

/** 4D **/
.lotto-sec {
    background: url(../images/bg_home.jpg)no-repeat top center;
    background-size: cover;
    padding: 35px 0 45px;
}

.lottery-mobile {
    display: none;
}

.lotto-btn-wrap {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 15px 0 30px;
}

button.payout-btn {
    background: url(../images/4d/btn-1.png)no-repeat;
    background-size: 100% 100%;
    border: none;
    width: 280px;
    height: 50px;
    color: #4e4e4e;
    font-weight: 900;
    font-style: italic;
    filter: drop-shadow(0 3px 4px rgb(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

    button.payout-btn.play {
        background: url(../images/4d/btn-2.png)no-repeat;
        background-size: 100% 100%;
    }

    button.payout-btn:hover {
        transform: scale(1.03);
    }

.spin-luck-wrapper {
    background: url("../images/4d/white-base-4d.png")no-repeat;
    background-size: cover;
    max-width: 630px;
    height: 219px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgb(0,0,0,0.35);
    padding: 15px;
    text-align: center;
    position: relative;
}

.lucky-text {
    font-size: 26px;
    font-weight: 700;
    color: #ff9c00;
    text-transform: uppercase;
    padding: 5px 0;
}

.number-box {
    background: #fff;
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 25px;
    line-height: 1;
    max-width: 500px;
    margin: 15px auto;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: inset 0 3px 8px rgb(0 0 0 / 25%);
}

button.spin-btn {
    background: url(../images/4d/spin-btn.png)no-repeat;
    background-size: 100%;
    width: 404px;
    height: 51px;
    margin: 0 auto;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
}

    button.spin-btn span.play-round {
        border: 2px solid #fff;
    }

    button.spin-btn:hover {
        transform: scale(1.02);
    }

.draw-result-wrapper {
    background: url("../images/4d/bg-4d.jpg")no-repeat;
    background-size: cover;
    text-align: center;
    max-width: 1000px;
    margin: 45px auto 0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgb(0,0,0,0.3);
}

.lottery-content {
    text-align: center;
    margin: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.search-draw {
    max-width: 350px;
    height: 40px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    border: 1px solid #cecece;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}

.date-draw {
    background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    width: 60px;
    height: 40px;
    font-size: 17px;
    vertical-align: middle;
    padding: 7px;
}

    .date-draw img {
        max-height: 20px;
    }

input.date-search {
    font-size: 16px;
    width: 100%;
    display: inline-block;
    padding: 5px 10px;
    height: 40px;
    border: none;
    color: #000;
    text-align: center;
    background: #fff;
}

.date-search:focus {
    outline: none;
}

.search-btn {
    background: linear-gradient(to bottom, rgba(253,208,71,1) 0%, rgba(254,178,1,1) 100%);
    border: none;
    font-size: 18px;
    width: 110px;
    margin-left: -5px;
    height: 40px;
    border-radius: 0 30px 30px 0;
}

    .search-btn:hover {
        background: linear-gradient(to top, rgba(253,208,71,1) 0%, rgba(254,178,1,1) 100%);
    }

    .search-btn:focus {
        outline: none;
        border: none;
    }

.lotto-box {
    background: #4A4A4A;
    padding: 3px;
    border-radius: 3px;
    font-size: 15px;
    display: inline-block;
    margin: 10px 8px;
}

.lott-title-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 3px 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.lott-title-box {
    text-align: right;
    color: #fff;
}

.lotto-box.magnum .lott-title-box {
    color: #000;
}

.lott-type {
    font-size: 17px;
    display: block;
}

.cal-date {
    font-size: 14px;
    font-style: italic;
}

.result-table {
    background: #fff;
    padding: 5px;
    color: #000;
    font-weight: 700;
}

table.top-winner {
    font-size: 20px;
}

.result-table table tr th {
    background: #3f3f3f;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 2px;
    font-size: 13px;
}

.result-table table tr td {
    padding: 2px 1px;
}

.result-table table.top-winner tr th {
    background: #3f3f3f;
    text-transform: none;
    padding: 7px 2px;
    border: 3px solid #fff;
    color: #fff;
}

.result-table table.top-winner tr td {
    padding: 2px 2px;
}

.result-table table.top-winner tr th:first-child {
    border-left: none;
}

.result-table table.top-winner tr th:last-child {
    border-right: none;
}

.lotto-box.magnum {
    background: #F2BC00;
}

    .lotto-box.magnum .lott-title-box, .lotto-box.stc .lott-title-box {
        color: #000;
    }

.lotto-box.damacai {
    background: #1A1A84;
}

.lotto-box.toto {
    background: #FF2C50;
}

.lotto-box.sg {
    background: #398AEA;
}

.lotto-box.sabah {
    background: #FF0000;
}

.lotto-box.stc {
    background: #F6D55C;
}

.lotto-box.cash {
    background: #003C10;
}

/** Mobile Lotto **/
ul.lt-wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 2px;
    border-bottom: 2px solid #2d71a0;
    padding: 0 2px;
    text-align: center;
}

.nav-tabs.lt-wrap .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
}

    .nav-tabs.lt-wrap .nav-item.show .nav-link, .nav-tabs.lt-wrap .nav-link.active {
        color: #495057;
        background-color: transparent;
    }

li.lt-item {
    position: relative;
    padding-bottom: 22px;
}

ul.lt-wrap li a.active:after {
    content: "";
    color: #2d71a0;
    position: absolute;
    border-top: 0;
    border-right: 0.7em solid transparent;
    border-bottom: 0.7em solid;
    border-left: 0.7em solid transparent;
    width: 8px;
    margin: auto;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
}

.result-boxes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.prize {
    background: #3f3f3f;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 3px 2px;
}

.result-tt {
    padding: 7px 2px;
    font-weight: 500;
    font-size: 16px;
    background: #fff;
}

.result-boxes-1 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-ttt {
    padding: 3px 2px;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
}

.table-in div {
    padding: 5px 0;
}

.table-in {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.result-box {
    border: 1px solid #d4d4d4;
}

.date-box {
    padding: 10px 0px;
    font-size: 15px;
    background: linear-gradient(to bottom, rgba(242,245,252,1) 0%, rgba(242,245,252,1) 70%, rgba(231,236,251,1) 100%);
    text-align: center;
}

span#resultDate {
    vertical-align: middle;
}

/** Blog Page **/
.blog-title-wrap {
    background: url(../images/blog/blog-title-base.png)no-repeat;
    background-size: 100%;
    max-width: 1200px;
    height: 340px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-style: italic;
    font-size: 200px;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 5px 2px rgb(0 0 0 / 30%);
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    padding-bottom: 15px;
}

a.blog-box {
    display: block;
    color: #797878;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #b0b0b0;
    max-width: 405px;
    margin: auto;
}

.blog-img {
    overflow: hidden;
}

    .blog-img img {
        transition: 0.3s;
        object-fit: cover;
        width: 100%;
    }

.blog-detail-wrap {
    background: #fff;
    padding: 10px;
}

.blog-title {
    font-size: 16px;
    color: #40b3b4;
    font-weight: 700;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.date-blog {
    color: #484848;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 10px;
}

.blog-subtitle {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 30px;
}

button.blog-more-btn {
    border: none;
    background: #757575;
    color: #fff;
    font-weight: 500;
    width: 100%;
    height: 38px;
    font-size: 20px;
    text-transform: uppercase;
}

    button.blog-more-btn:hover {
        background: #ff9c00;
    }

a.blog-box:hover .blog-img img {
    transform: scale(1.05);
    transition: 0.3s;
}

.pagination-blog {
    text-align: center;
    padding: 15px 0 0;
    color: #797878;
    font-size: 18px;
}

    .pagination-blog a {
        color: #797878;
        display: inline-block;
        padding: 0 2px;
        margin: 0 5px;
        font-weight: 500;
    }

        .pagination-blog a.active, .pagination-blog a:hover {
            color: #ff9c00;
        }

.blog-content {
    background: #9af5fe;
    border-radius: 18px;
    padding: 15px 20px;
    color: #363636;
}

.back-btn {
    text-align: right;
}

a.close-back {
    color: #363636;
    font-weight: 900;
    font-size: 19px;
    text-transform: uppercase;
}

.blog-content-inner {
    background: linear-gradient(to bottom, rgba(154,246,254,1) 0%, rgba(154,246,254,1) 65%, rgba(56,153,172,1) 100%);
    border-radius: 18px;
    padding: 5px 20px 25px;
}

.post-blog-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.post-date-blog {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}

.pop-blog-content {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(89,192,201,1) 0%, rgba(79,158,190,1) 100%);
    border-radius: 18px;
    color: #fff;
}

.post-blog-img {
    margin-bottom: 15px;
}

.line-divide-blog {
    background: #197578;
    height: 3px;
    border-radius: 15px;
    max-width: 50%;
    margin: 30px auto;
}

.rt-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-bottom: 15px;
    font-size: 22px;
}

.back-post {
    text-align: right;
    align-self: center;
}

    .back-post a {
        color: #363636;
    }

.post-wrappper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
}

.postbox {
    background: #2a7b97;
    overflow: hidden;
    border-radius: 15px;
}

    .postbox a {
        color: #fff;
    }

.pbimg {
    overflow: hidden;
}

    .pbimg img {
        transition: 0.3s;
        object-fit: cover;
        width: 100%;
    }

.postitle {
    padding: 7px 15px;
}

.postitle-inner {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 33px;
}

.postbox:hover .pbimg img {
    transform: scale(1.05);
    transition: 0.3s;
}

/** Footer Menu Navigayion**/
.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: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    height: 65px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
}

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: 13px;
    height: 100%;
}

.mntext {
    margin-top: 3px;
}

img.ftmn-icon {
    max-height: 33px;
    filter: drop-shadow(0 2px 1px rgb(0,0,0,0.75));
}

.ftmenu-dropdown {
    background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
    position: absolute;
    width: 100%;
    padding: 0;
    z-index: 99;
    border-radius: 0;
    margin: 0;
    border: none;
    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;
}


/** After Login Pages **/
.deposit-sec {
    background: url(../images/bg_home.jpg)no-repeat top center;
    background-size: cover;
    padding: 45px 0;
}

.mailbox-wrap {
    display: grid;
    grid-template-columns: 10% auto 80px;
    background: #fff;
    height: 80px;
    align-items: center;
    border: 1px solid #ffcc7c;
    border-radius: 15px;
    box-shadow: inset 0 2px 4px rgb(0 0 0 / 20%);
    margin: 10px 0;
    color: #686767;
    cursor: pointer;
}

    .mailbox-wrap.unread {
        background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
        color: #fff;
    }

        .mailbox-wrap.unread button.remove-mail {
            color: #fff;
        }

        .mailbox-wrap.unread .mail-status img {
            filter: brightness(5) contrast(1);
        }

.mail-status {
    text-align: center;
}

    .mail-status img {
        max-width: 37px;
    }

.mailtitle-box {
    display: grid;
    grid-template-columns: 70% auto;
    align-items: center;
}

.mtext-title {
    overflow: hidden;
    max-width: 620px;
}

.mtitle {
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.msubtitle {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.mail-date {
    text-align: center;
    font-size: 17px;
}

.remove-box {
    text-align: center;
}

button.remove-mail {
    border: none;
    background: none;
    color: #686767;
    font-size: 24px;
}

.loadmore-wrap {
    text-align: center;
}

button.reg-submit-btn.loadmail {
    font-size: 17px;
}

.aflogin-content {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 400px;
    background: #fff;
    background-image: url(../images/depo-bg-top.jpg), url("../images/depo-bg-btm.jpg");
    background-repeat: no-repeat, no-repeat;
    background-size: 100%, 100%;
    background-position: top right, bottom center;
    border-radius: 10px;
    border: 1px solid #ffcc7c;
    box-shadow: 2px 4px 5px rgb(0 0 0 / 20%);
    padding: 30px;
    color: #686767;
}

.top-user-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.userbox {
    display: flex;
    align-items: center;
}

.player-vip-box {
    border: 1px solid transparent;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    height: 48px;
    min-width: 210px;
    padding: 3px 10px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 30%);
}

.vip-icon {
    margin-right: 10px;
}

    .vip-icon img {
        max-height: 50px;
    }

.viptext {
    color: #ff9c00;
    font-weight: 500;
}

button.videotips-btn {
    background: linear-gradient(to bottom, rgba(64,178,180,1) 0%, rgba(45,113,160,1) 100%);
    margin-left: 10px;
    color: #fff;
    border: none;
    border-radius: 8px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 20px;
    padding: 0 10px;
}

    button.videotips-btn span.play-round {
        border-color: #fff;
    }

.mwbox {
    background: #f6f6f6;
    border: 1px solid #ff9c00;
    border-radius: 8px;
    text-align: center;
    padding: 0px 5px;
    color: #ff9c00;
    font-size: 18px;
    height: 48px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

span.mwtext {
    color: #000;
    font-size: 11px;
    font-weight: 500;
}

.mwbtn-wrap {
    display: grid;
    grid-gap: 3px;
    height: 48px;
}

button.mw-btn {
    padding: 0;
    background: #022840;
    color: #ffcd7d;
    border-radius: 5px;
    width: 88px;
    font-size: 14px;
    border: 1px solid #022840;
}

    button.mw-btn.orange {
        background: #ff9c00;
        color: #fff;
        border: 1px solid #ff9c00;
    }

    button.mw-btn:hover {
        background: #fff;
        color: #022840;
    }

.afmenu-wrap {
    text-align: center;
    padding: 10px 0;
}

.afmenu-wrap-mobile {
    display: none;
}

ul.nav.afmenu-nav {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap: 8px;
}

    ul.nav.afmenu-nav li.nav-item {
    }

        ul.nav.afmenu-nav li.nav-item a.item-link {
            background: #fff;
            color: #ff9c00;
            border: 1px solid #ff9c00;
            border-radius: 8px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 17px;
            text-transform: uppercase;
            font-weight: 500;
        }

            ul.nav.afmenu-nav li.nav-item a.item-link.active, ul.nav.afmenu-nav li.nav-item a.item-link:hover {
                background: #ff9c00;
                color: #fff;
                box-shadow: 0px 2px 5px rgb(0 0 0 / 30%);
            }

.bank-depo-wrap {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

a.bank-depo-btn {
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 43%, rgba(227,227,227,1) 100%);
    border: 1px solid #acacac;
    color: #ff9c00;
    border-radius: 40px;
    min-width: 120px;
    text-transform: uppercase;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

    a.bank-depo-btn.active {
        background: #022840;
        color: #fff;
        border-color: #ff9c00;
        box-shadow: 0px 2px 5px rgb(0 0 0 / 30%);
    }

.label-form {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #686767;
    padding-bottom: 3px;
}

.bank-account-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bank-pay {
    position: relative;
}

.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: 7px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 43%, rgba(227,227,227,1) 100%);
    border: 1px solid #ffcf85;
    margin: 0 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    height: 45px;
    padding: 4px 10px;
    color: #000;
}

    .bank-acct-btn img {
        max-height: 35px;
    }

.input-hide[type="radio"], .input-hide input[type="checkbox"] {
    appearance: none;
    display: none;
}

.input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn {
    background: #022840;
    color: #fff;
}

    .input-hide input:active + .bank-acct-btn, .input-hide input:checked + .bank-acct-btn.white img {
        filter: contrast(0) brightness(5);
    }

.provider-depo .bank-acct-btn {
    height: 38px;
    min-width: -webkit-fill-available;
}

.depo-table-wrap {
    border: 1px solid #ffcf85;
    padding: 5px 10px;
    margin: 0 0 15px;
    max-width: 500px;
    border-radius: 5px;
}

table.depo-bank-table tr td {
    padding: 5px 2px;
}

    table.depo-bank-table tr td:last-child {
        color: #000;
    }

a.copy-icon {
    color: #022840;
    font-size: 16px;
    margin-left: 5px;
}

.bank-account-option.provider-depo {
    border: 1px solid transparent;
    background: #f5f5f5;
    padding: 10px;
    max-width: 890px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 6px 0;
}

.bank-account-option.depo-amount {
    border: 1px solid transparent;
    background: #f5f5f5;
    padding: 10px;
    max-width: 500px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 6px 0;
}

.depo-amount .bank-acct-btn {
    height: 38px;
    min-width: auto;
    color: #686767;
}

.af-field-wrap {
    max-width: 650px;
    margin-bottom: 15px;
}

.form-submit-wrap {
    margin-top: 15px;
}

.aftitle-mobile {
    display: none;
    font-size: 30px;
    font-weight: 900;
    color: #ff9c00;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.check-group.depo label:before {
    width: 19px;
    border-radius: 50px;
    border: 2px solid #ff9c00;
    background: transparent;
}

.rf-split-wrap {
    display: grid;
    grid-template-columns: auto 150px;
    grid-gap: 10px;
}

.upload-input {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

button.afbase-btn {
    background: linear-gradient(to bottom, rgba(64,178,180,1) 0%, rgba(64,178,180,1) 62%, rgba(45,112,160,1) 100%);
    color: #fff;
    border: none;
    border-radius: 35px;
    text-transform: uppercase;
    min-width: 140px;
    height: 42px;
    font-size: 17px;
    font-weight: 500;
}

.provider-balance-wrapper {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-gap: 15px;
    margin: 15px 0;
    border: 1px solid transparent;
}

.provider-box {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 10px;
    text-align: center;
    max-width: 130px;
    width: 100%;
    margin: auto;
    padding: 8px 5px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    cursor: pointer;
}

.prov-img {
    margin-bottom: 5px;
    filter: drop-shadow(0px 1px 0px rgb(0,0,0,0.7));
    object-fit: cover;
    width: 100%;
}

.prov-amt {
    border: 1px solid #ffcc7c;
    border-radius: 40px;
    max-width: 110px;
    height: 34px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
}

.bank-user-wrapper {
    margin: 15px 0;
}

.label-org {
    color: #ff9c00;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.bank-detail-wrap {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 5px 15px;
    border: 1px solid transparent;
}

.bank-dwrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(227,227,227,1) 100%);
    padding: 5px;
    margin: 7px 0;
    border-radius: 6px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    height: 38px;
    line-height: 1;
}

    .bank-dwrap.top {
        background: linear-gradient(to right, rgba(64,179,180,1) 0%, rgba(45,112,160,1) 100%);
        color: #fff;
    }

.af-form-wrapper.twocol {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 0 30px;
}

.full-col {
    grid-column: 1/3;
    max-width: none;
}

.form-submit-wrap.full-col {
    margin-top: 0;
}

.af-subtitle {
    color: #ff9c00;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.date-btw-wrap {
    display: grid;
    grid-template-columns: 47% 50px 47%;
    align-items: center;
}

    .date-btw-wrap .label-form {
        text-align: center;
    }

.note-history {
    padding: 5px 0;
    font-size: 13px;
}

span.ylw-star {
    color: #ffc107;
    margin-right: 5px;
}

.history-result {
    margin-top: 30px;
}

table.history-table tr th {
    background: #f2f2f2;
    border: 1px solid #ffcc7c;
    padding: 7px 2px;
    text-align: center;
}

table.history-table tr td {
    background: #fff;
    border: 1px solid #ffcc7c;
    padding: 7px 2px;
    text-align: center;
}

.green-text {
    color: #35c743;
}

.red-text {
    color: #c73535;
}

/** Video Tips **/
.tips-title-wrap {
    background: url(../images/tips/video-tips-title.png)no-repeat;
    background-size: 100%;
    max-width: 1200px;
    height: 250px;
    margin: 0 auto 30px;
    padding-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-style: italic;
    font-size: 134px;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 5px 2px rgb(0 0 0 / 30%);
}

.vtips-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 400px;
    background: url("../images/tips/tips-bg.jpg")no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid #ffcc7c;
    box-shadow: 2px 4px 5px rgb(0 0 0 / 20%);
    padding: 30px;
    color: #686767;
}

.tips-title {
    color: #ff9c00;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    font-style: italic;
}

.tips-video-wrap {
    max-width: 840px;
    margin: 15px auto;
    box-shadow: 6px 7px 5px rgb(0 0 0 / 20%);
}

.tutorial-tips-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px 15px;
    max-width: 840px;
    margin: 0 auto;
    padding: 15px 0;
}

.tutorial-box {
    background: #fff;
    border: 1px solid #ffcc7c;
    border-radius: 14px;
    padding: 10px 15px 15px;
    color: #ff9c00;
    max-width: 410px;
    margin: auto;
    box-shadow: 0 3px 5px rgb(0 0 0 / 25%);
}

.guide-text {
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
}

.tutorial-title {
    font-size: 19px;
    font-weight: 700;
    font-style: italic;
    height: 48px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.tutorial-img {
    position: relative;
}

.lock-wrap {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

button.unlock-btn {
    background: #ff9c00;
    border: 1px solid #ff9c00;
    color: #fff;
    border-radius: 40px;
    padding: 4px 10px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 10px 0;
}

    button.unlock-btn:hover {
        background: #fff;
        color: #ff9c00;
    }




/** Responsive **/
@media(max-width: 1280px) {
    .logo img {
        max-height: 60px;
    }

    .ply-vip, .ply-username {
        font-size: 15px;
    }

    ul.main-nav li.nav-item a.link-nav {
        font-size: 15px;
    }

    .promo-top-title {
        max-width: none;
        height: 19vw;
        color: #fff;
        font-size: 12vw;
    }

    .blog-title-wrap {
        height: 28vw;
        font-size: 15vw;
    }

    .tips-title-wrap {
        height: 20vw;
        font-size: 12vw;
        padding-bottom: 2%;
    }

    .reward-title-wrap {
        height: 24vw;
        font-size: 11vw;
        padding-top: 0;
    }
}

@media(max-width: 1080px) {
    .t-body {
        padding-top: 68px;
        padding-bottom: 65px;
    }

    .mobile-footer-menu {
        display: block;
    }

    .header-container {
        height: 68px;
    }

    .floating-right-wrapper {
        display: none;
    }

    .float-container {
        display: initial;
    }

    .login-top-wrap {
        display: none;
    }

    .login-top-mobile {
        display: flex;
        align-items: center;
    }

    .header-menu {
        display: none;
    }

    .header-top {
        display: none;
    }

    .user-top-wrap {
        display: none;
    }

    .bestgame-wrapper {
        display: none;
    }

    .benefits-wrapper {
        grid-template-columns: repeat(2,1fr);
        margin: 30px auto 25px;
        max-width: 600px;
    }

    .best-online-wrapper {
        grid-template-columns: repeat(2,1fr);
        margin: 30px auto 15px;
        max-width: 600px;
    }

    .arrow-top {
        height: 35px;
        width: 35px;
        padding: 10px;
    }

    .bestgame-mobile {
        display: block;
        margin-top: 25px;
    }

    .footer-provider img {
        max-height: 45px;
    }

    .logo-cert img {
        margin: 5px 10px;
        max-height: 35px;
    }

    .game-container-wrap {
        min-height: auto;
        margin-bottom: 10px;
    }

        .game-container-wrap.sports {
            min-height: auto;
        }

    .pvd-banner {
        border: none;
        max-width: 490px;
        margin: auto;
    }

    img.bg-game, .bg-text {
        display: none;
    }

    .pvd-character {
        position: relative;
    }

    .game-dl-wrapper {
        position: relative;
        margin-top: 5px;
    }

    .slot-deco-1 {
        top: 0;
        left: 0;
        max-width: 20%;
    }

    .slot-deco-2 {
        bottom: 5%;
        left: -1%;
        max-width: 20%;
    }

    .slot-deco-3 {
        top: 0;
        right: 0;
        max-width: 18%;
    }

    .slot-deco-4 {
        bottom: 0;
        right: -3%;
        max-width: 22%;
    }

    .casino-deco-1 {
        top: 0;
        left: 0;
        max-width: 16%;
    }

    .casino-deco-2 {
        bottom: 5%;
        left: -1%;
        max-width: 20%;
    }

    .casino-deco-3 {
        top: 0;
        right: 0;
        max-width: 13%;
    }

    .casino-deco-4 {
        bottom: 10%;
        right: 0%;
        max-width: 14%;
    }

    .sports-deco-1 {
        top: 0;
        left: 0;
        max-width: 14%;
    }

    .sports-deco-2 {
        bottom: 5%;
        left: -1%;
        max-width: 20%;
    }

    .sports-deco-3 {
        top: 0;
        right: 0;
        max-width: 13%;
    }

    .sports-deco-4 {
        bottom: 10%;
        right: 0%;
        max-width: 18%;
    }

    .provider-nav.fish {
        position: initial;
        display: block;
    }

    a.fh-item {
        width: 48%;
        display: inline-block;
        vertical-align: top;
    }

    .info-container {
        display: block;
    }

    .info-menu-wrapper {
        display: none;
    }

    .desktop-vip-wrapper {
        display: none;
    }

    .vptitle {
        font-size: 20px;
    }

    .promo-content-area {
        grid-template-columns: repeat(2,1fr);
    }

    .reward-content {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }

    .lottery-mobile {
        display: block;
        margin-top: 30px;
    }

    .lottery-content {
        display: none;
    }

    .blog-post-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .slidermain_vip {
        display: block;
    }

    .mailtitle-box {
        grid-template-columns: auto;
    }

    .mail-date {
        text-align: left;
        font-size: 13px;
        padding-top: 3px;
    }

    .deposit-sec {
        padding: 15px 0 45px;
    }

    .aflogin-content {
        padding: 15px 30px;
    }

    .aftitle-mobile {
        display: initial;
    }

    .top-user-wrap, .afmenu-wrap {
        display: none;
    }

    .afmenu-wrap-mobile {
        display: block;
        padding-bottom: 15px;
    }

    .provider-balance-wrapper {
        display: none;
    }

    .af-form-wrapper {
        margin-top: 15px;
    }

    .game-container-wrap.esports {
        min-height: auto;
    }

    .table-responsive.wallet {
        max-height: none;
    }

    .event-floating {
        max-width: 150px;
        bottom: 15%;
    }
}


@media(max-width: 767px) {
    .carousel-item img {
        object-fit: cover;
        object-position: center;
        height: 38vw;
    }

    .desktop-slider .carousel-indicators {
        margin-bottom: 10px;
    }

        .desktop-slider .carousel-indicators li {
            width: 12px;
            height: 12px;
        }

            .desktop-slider .carousel-indicators li::after {
                height: 6px;
                width: 6px;
            }

    .title-1 {
        font-size: 32px;
    }

    .subtitle-1 {
        font-size: 16px;
    }

    .game-title {
        font-size: 38px;
    }

        .game-title::before, .game-title::after {
            width: 13vw;
            height: 3.5vw;
            top: 28%;
        }

    .game-title {
        padding: 0px 17%;
    }

    .vptitle {
        font-size: 16px;
    }

    span.label-rwname {
        font-size: 2.3vw;
        padding-right: 46%;
    }

    .label-reward {
        width: 5vw;
        height: 12vw;
        left: 5%;
    }

    .item-name {
        font-size: 2vw;
        height: 7vw;
    }

    ul.reward-nav li.nav-item {
        width: 100%;
        margin: 3px auto;
        max-width: 200px;
    }

        ul.reward-nav li.nav-item a.nav-link {
            font-size: 15px;
            width: auto;
            background: #fff;
        }

    .blog-content {
        padding: 15px 5px;
    }

    .blog-content-inner {
        padding: 5px 10px 15px;
    }

    .mailbox-wrap {
        grid-template-columns: 50px auto 40px;
        height: 75px;
    }

    .mail-status img {
        max-width: 28px;
    }

    button.remove-mail {
        font-size: 18px;
    }

    ul.nav.afmenu-nav {
        grid-gap: 4px;
    }

        ul.nav.afmenu-nav li.nav-item a.item-link {
            height: 33px;
            font-size: 14px;
        }

            ul.nav.afmenu-nav li.nav-item a.item-link.active, ul.nav.afmenu-nav li.nav-item a.item-link:hover {
                box-shadow: 0px 1px 2px rgb(0 0 0 / 25%);
            }

    .aflogin-content {
        padding: 15px 10px 25px;
    }

    .af-field-wrap {
        max-width: none;
    }

    .bank-account-option.provider-depo {
        grid-template-columns: repeat(3,1fr);
        grid-gap: 5px 0;
    }

    .bank-acct-btn {
        font-size: 12px;
        max-width: 110px;
        height: 40px;
        padding: 4px 2px;
    }

    a.bank-depo-btn {
        padding: 8px 4px;
        width: 50%;
    }

    .bank-account-option.provider-depo, .bank-account-option.depo-amount {
        padding: 8px 4px;
    }

    input.reg-input, select.reg-input {
        height: 38px;
        font-size: 14px;
    }

    button.afbase-btn {
        height: 38px;
        font-size: 13px;
        min-width: auto;
    }

    .label-form {
        font-size: 14px;
    }

    .form-submit-wrap {
        text-align: center;
    }

    button.reg-submit-btn {
        font-size: 18px;
        border-radius: 40px;
    }

    .rf-split-wrap {
        grid-template-columns: auto 130px;
        grid-gap: 5px;
    }

    .bank-dwrap {
        font-size: 12px;
    }

    .af-form-wrapper.twocol {
        display: block;
    }

    .date-btw-wrap {
        display: block;
    }

        .date-btw-wrap .label-form {
            text-align: left;
            margin-top: 5px;
        }

    .tutorial-tips-wrapper {
        grid-template-columns: auto;
    }

    .tips-video-wrap {
        box-shadow: 3px 4px 2px rgb(0 0 0 / 20%);
    }

    .filter-menu {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-gap: 5px;
        border-radius: 20px;
        background: none;
    }

    .pmbox {
        border-radius: 12px;
        width: auto;
        background: #fff;
    }

    .reward-tab-wrapper {
        background: none;
    }

    .event-floating {
        max-width: 120px;
    }
}

@media(max-width: 600px) {
    a.download-game-btn {
        max-width: 48%;
        height: 12vw;
        font-size: 4.5vw;
    }

        a.download-game-btn img {
            margin-right: 8px;
            filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.6));
            height: 6vw;
        }

    a.playnow {
        font-size: 8vw;
    }

    .promo-content-area {
        grid-template-columns: repeat(1,1fr);
    }
}

@media(max-width: 480px) {
    .header-container {
        height: 55px;
    }

    .t-body {
        padding-top: 55px;
    }

    .logo img {
        max-height: 45px;
    }

    button.m-login-btn {
        min-width: auto;
        font-size: 3.2vw;
        width: 18vw;
        margin: 0 3px;
    }

    button.mobile-menu-btn {
        margin-left: 5px;
    }

        button.mobile-menu-btn img {
            max-width: 30px;
        }

    .annoucement-wrap {
        padding: 2px 8px;
        height: 30px;
        font-size: 13px;
        border-radius: 5px;
    }

    .speaker-icon {
        margin-right: 10px;
    }

    .title-1 {
        font-size: 28px;
    }

    .subtitle-1 {
        font-size: 14px;
        padding: 0 64px;
    }

        .subtitle-1::before, .subtitle-1::after {
            width: 60px;
            height: 15px;
            top: 2px;
        }

    .bestgame-sec {
        padding: 10px 0 30px;
    }

    .game-provider {
        padding: 15px 0 15px;
    }

    .pvd-item {
        max-width: 24%;
        margin: 1% 1%;
    }

    .pvd-box {
        width: 20vw;
        height: 20vw;
    }

    .pvd-text {
        margin-top: 10px;
        font-size: 2.5vw;
    }

    .benefits-wrapper {
        grid-gap: 15px 5px;
    }

    .greybase {
        bottom: -2%;
    }

    .bnf-img {
        padding: 0 2px;
    }

    .best-sec {
        padding: 30px 0 10px;
    }

    .bnf-text {
        font-size: 3.5vw;
    }

    .usp-text {
        font-size: 12px;
    }

    .usp-title {
        font-size: 16px;
    }

    .footer-provider, .footer-divider, .logo-cert {
        display: none;
    }

    .seo-wrapper {
        font-size: 12px;
        padding: 0 0 15px;
    }

    .footer-menu a {
        font-size: 13px;
        padding: 0 5px;
        line-height: 11px;
    }

    .games-sec {
        padding: 20px 0 45px;
    }

    .game-title {
        font-size: 30px;
    }

        .game-title::before, .game-title::after {
            top: 31%;
        }

    .access-field {
        grid-template-columns: 110px auto;
    }

    .ace-label {
        font-size: 12px;
        padding: 0 5px 0 0px;
    }

    .ace-fill {
        font-size: 12px;
    }

    button.pw-button {
        font-size: 12px;
        padding: 4px 5px;
    }

    .play-fish-btn {
        max-width: 40vw;
        height: 10vw;
        font-size: 4vw;
    }

    span.play-round {
        height: 5vw;
        width: 5vw;
        font-size: 2vw;
    }

    .info-title-1 {
        font-size: 22px;
    }

    .info-content-innner {
        font-size: 14px;
        padding: 20px 15px;
    }

    button.btn-tnc {
        font-size: 14px;
    }

    .tnc-body {
        padding: 15px 15px 10px;
        font-size: 13px;
    }

    .terms-wrapper {
        padding: 15px 15px;
    }

    .reward-content {
        grid-gap: 8px 5px;
    }

    .reward-subtitle {
        padding: 5px 0px;
    }

    .item-name {
        font-size: 11px;
        height: 33px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rdpoint {
        font-size: 12px;
        padding-top: 3px;
    }

    .redeem-reward-content {
        padding: 10px 10px;
    }

    .rd-title {
        font-size: 19px;
    }

    .rd-text {
        font-size: 14px;
    }

    .rd-step-caption {
        font-size: 11px;
    }

    button.payout-btn {
        width: 50%;
        font-size: 4vw;
        height: 10vw;
        letter-spacing: 0;
        margin: 0 5px;
    }

    .draw-result-wrapper {
        padding: 15px 15px;
    }

    .prize {
        font-size: 14px;
    }

    .spin-luck-wrapper {
        height: 46vw;
    }

    .lucky-text {
        font-size: 20px;
        padding: 0;
    }

    .number-box {
        font-size: 11vw;
        letter-spacing: 15px;
        padding: 3% 10px;
    }

    button.spin-btn {
        width: 89vw;
        height: 11vw;
        font-size: 6vw;
        bottom: -4%;
    }

    .blog-post-wrapper {
        grid-template-columns: auto;
    }

    .blog-title {
        font-size: 14px;
    }

    button.blog-more-btn {
        height: 33px;
        font-size: 17px;
    }

    .pop-blog-content {
        padding: 10px;
        border-radius: 10px;
    }

    a.close-back, .post-date-blog {
        font-size: 15px;
    }

    .post-blog-title {
        font-size: 24px;
    }

    .post-wrappper {
        grid-template-columns: repeat(2,1fr);
        grid-gap: 10px;
    }

        .post-wrappper .postbox:last-child {
            display: none;
        }

    .rt-box {
        font-size: 16px;
    }

    .postitle {
        padding: 7px 10px;
    }

    .postitle-inner {
        font-size: 12px;
        height: 27px;
    }

    .reg-wrapper {
        padding: 20px 15px;
    }

    .mailbox-wrap {
        height: 65px;
    }

    .mtitle {
        font-size: 16px;
    }

    .msubtitle {
        font-size: 13px;
    }

    ul.nav.afmenu-nav li.nav-item a.item-link {
        font-size: 10px;
        border-radius: 5px;
    }

    .aftitle-mobile {
        font-size: 24px;
    }

    .check-group.depo {
        font-size: 12px;
    }

    .bank-detail-wrap {
        padding: 1px 6px;
    }

    .bank-dwrap {
        font-size: 10px;
    }

    .history-result {
        font-size: 12px;
    }

    .vtips-wrapper {
        padding: 15px;
    }

    .tips-title {
        font-size: 22px;
    }

    .tutorial-title {
        font-size: 18px;
    }

    .pmbox {
        font-size: 13px;
    }

    span.pmicon img {
        max-height: 26px;
    }

    .pmbox {
        height: 42px;
    }

    ul.reward-nav li.nav-item a.nav-link {
        height: 45px;
    }

        ul.reward-nav li.nav-item a.nav-link img {
            max-height: 27px;
        }

    table.banking-table {
        font-size: 13px;
    }

    .pagination-blog {
        font-size: 14px;
    }

    a.ftmenu-item, a.sub-ftmenu-item {
        font-size: 11px;
    }

    .fire {
        width: 18px;
        height: 18px;
    }

        .fire p {
            font-size: 6px;
        }

    .fish-dl-wrap {
        display: block;
    }

    button.play-dl-btn {
        height: 10vw;
        max-width: 40vw;
        width: 100%;
        margin-bottom: 5px;
        font-size: 4vw;
    }

        button.play-dl-btn span.dl-round {
            margin-left: 5px;
            font-size: 4vw;
        }

    .pagination-blog a {
        padding: 0 2px;
        margin: 0 3px;
    }

    .table-responsive.depo-table-wrap {
        padding: 5px;
        font-size: 13px;
    }

    .event-floating {
        max-width: 80px;
    }
}

/** 29/5/2023 **/
.pvd-item.lionk:hover .pvd-box img, .pvd-item.lionk.active .pvd-box img {
    filter: grayscale(1) brightness(1.2);
}

/** Update - 4/9/2023 **/
button.afbase-btn {
    line-height: 1;
}

.reminder-wrapper {
    padding: 15px 10px;
    margin-top: 10px;
    font-size: 14px;
}

button.bank-acct-btn.active, button.bank-acct-btn:hover {
    background: #022840;
    color: #fff;
}

.exrate {
    display: grid;
    grid-template-columns: 80px 130px;
    align-items: center;
}

/** Update 3/4/2024 **/
.pvd-item.special:hover .pvd-box img, .pvd-item.special.active .pvd-box img {
    filter: grayscale(1) brightness(1.2);
}

/** UEFA EURO Countdown **/
.login-top-wrap {
    align-items: center;
}

.countdown-uefa {
    position: relative;
    max-width: 210px;
    margin: 0 15px 0 5px;
    text-align: center;
    color: #fff;
}

.countdown {
    position: absolute;
    left: 23%;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.cdtimer {
    padding-left: 0;
    margin: 0;
}

    ul.cdtimer li {
        display: inline-block;
        font-size: 8px;
        list-style-type: none;
        text-transform: uppercase;
    }

        ul.cdtimer li.dotline {
            font-size: 20px;
            vertical-align: super;
            font-weight: 600;
            margin: 0 2px;
        }

        ul.cdtimer li span {
            display: block;
            font-size: 26px;
            font-weight: 500;
            line-height: 1;
        }

.countdown-uefa.mobile {
    display: none;
}

@media(max-width: 1280px) {
    ul.main-nav li.nav-item {
        margin: 0 5px;
    }
}

@media(max-width: 1080px) {
    .countdown-uefa.desktop {
        display: none;
    }

    .countdown-uefa.mobile {
        display: block;
    }

    .countdown-uefa {
        max-width: 300px;
        margin: 0 auto;
    }

    ul.cdtimer li {
        font-size: 12px;
    }

        ul.cdtimer li span {
            font-size: 38px;
        }

        ul.cdtimer li.dotline {
            font-size: 30px;
        }
}

/** App Download Updated - 24/7/2024 **/
.app-download-header {
    background: linear-gradient(180deg, rgba(247, 84, 7, 1) 0%, rgba(249, 154, 24, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
    height: 55px;
    display: none;
}

.app-title-wrap {
    background: url("../images/app/promo-top.png") no-repeat;
    background-size: 100%;
    max-width: 1200px;
    height: 220px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-style: italic;
    font-size: 200px;
    font-weight: 700;
    color: #fff;
    text-shadow: 4px 5px 2px rgb(0 0 0 / 30%);
}

.mobile-app-wrapper {
    background: #fff;
    display: grid;
    grid-template-columns: 55% 45%;
    margin: 20px 0;
}

.app-mob-img {
    display: none;
}

.app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    padding: 15px 15px;
    margin-left: -2%;
}

.dptitle-1 {
    color: #ff9c00;
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    margin: 10px 0;
}

.download-app-mobile {
    display: none;
}

.download-app-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    padding: 5px 0 0;
    max-width: 400px;
}

.appbox {
    position: relative;
    max-width: 170px;
    text-align: center;
    margin: 0 auto;
}

.app-os {
    padding-bottom: 5px;
}

.app-qrcode {
    max-width: 90%;
    margin: 0 auto 10px;
}

button.app-dl-btn {
    background: #ff9c00;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    height: 40px;
    border-radius: 6px;
    width: 100%;
}

@media(max-width: 1280px) {
    .app-title-wrap {
        height: 18vw;
        font-size: 15vw;
    }
}

@media(max-width: 1080px) {
    .t-body.app {
        padding-top: 123px;
    }

    body.hdclose .t-body.app {
        padding-top: 68px;
    }

    .app-download-header {
        display: flex;
    }

        .app-download-header.active {
            display: none;
        }

    .appbox-1 {
        display: flex;
        align-items: center;
    }

    .new-app {
        margin-right: 10px;
    }

        .new-app img {
            max-height: 45px;
        }

    .apptext {
        font-size: 14px;
        color: #fff;
        text-shadow: 0 1px 3px rgb(0, 0, 0, 0.5);
    }

    .apt-1 {
        font-weight: 600;
        text-transform: uppercase;
    }

    .appbox-2 {
        display: flex;
        align-items: center;
    }

    button.app-top-btn {
        background: #fff;
        border: 2px solid #f85b0a;
        border-radius: 6px;
        height: 35px;
        color: #f85b0a;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 2px 12px;
    }

    button.close-app {
        border: 2px solid #fff;
        border-radius: 50%;
        background: none;
        height: 25px;
        width: 25px;
        color: #fff;
        line-height: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
    }

    .mobile-app-wrapper {
        margin: 20px 0;
    }

    .app-mob-img {
        display: initial;
    }

    .app-desk-img {
        display: none;
    }

    .download-app-wrap {
        display: none;
    }

    .download-app-mobile {
        display: block;
        margin: 15px 0 0;
    }

    .dlm-app-row {
        text-align: center;
        padding-bottom: 15px;
    }

    a.instruct-mb {
        color: #000;
        border-bottom: 1px solid #000;
    }
}

@media(max-width: 767px) {
    .download-app-mobile {
        margin: 1vw 0px 0;
    }

    .app-text {
        font-size: 2.2vw;
        padding: 1vw 2vw;
    }

    .dptitle-1 {
        font-size: 3.8vw;
        margin: 1vw 0;
    }

    button.app-dl-btn {
        font-size: 2.8vw;
        height: 6.5vw;
        margin-bottom: 0.5vw;
    }

    .dlm-app-row {
        padding-bottom: 2vw;
    }
}


@media(max-width: 480px) {
    .t-body.app {
        padding-top: 105px;
    }

    body.hdclose .t-body.app {
        padding-top: 55px;
    }

    .app-download-header {
        height: 50px
    }

    .new-app img {
        max-height: 40px;
    }

    .apptext {
        font-size: 13px;
    }

    button.app-top-btn {
        height: 32px;
        font-size: 12px;
        padding: 2px 8px;
    }

    button.close-app {
        height: 20px;
        width: 20px;
        font-size: 10px;
    }
}

/** Updated - 13/12/2024 **/
img.gcb-footer {
    max-height: 40px;
}

.gaming-license-text {
    max-width: 1200px;
    margin: 0 auto 10px;
    font-size: 14px;
}

@media(max-width: 480px) {
    .gaming-license-text {
        font-size: 12px;
    }
}
