@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    font-size: 12px;
    color: #000;
    background: #f0f6ff;
    max-width: 768px;
    margin: 0 auto;
    /* background: url(../images/index/background.png) no-repeat top center fixed; */
    background-size: cover;
    height: 100%;
}

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,
button:hover {
    text-decoration: none;
    outline: none;
    color: #30383f;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
    color: #000;
    width: 100%;
}

input:focus {
    outline: none !important;
    border: none;
}

@font-face {
    font-family: "archivo";
    src: url("../fonts/Archivo-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "bebas";
    src: url("../fonts/BebasNeue-Regular.otf") format("opentype");
}

@font-face {
    font-family: "gbk";
    src: url("../fonts/gbk.TTF") format("truetype");
}

::-webkit-scrollbar {
    height: 3px;
}

::-webkit-scrollbar {
    width: 3px;
}


::-webkit-scrollbar-track {
    background: #fff;
}

/* landing version 1 */
body.landing-v1 {
    background: url(../images/landing/ver1.png) no-repeat top center fixed;
    background-size: cover;
    height: 100%;
    max-width: 991px;
}

.landing-wrap {
    padding: 20px 10px;
}

.landing-logo {
    text-align: center;
    max-width: 200px;
    margin: auto;
}

.landing-btm {
    position: fixed;
    bottom: 25%;
    margin: auto;
    left: 0;
    right: 0;
}

.landing-slogan {
    text-align: center;
    max-width: 250px;
    margin: auto;
}

.landing-flag {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    padding: 20px 20px 0px;
}

.landing-flag a {
    color: #000;
}

.landing-flag a span {
    display: block;
}

/* end landing version 1 */

/* landing version 2 */
body.landing-v2 {
    background: url(../images/landing/ver2.png) no-repeat top center fixed;
    background-size: cover;
    height: 100%;
}

.landing-slogan-v2 {
    text-align: center;
    max-width: 250px;
    margin: auto
}

.landing-btm-v2 {
    padding-top: 0%;
    position: fixed;
    bottom: 15%;
    margin: auto;
    left: 0;
    right: 0;
}

/* end landing version 2 */

/* login page */
body.login-bg {
    /* background: url(../images/login/bg.png) no-repeat top center fixed; */
    background-size: cover;
    height: 100%;
}

.login-wrap {
    padding: 0px 20px 10px;
    position: relative;
}

.login-logo {
    max-width: 200px;
    margin: auto;
    padding: 16% 0px 20px;
}

.login-title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 20px 0px 20px;
}

.login-form-box {
    position: relative;
    width: 100%;
    padding-bottom: 15px;
}

.login-icon {
    position: absolute;
    left: 8px;
    top: 8px;
    max-width: 29px;
}

.login-form-box input {
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    border: 1px solid #6c7ba8;
    background: hsla(0, 0%, 100%, .08);
    /* box-shadow: inset #fff 2px 2px 8px -4px; */
    color: #6c7ba8;
    font-size: 16px;
}

.login-form-box input::placeholder {
    color: #6c7ba8;
}

.login-pass-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    max-width: 20px;
}

.verify-icon {
    position: absolute;
    right: 35px;
    top: 10px;
    width: 60px;
}

.refresh-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    max-width: 20px;
}

.login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
}

.login-rmb {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c7ba8;
}

.checkbox-round {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    margin-right: 10px;
}

.checkbox-round:checked {
    background-color: gray;
}

.login-forget {
    color: #6c7ba8;
}

.login-btn-wrap {
    text-align: center;
}

.login-btn {
    display: block;
    color: #fff;
    margin: 25px auto 15px;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 10px;
    min-width: 120px;
    border: none;
}

.login-btn-btm {
    color: #6c7ba8;
    font-size: 13px;
}

.login-btn-btm a {
    color: #DEB361;
}

.login-skip {
    text-align: center;
    /* position: fixed; */
    bottom: 7%;
    left: 0;
    right: 0;
    padding-top: 25px;
}

.login-skip a {
    color: #DEB361;
}

/* end login page */

/* register page */
.reg-tnc {
    color: #a88663;
}

.phone-form-box .iti__flag-container {
    display: flex;
    position: initial;
}

.phone-form-box {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}

.phone-form-box input {
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #747f82;
    background: rgb(131, 170, 160, 0.8);
    box-shadow: inset #fff 2px 2px 8px -4px;
    padding-left: 6px;
}

.phone-form-box input::placeholder {
    color: #a1b7ac;
}

.phone-form-box .iti--separate-dial-code .iti__selected-flag {
    padding: 10px 10px 10px 40px;
    border-radius: 30px;
    background: rgb(131, 170, 160, 0.8);
    border: none;
    box-shadow: inset #fff 2px 2px 8px -4px;
    color: #fff;
}

.phone-form-box .iti__arrow {
    border-top: 4px solid #fff;
}

.phone-form-box .iti {
    display: flex;
    gap: 5px;
}

.phone-form-box .iti--separate-dial-code input[type=text],
.phone-form-box .iti--allow-dropdown input,
.phone-form-box .iti--allow-dropdown input[type=text],
.phone-form-box .iti--allow-dropdown input[type=tel],
.phone-form-box .iti--separate-dial-code input,
.phone-form-box .iti--separate-dial-code input[type=tel] {
    padding-left: 10px;
}

.phone-form-box .iti--allow-dropdown .iti__flag-container:hover {
    background: rgb(131, 170, 160, 0.8);
    border-radius: 30px;
}

.login-bg.iti-mobile .iti--container {
    top: 28%;
    bottom: 0px;
    left: 30px;
    right: 30px;
    position: absolute;
}

.reg-contact-icon {
    position: absolute;
    left: 2px;
    top: 4px;
    max-width: 40px;
    z-index: 2;
}

.login-form-box input:focus,
.phone-form-box input:focus {
    outline: none !important;
    border: 1px solid #DEB361;
    box-shadow: 0 0 4px #DEB361;
}

.reg-agree {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: #6c7ba8;
    gap: 5px;
}

/* end register page */


/* forget password page */
body.fp-bg {
    background: url(../images/login/forgot-pass/background.png) no-repeat top center fixed;
    background-size: cover;
    height: 100%;
}

.fp-header {
    background: url(../images/login/forgot-pass/header.png) no-repeat;
    background-size: 100% 100%;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 15px;
}

.fp-header img {
    max-width: 25px;
}

.fp-wrap {
    padding: 70px 15px 10px;
}

.fp-note {
    padding: 0px 5px 15px;
    font-weight: bold;
}

.fp-form-box {
    position: relative;
    width: 100%;
    padding-bottom: 10px;
}

.fp-form-box input {
    background: linear-gradient(to bottom, #f7fbff 0%, #fff 100%);
    background: #fff;
    border-radius: 10px;
    box-shadow: #808ea8 2px 2px 8px -4px;
    border: none;
    border-bottom: 4px solid #d6e6d7;
    padding: 15px;
    text-align: end;
}

.fp-form-label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-weight: bold;
}

.fp-form-box input:focus {
    outline: none !important;
    border: none;
    box-shadow: none;
}

.fp-form-box.left input {
    text-align: left;
}

.fp-sms-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: url(../images/login/forgot-pass/btn-short.png) no-repeat;
    background-size: 100% 100%;
    padding: 12px 13px 16px;
    color: #fff;
    font-size: 12px;
}

.fp-sms-btn:hover {
    color: #ffe418;
}

.forget-btn-wrap {
    padding-top: 20px;
    text-align: center;
}

.forget-pass-wait {
    text-align: center;
    padding-top: 10px;
}

.forget-pass-wait span {
    color: #53b875;
}

.fgt-next-btn {
    background: linear-gradient(to bottom, #90d4b1 0%, #1c8d4c 12%, #209150 50%, #1e8c4d 100%);
    border-radius: 20px;
    box-shadow: #136d51 2px 2px 8px -2px;
    display: block;
    padding: 12px 0px;
    color: #fff;
}

/* end forget password page */

/* reset password page */
.rs-form-label {
    position: absolute;
    top: 12px;
    left: 20px;
    font-weight: bold;
}

.fp-form-box.reset input {
    padding: 22px 40px;
}

/* end reset password page */

/* top header */
.top-header {
    display: flex;
    grid-gap: 5px;
    align-items: center;
    padding: 5px 15px;
    position: fixed;
    width: 100%;
    max-width: 768px;
    z-index: 10;
    background: #fff;
}

.top-menu img {
    max-width: 30px;
}

.top-logo {
    display: block;
    text-align: left;
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
}

.top-logo img {
    max-width: 100%;
}

.top-right {
    display: flex;
    gap: 5px;
    justify-content: end;
    align-items: center;
    min-width: 75%;
    font-size: 11px;
}

.top-right img {
    max-width: 25px;
}

/* end top header */

/* side menu */
.side-menu .modal-dialog {
    margin-left: 0 !important;
    margin-top: 0 !important;
}

.modal.left.fade .modal-dialog {
    left: -320px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

.modal.left .modal-dialog {
    position: fixed;
    margin: auto;
    width: 250px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.left.fade.show .modal-dialog {
    left: 0;
}

.modal.left .modal-body {
    padding: 0;
}

.side-menu .modal-content {
    border-radius: 0px;
    background: url(../images/side-menu/background.png) no-repeat;
    background-size: 100% 100%;
}

.side-logo {
    text-align: center;
    padding: 20% 0px 20px;
}

.side-logo img {
    max-width: 150px;
}

.side-login-btn {
    background: url(../images/side-menu/button\ -\ login.png) no-repeat;
    background-size: 100% 100%;
    color: #fff;
    display: block;
    width: 50%;
    padding: 15px;
    margin: 20px auto 10px;
}

.side-menu-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    display: block;
}

.side-menu-box img {
    max-width: 40px;
}

.side-menu-box span {
    color: #136d51;
    font-weight: bold;
}

.side-copyright {
    position: fixed;
    bottom: 5%;
    left: 0;
    right: 0;
    text-align: center;
    color: #136d51;
}

#language-modal .modal-dialog {
    max-width: 500px;
}

#language-modal .modal-content {
    /* background: url(../images/side-menu/language/box.png) no-repeat; */
    /* background-size: 100% 100%; */
    border: none;
    border-radius: 12px 12px 0px 0px;
}

.lang-header {
    padding: 20px 10px 10px;
}

.lang-header h5 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: 0px;
}

.lang-header .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    font-size: 25px;
    color: #616c76;
}

.lang-wrap {
    padding: 0px 20px;
}

.lang-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.lang-box img {
    max-width: 30px;
}

.lang-box-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-box-list a {
    color: #616c76;
}

.lang-box-list a:hover {
    color: #136d51;
    font-weight: bold;
}

.lang-divider {
    border-right: 2px solid #c8c8c8;
    height: 20px;
}

/* end side menu */

/* index page */
.t-body.index-bg {
    padding-top: 51px;
}

.index-box {
    padding-bottom: 4px;
    /* background: linear-gradient(to left, #dfeeea 0%, #c5dcce 12%, #c1e1d1 47%, #c1d9cf 100%) left bottom no-repeat; */
    /* background-size: 100% 11px; */
    position: relative;
    margin-top: 30px;
    border-radius: 10px;
    margin: 10px 5px 0 5px;
    color: #000;
}


.announce-wrap {
    display: flex;
    align-items: center;
    position: relative;
    color: #6c7ba8;
    padding: 10px;
    grid-gap: 5px;
}

.ann-icon i {
    background: linear-gradient(to bottom, #f0dcc1 0%, #d2a981 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 13px;
    width: 25px;
    height: 25px;
}

.ann-bar {
    width: 100%;
}

.index-btm-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 0px 15px;
}

.index-welcome {
    color: #303442;
    font-weight: bold;
}

.index-login {
    display: flex;
    align-items: center;
    font-weight: bold;
    /* font-size: 14px; */

    justify-content: center;
    /* padding: 5px 5px; */
}

.index-login .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.index-login img {
    max-width: 20px;
}

.index-link {
    display: flex;
    text-align: center;
    gap: 10px;
}

.index-link img {
    max-width: 35px;
}

.index-link span {
    display: block;
    color: #000000;
    font-size: 12px;
}

.gallery-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.gallery-main {
    width: 57%;
    height: 100%;
    margin: 10px auto;
    box-shadow: 0 50px 75px 50px rgba(#1e1e1e, 0.18);
}

.gallery-main .swiper-slide img {
    width: 100%;
}

/* .gallery-main .swiper-button-prev, .gallery-main .swiper-button-next{
    position: absolute;
    bottom: 0;
    right: 0;
    top: 53px;
    left: auto;
    height: 25px;
    width: 20px;
    color: #1e1e1e;
    background: #e9e9e9;
}

.gallery-main .swiper-button-prev::after, .gallery-main .swiper-button-next::after{
    font-size: 12px;
}

.gallery-main .swiper-button-prev{
    left: 0px;
    border-right: 1px solid #e9e9e9;
}

.gallery-main .swiper-button-next{
    left: 95px;
    border-right: 1px solid #e9e9e9;
} */

.gallery-thumbs .swiper-button-prev,
.gallery-thumbs .swiper-button-next {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 70px;
    left: auto;
    height: 25px;
    width: 20px;
    color: transparent;
    background: transparent;
}

.gallery-thumbs .swiper-button-prev::after,
.gallery-thumbs .swiper-button-next::after {
    font-size: 12px;
}

.gallery-thumbs .swiper-button-prev {
    left: 0px;
    /* border-right: 1px solid #e9e9e9; */
    background: url(../images/index/icon\ arrow\ -\ left.png) no-repeat;
    background-size: 100% 100%;

}

.gallery-thumbs .swiper-button-next {
    left: 35%;
    /* border-right: 1px solid #e9e9e9; */
    background: url(../images/index/icon\ arrow\ -\ right.png) no-repeat;
    background-size: 100% 100%;
}

.gallery-title {
    position: absolute;
    bottom: 25%;
    right: 0px;
    color: #ffffff;
    background: url(../images/index/box\ type\ 2.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
}

.swiper-slide-active .gallery-title {
    animation: slide-in 0.3s ease-in both;
}

.gallery-title-btn {
    background: url(../images/index/btn-short.png) no-repeat;
    background-size: 100% 100%;
    padding: 3vw 3vw 3.6vw;
    font-size: 2.9vw;
    color: #fff;
}

.gallery-title img {
    max-width: 70px;
}

.gallery-thumbs {
    order: -1;
    width: 120px;
    height: 400px;
    position: relative;
}

.gallery-thumbs .swiper-slide img {
    transition: 0.3s;
    padding: 5px;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 0.9;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide .thumb-active {
    display: none;
}

.gallery-thumbs .swiper-slide .thumb-inactive {
    display: block;
}

.gallery-thumbs .swiper-slide-thumb-active .thumb-active {
    display: block;
}

.gallery-thumbs .swiper-slide-thumb-active .thumb-inactive {
    display: none;
}

.gallery-thumbs .swiper-slide.swiper-slide-visible:not(.swiper-slide-active.swiper-slide-thumb-active, .swiper-slide-next) img {
    margin-left: -7px;
}

.gallery-thumbs .swiper-slide-thumb-active img {
    margin-left: 5px;
}

@keyframes slide-in {
    from {
        opacity: 0;
        right: -50%;
    }
}

.gallery-main.swiper-container {
    position: unset;
}

.gallery-thumbs.swiper-container {
    position: unset;
}

.menu-tab {
    padding: 10px;
}

.menu-tab .nav-link .menu-inactive {
    display: block;
}

.menu-tab .nav-link .menu-active {
    display: none;
}

.menu-tab .nav-link.active .menu-active {
    display: block;
}

.menu-tab .nav-link.active .menu-inactive {
    display: none;
}

.menu-tab .nav-pills {
    display: flex;
    overflow-x: scroll;
    flex-wrap: nowrap;
}

.menu-tab .nav-pills .nav-link {
    background: none;
    padding: 5px;
}

.menu-tab .nav-pills .nav-link img {
    max-width: 55px;
}

.gallery-hot-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 55px;
}

/* end index page */


/* fixed bottom menu  */
.menu-btm {
    position: fixed;
    width: 100%;
    max-width: 768px;
    bottom: 0;
    background: linear-gradient(to bottom, #fbfcfe 0%, #e1ecfd 100%);
    z-index: 1;
    filter: drop-shadow(0px 0px 1px #dbf1ed);
}

.menu-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    padding: 5px;
    /* height: 53px; */
    box-shadow: 0 0px 10px 2px rgb(75 75 75 / 21%);
    border-radius: 16px 16px 0 0;
}

.menu-wrapper a {
    text-align: center;
    color: #93a2b1;
    font-size: 12px;
}

.menu-wrapper a.active span {
    color: #a88663;
    display: block;
}

.menu-wrapper a img.inactive {
    display: block;
}

.menu-wrapper a img.active {
    display: none;
}

.menu-wrapper a.active img.active {
    display: block;
}

.menu-wrapper a.active img.inactive {
    display: none;
}

.menu-wrapper img {
    max-width: 35px;
    margin: 0 auto;
    margin-bottom: 4px;
    display: block;
}

.menu-btm-wallet {
    /* max-width: 50px; */
    /* position: relative; */
    bottom: 20px;
    /* margin: 0 auto; */
}



/* end fixed bottom menu  */

/* slots page */
.top-long-header {
    background: url(../images/index/game-banner/slot/header-2.png) no-repeat;
    background-size: 100% 100%;
    position: fixed;
    width: 100%;
    max-width: 991px;
    z-index: 2;
}

.top-long-header img {
    max-width: 30px;
}

.tp-header-top {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    align-items: center;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 15px;
}

.tp-header-title {
    text-align: center;
}

.tp-header-right {
    display: flex;
    gap: 5px;
}

.slt-tab .nav {
    justify-content: space-between;
    padding: 0px 0px 20px;
    border: none;
}

.slt-tab .nav-tabs .nav-link {
    border: none;
    color: #616c76;
}

.slt-tab .nav-tabs .nav-item.show .nav-link,
.slt-tab .nav-tabs .nav-link.active {
    border: none;
    font-weight: bold;
    color: #136d51;
}

.top-long-wrap {
    padding: 120px 10px 20px;
}

.slt-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.slt-inner-box {
    background: linear-gradient(to bottom, #f7fbff 0%, #fff 100%);
    background: #fff;
    border-radius: 10px;
    box-shadow: #808ea8 2px 2px 8px -4px;
    border-bottom: 3px solid #d6e6d7;
    margin: 5px;
}

.slt-box-img {
    display: block;
    width: 100%;
}

.slt-box-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 12px;
    font-size: 10px;
    color: #000;
}

.slt-box-name img {
    max-width: 20px;
}

.top-short-header {
    /* background: url(../images/index/game-banner/slot/header-1.png) no-repeat; */
    background-size: 100% 100%;
    position: fixed;
    width: 100%;
    max-width: 768px;
    display: grid;
    grid-template-columns: 20% 60% 20%;
    align-items: center;
    padding: 10px 10px;
    /* font-weight: bold; */
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
    background: #fff;
}

.top-short-header a {
    color: #000;
    font-size: 15px;
}

.top-short-header img {
    max-width: 25px;
}

.top-short-header span {
    display: block;
    text-align: center;
}

.top-short-wrap {
    padding: 56px 15px 20px;
}

.slt-search-box {
    padding: 10px;
}

.slt-search {
    position: relative;
    color: #dbdbdb;
}

.slt-search input {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f9f9f9;
    padding: 10px 10px 10px 10px;
}

.slt-search i {
    position: absolute;
    right: 10px;
    top: 11px;
    color: #000;
}

.slt-hot {
    padding-top: 10px;
}

.slt-hot h5 {
    font-size: 15px;
    font-weight: bold;
}

.slt-hot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.slt-hot-box {
    background: url(../images/index/game-banner/slot/hot-game-btn.png) no-repeat;
    background-size: 100% 100%;
    color: #fff;
    padding: 5px 7px;
}

.slt-no-result {
    position: relative;
}

.slt-no-result span {
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    color: #c8c8c8;
}

.slt-result {
    padding: 5px 0px;
}

#slt-trf-modal .modal-dialog {
    max-width: 500px;
}

#slt-trf-modal .modal-content {
    background: url(../images/index/game-banner/slot/popup\ -\ box.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
}

.slt-trf-content {
    padding: 0px 10px;
}

.slt-trf-content h5 {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
}

.slt-trf-box {
    background: url(../images/index/game-banner/slot/popup\ -\ background.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.slt-trf-wallet {
    text-align: center;
}

.slt-trf-box img {
    max-width: 40px;
}

.slt-trf-num {
    color: #136d51;
    font-weight: bold;
    display: block;
    font-size: 16px;
}

.slt-trf-range {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #136d51;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 0px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #e2e2e2;
    border-radius: 10px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom, #179c64 0%, #105f2d 100%);
    border-radius: 50px;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom, #179c64 0%, #105f2d 100%);
    border-radius: 50px;
    cursor: pointer;
}

.slt-trf-form {
    position: relative;
    color: #136d51;
}

.slt-trf-form input {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f9f9f9;
    padding: 10px 10px 10px 10px;
    text-align: end;
}

.trf-form-label {
    position: absolute;
    left: 10px;
    top: 10px;
}

.slt-trf-btn {
    display: block;
    background: url(../images/index/game-banner/slot/popup\ -\ button.png) no-repeat;
    background-size: 100% 100%;
    margin: 10px auto;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.slt-detail-logo {
    text-align: center;
    padding: 20px 0px;
    max-width: 300px;
    margin: auto;
}

.slt-detail-form {
    position: relative;
    padding-bottom: 5px;
}

.slt-detail-form input {
    background: linear-gradient(to bottom, #f7fbff 0%, #fff 100%);
    background: #fff;
    border-radius: 10px;
    box-shadow: #808ea8 2px 2px 8px -4px;
    border: none;
    border-bottom: 4px solid #d6e6d7;
    padding: 20px 45px 15px 0px;
    text-align: end;
}

.slt-detail-form input::placeholder {
    color: #136d51;
}

.slt-form-label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #000;
}

.slt-copy-icon {
    position: absolute;
    top: 19px;
    right: 15px;
    max-width: 15px;
}

.slt-detail-step {
    padding: 10px;
}

.slt-detail-step h5 {
    font-size: 15px;
    font-weight: bold;
}

.slt-detail-step p {
    color: #616c76;
}

.slt-detail-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.slt-detail-btn a {
    width: 50%;
    text-align: center;
}


/* end slots page */

/* afterlogin index page */
.index-al-name {
    color: #788b9d;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 5px;
}

.index-al-name img {
    max-width: 70px;
}

.al-side-avatar {
    position: relative;
    margin-top: 20px;
}

.al-side-vip {
    position: absolute;
    bottom: -10px;
    left: -15px;
    right: 0;
    margin: 0 auto;
}

img.al-side-vip {
    max-width: 80px;
}

.al-side-name {
    color: #136d51;
    font-weight: bold;
    font-size: 16px;
    padding-top: 12px;
}

.side-logout-btn {
    background: linear-gradient(to bottom, #fbeecf 0%, #e5c484 100%);
    border-radius: 25px;
    color: #8a6012;
    display: block;
    width: 50%;
    padding: 10px;
    margin: 5px auto 0px;
    box-shadow: inset #fff 2px 2px 8px -4px;
}

/* end afterlogin index page */

/* wallet page */
.wallet-wrap {
    padding: 20px 10px 75px;
}

.wallet-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.wallet-title img {
    max-width: 30px;
}

.wallet-title span {
    color: #136d51;
    font-weight: bold;
    font-size: 14px;
}

.wallet-amt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-top: 5px;
}

.wallet-amt img {
    max-width: 25px;
}

.wallet-amt span {
    font-size: 22px;
    font-weight: bold;
}

.wallet-list {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 10px;
}

.wallet-list-box {
    color: #000;
}

.wallet-list-box img {
    max-width: 30px;
}

.wallet-div {
    border-right: 2px solid #eaeaea;
    height: 40px;
}

.main-wallet-body {
    padding: 10px;
}

.main-wallet-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.mw-prov {
    color: #888888;
}

.mw-num {
    font-weight: bold;
}

.mw-num.red {
    color: red;
}

.mw-readmore {
    text-align: center;
    max-width: 25px;
    margin: 0 auto;
}

/* end wallet page */

/* deposit page */
.top-hdr-right {
    text-align: end;
}

.dep-tab {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.dep-tab a {
    text-align: center;
    background: #f7f8f9;
    color: #616c76;
    border-bottom: 1px solid #bcdacd;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    box-shadow: #136d51 2px 2px 8px -4px;
    margin: 0px 10px;
}

.dep-tab a.active {
    background: linear-gradient(to bottom, #4fc58b 0%, #1e9252 12%, #1d8f4d 50%, #76ba93 100%);
    box-shadow: #136d51 2px 2px 8px -4px;
    color: #fff;
}

.dep-bank-tab {
    padding: 10px;
}

.dep-bank-tab img {
    max-width: 70px;
}

.dep-bank-tab .nav.nav-pills {
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
}

.dep-bank-tab .nav-pills .nav-link img.inactive {
    display: block;
}

.dep-bank-tab .nav-pills .nav-link img.active {
    display: none;
}

.dep-bank-tab .nav-pills .nav-link.active img.active,
.dep-bank-tab .nav-pills .show>.nav-link img.active {
    display: block;
}

.dep-bank-tab .nav-pills .nav-link.active img.inactive,
.dep-bank-tab .nav-pills .show>.nav-link img.inactive {
    display: none;
}

.dep-bank-tab .nav-pills .nav-link {
    background: none;
    border: none;
    padding: 5px;
}

.dep-bank-tab .nav-pills .nav-link.active,
.dep-bank-tab .nav-pills .show>.nav-link {
    background: none;
    border: none;
}

.dep-bank-detail {
    padding: 0px 0px;
}

.dep-bank-box {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    padding-bottom: 10px;
    position: relative;
}

.dep-bank-label {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 10px;
}

.dep-bank-fill {
    font-weight: bold;
    font-size: 12px;
}

.dep-bank-box img {
    max-width: 15px;
}

.dep-to {
    padding: 10px;
}

.dep-title {
    font-weight: bold;
    padding: 0px 5px;
    margin-bottom: 5px;
}

.dep-wallet-btn {
    background: url(../images/wallet/deposit/online/btn-wallet.png) no-repeat;
    background-size: 100% 100%;
    display: block;
    width: 35%;
    padding: 10px 15px 12px;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

.dep-channel {
    padding: 10px;
}

select.dep-option {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
    font-size: 13px;
}

select.form-select.dep-option {
    color: #888888;
}

select.dep-option option {
    background: #fff;
    color: #136d51;
}

select.dep-option:focus {
    outline: none !important;
    box-shadow: none;
}

.dep-amount {
    padding: 10px;
}

.dep-amt-list {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding: 5px 0px;
}

.dep-amt-list button {
    background: url(../images/wallet/deposit/online/btn-amt-inactive.png) no-repeat;
    background-size: 100% 100%;
    padding: 8px 5px;
    border: none;
    width: 100%;
}

.dep-amt-list button:active,
.dep-amt-list button:focus {
    background: url(../images/wallet/deposit/online/btn-amt-active.png) no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

input.dep-form-input {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f9f9f9;
    padding: 10px 10px 10px 10px;
}

input.dep-form-input::placeholder {
    color: #888888;
}

.dep-promo {
    padding: 10px;
}

.dep-receipt {
    padding: 10px;
}

.dep-upload {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f9f9f9;
    padding: 10px 10px 10px 10px;
    position: relative;
    color: #888888;
}

.dep-upload button {
    position: absolute;
    top: 2px;
    right: 2px;
    background: url(../images/wallet/deposit/online/btn-upload.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px 15px;
    font-size: 12px;
    border: none;
    color: #fff;
}

.dep-submit {
    text-align: center;
    padding: 10px 0px;
}

.green-btn {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    border-radius: 5px;
    /* box-shadow: #136d51 2px 2px 8px -2px; */
    display: block;
    padding: 12px 0px;
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.green-btn:hover {
    color: #e7e7e7;
}



.how-dep-btn {
    color: #136d51;
    font-weight: bold;
    display: block;
    margin: 10px 0px;
}

.dep-info {
    padding: 20px 10px;
}

.dep-info h5 {
    font-weight: bold;
    font-size: 14px;
}

.dep-info ol {
    color: #616c76;
    padding-left: 15px;
}

.dep-info ol li {
    line-height: 1.2;
}

.dep-info ol li span {
    color: #136d51;
    font-weight: bold;
}

.dep-detail-progress {
    /* background: url(../images/wallet/deposit/online/detail/box-1.png) no-repeat;
    background-size: 100% 100%;
    padding: 45px 15px 15px;
    margin-top: 30px;
    margin-bottom: 5px; */
    padding: 45px 10px 10px;
    position: relative;
}

.dep-detail-logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -25px;
    max-width: 70px;
}

.step-nav {
    display: flex;
    padding: 0;
    margin: auto;
    list-style: none;
    justify-content: space-between;
    border-bottom: 0;
    max-width: 270px;
}

.step-nav li {
    position: relative;
}

.step-nav li:nth-child(1):before,
.step-nav li:nth-child(2):before {
    content: "";
    width: 100%;
    height: 2px;
    background: #ebedef;
    position: absolute;
    top: 39%;
    left: 64%;
}

.step-nav.nav-pills a.nav-link {
    background: none;
    text-align: center;
}

.step-nav.nav-pills .nav-link span {
    color: #585858;
    display: block;
    font-weight: bold;
}

.step-nav.nav-pills .nav-link.active span,
.step-nav.nav-pills .show>.nav-link span {
    color: #136d51;
}

.step-nav.nav-pills a img {
    max-width: 30px;
}

.dep-detail-num {
    text-align: center;
    padding: 10px 0px;
}

.dep-detail-num h5 {
    font-weight: bold;
    font-size: 30px;
}

.dep-detail-num span {
    color: #808ea8;
}

.dep-detail-info {
    /* background: url(../images/wallet/deposit/online/detail/box-2.png) no-repeat;
    background-size: 100% 100%; */
    padding: 0px 10px;
}

.dep-detail-box {
    display: flex;
    /* align-items: baseline; */
    border-bottom: 1px solid #e5e5e5;
    padding: 13px 0px;
    flex-direction: column;
}



.dep-detail-box div:nth-child(2) {
    width: 60%;
    word-break: break-word;
}

.dep-bank-name {
    text-align: end;
}

.dep-bank-red {
    color: red;
    text-align: end;
}

.dep-detail-box img {
    max-width: 21px;
}

.crypto-qr {
    padding: 10px;
}

.crypto-qr img {
    margin: 0 auto;
    text-align: center;
    max-width: 150px;
    margin: 20px auto 10px;
    display: block;
}

.crypto-qr span {
    color: #616c76;
    text-align: center;
    display: block;
    font-size: 12px;
    padding-top: 10px;
}

.dep-address {
    padding: 10px;
}

.dep-copy {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #f9f9f9;
    padding: 10px 10px 10px 10px;
    position: relative;
    color: #888888;
}

.dep-copy button i {
    color: #d4a982;
}

.dep-copy input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 60px;
    font-weight: bold;
    color: #000;
    border: none;
}

.dep-copy button {
    position: absolute;
    top: 2px;
    right: 2px;
    background: url(../images/wallet/deposit/crypto/btn-copy.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px 18px;
    font-size: 18px;
    border: none;
    color: #0d6efd;
}

/* end deposit page */

/* withdrawal page */
.wd-main {
    padding: 15px;
}

.main-wallet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.main-wal-title {
    display: flex;
    align-items: center;
    color: #126e51;
}

.main-wal-title span {
    color: #126e51;
    font-weight: bold;
    padding-left: 10px;
}

.main-wal-title img {
    max-width: 30px;
}

.main-wal-amt {
    font-weight: bold;
    padding-top: 5px;
    font-size: 16px;
}

.retrieve-btn {
    background: url(../images/wallet/withdraw/btn-retrieve.png) no-repeat;
    background-size: 100% 100%;
    color: #fff;
    padding: 10px 15px;
}

.retrieve-btn:hover {
    color: #ffe418;
}

.main-wallet-body-1 {
    padding: 10px;
}

.wd-add-bank {
    padding: 33px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.wd-add-bank img {
    max-width: 21px;
    margin: auto;
    display: block;
}

.wd-add-bank span {
    color: #000000;
    font-size: 15px;
}

.read-more {
    text-align: center;
}

.read-more img {
    max-width: 35px;
}

.moretext {
    display: none;
}

.wd-addbank-bg {
    padding: 15px;
}

select.wd-add-option {
    border: none;
    padding: 0px;
    font-size: 13px;
    width: auto;
    padding-right: 15px;
    text-align: end;
}

select.wd-add-option:focus {
    outline: none !important;
    box-shadow: none;
}

select.form-select.wd-add-option {
    background: url(../images/wallet/withdraw/arrow-select.png) no-repeat;
    background-size: 7px 10px;
    background-position: right 0.2rem center;
}

input.wd-add-input {
    border: none;
    padding: 0px;
    font-size: 15px;
    width: auto;
    text-align: left;
    background: #fff;
}

input.wd-add-input::placeholder {
    color: #888888;
}

#add-success-modal .modal-content {
    background: url(../images/wallet/withdraw/box-popup.png) no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
    position: relative;
}

.add-success-icon {
    position: absolute;
    top: -26%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100px;
}

.add-success-btn {
    text-align: center;
    padding: 0px 15px;
}

.add-success-content {
    text-align: center;
    padding: 15% 0px 20px;
}

.success-status {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.add-success-content span {
    color: #888888;
    display: block;
    padding: 0px 0px 15px;
}

.wd-select-bank {
    padding: 10px;
}

.wd-select-title {
    padding: 0px 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wd-select-title h5 {
    font-weight: bold;
    font-size: 13px;
    margin: 0px;
}

.wd-add-small-btn {
    color: #7cc595;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.wd-add-small-btn img {
    max-width: 20px;
}

.wd-select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 13px 0px;
}

.wd-select-box:last-child {
    border-bottom: none;
}

.wd-bank-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.wd-bank-dlt {
    max-width: 15px;
}

.wd-bank-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.wd-bank-name img {
    max-width: 25px;
}

.wd-bank-checkbox {
    position: relative;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 15px;
    width: 15px;
    border-radius: 50px;
    clip-path: circle(50% at 50% 50%);
    color: rgb(97, 97, 97);
}

.wd-bank-checkbox::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #616c76;
    border-radius: 50px;
    box-shadow: none;
}

.wd-bank-checkbox:checked::after {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 0px;
    top: 0px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 15px;
    width: 15px;
    border-radius: 50px;
    content: "\f00c";
    font-family: FontAwesome;
    background-color: rgb(67, 176, 42);
    border: 1px solid #616c76;
    color: #fff;
}

input.wd-bank-checkbox {
    border: none;
}

.wd-amount {
    padding: 10px;
}

.wd-amt-note {
    color: red;
    padding: 5px 5px;
    font-size: 12px;
}

#wd-confirm-modal .modal-dialog {
    position: fixed;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}

#wd-confirm-modal .modal-content {
    background: #fff;
    border: none;
    border-radius: 12px;
    position: relative;
    border-radius: 10px 10px 0px 0px;
}

.wd-con-header {
    text-align: center;
    font-weight: bold;
    padding: 10px 10px 10px;
}

.wd-con-header .btn-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    font-size: 20px;
    color: #000;
}

.wd-con-header h5 {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: 0px;
}

.wd-confirm-content h5 {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

.wd-pin {
    display: flex;
    justify-content: space-between;
}

.wd-pin input {
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 0px 5px;
    text-align: center;
    font-size: 20px;
    color: #136d51;
}

.wd-pin input:focus {
    outline: none !important;
    border: 1px solid #136d51;
}

.wd-pin-num {
    padding: 20px 40px;
}

.wd-pin-num-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 0px;
    font-size: 20px;
    text-align: center;
}

.wd-pin-num-wrap i {
    font-size: 20px;
    color: #616c76;
}

.wd-pin-num-wrap span:hover {
    cursor: pointer;
    color: #136d51;
}

/* end withdrawal page */

/* transfer page */
.tf-wallet {
    padding: 15px 15px 30px;
}

.tf-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-from {
    background: url(../images/wallet/transfer/btn-1.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    color: #855b0c;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.tf-to {
    background: url(../images/wallet/transfer/btn-2.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    color: #616c76;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.tf-arrow {
    max-width: 20px;
}

.tf-amount {
    padding-top: 10px;
}

.tf-wallet-modal .modal-content {
    background: url(../images/wallet/transfer/box-popup.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
}

.tf-modal-wrap {
    padding: 0px 10px 10px;
}

.tf-prov-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 13px 0px;
    flex-direction: row-reverse;
}

.tf-prov-box:last-child {
    border-bottom: none;
}

.wd-bank-checkbox:checked+.tf-prov-label {
    color: #136d51;
}

.tf-modal .modal-content {
    background: url(../images/wallet/transfer/box-popup.png) no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
    position: relative;
}

.tf-modal .btn-close {
    position: absolute;
    top: 0px;
    right: 10px;
    background: none;
    font-size: 25px;
    color: #000;
    text-shadow: 2px 2px 4px #434343;
    z-index: 1;
}

.tf-success-content {
    text-align: center;
    padding: 10% 10px 20px;
}

.tf-success-detail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.tf-success-name {
    color: #888888;
}

.tf-success-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 15px 0px 10px;
}

.tf-success-btn a {
    width: 100%;
    text-align: center;
    margin: 0px 5px;
}

.tf-fail-note {
    color: #888888;
    display: block;
    padding: 10px 0px 10px;
}

/* end transfer page */

/* download page */
.dl-title {
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    padding: 20px 0px 10px;
}

.dl-title span {
    color: #136d51;
}

.dl-note {
    color: #616c76;
    text-align: center;
}

.dl-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding: 10px;
}

.dl-qr {
    max-width: 100px;
}

.dl-box-info {
    text-align: center;
}

.dl-type img {
    max-width: 25px;
}

.dl-btn {
    background: url(../images/download/button.png) no-repeat;
    background-size: 100% 100%;
    display: block;
    color: #fff;
    padding: 15px 25px;
    margin-top: 10px;
}

/* end download page */

/* contact us page */
.contact-lc {
    padding: 10px;
}

.contact-lc h5 {
    font-size: 13px;
    font-weight: bold;
}

.contact-lc-inner {
    background: url(../images/contact/bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.contact-lc-inner img {
    max-width: 40px;
}

.contact-lc-inner span {
    color: #7cc595;
    font-size: 12px;
}

.contact-lc-inner a {
    display: block;
    background: url(../images/contact/btn-chat.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px;
    font-size: 11px;
    color: #fff;
    white-space: nowrap;
}

.contact-opt-title {
    font-size: 13px;
    font-weight: bold;
    padding: 20px 10px 10px;
}

.contact-opt {
    padding: 10px;
}

.contact-opt-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0px;
    margin: 0px 10px;
}

.contact-opt-box:last-child {
    border-bottom: none;
}

.contact-opt-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-opt-label img {
    max-width: 40px;
}

.contact-opt-list h5 {
    color: #888888;
    font-size: 13px;
    margin: 0px;
}

.contact-opt-list span {
    font-size: 15px;
    font-weight: bold;
}

.contact-opt-copy {
    display: block;
    background: url(../images/contact/btn-copy.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px 20px;
    font-size: 12px;
    color: #136d51;
}

/* end contact us page */

/* account page */
body.acc-bg {
    /* background: url(../images/account/background.png) no-repeat top center fixed; */
    background-size: cover;
    height: 100%;
    background: #f4faff;
}

.acc-wrap {
    padding: 10px 10px;
}

.acc-pic {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.acc-avatar {
    max-width: 55px;
}

.acc-name {
    color: #000000;
    font-size: 14px;
    /* font-weight: bold; */
    display: block;
}

.acc-num {
    color: #808ea8;
    padding-top: 5px;
    display: block;
    font-size: 11px;
}

.acc-num span {
    color: #136d51;
}

.acc-status {
    background: #fff;
    background-size: 100% 100%;
    padding: 15px;
    margin: 10px 0px;
    border-radius: 10px;
}

.acc-wl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
}

.acc-wl-row a {
    color: #fff;
}

.acc-wl-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c4e6dc;
    font-weight: bold;
}

.acc-wl-status img {
    max-width: 25px;
}

.acc-wl-amt {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 0px 10px;
}

.my-vip-level {
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    display: flex;
    /* grid-template-columns: 20% 60% 20%; */
    position: relative;
    margin: 0px 0px 10px;
    justify-content: space-between;
}

.my-vip-bar {
    position: relative;
    width: 100%;
    flex: 1;
    background: #e4e8eb;
    border-radius: .28rem;
    overflow: hidden;
    height: 10px;
    margin: 0 12px;
    position: relative;
}

.my-vip-dot {
    background: url(../images/account/vip\ bar.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: space-around;
    padding: 3px 5px;
    gap: 1px;
    max-width: 60vw;
}

.my-vip-dot img {
    max-width: 4px;
    max-height: 8px;
}

.my-vip-bar-num {
    position: absolute;
    top: -20px;
    left: 16%;
    text-align: center;
    line-height: 0.5;
}

.my-vip-bar-num span {
    font-size: 13px;
    display: block;
    font-weight: bold;
}

.my-vip-bar-num i {
    color: #36ba72;
}

.acc-vip-icon {
    max-width: 15vw;
}

.acc-vip-note {
    color: #888888;
    text-align: center;
    font-size: 15px;
    padding-top: 10px;
}

.acc-vip-note span {
    color: #fff;
}

.acc-link {
    display: flex;
    justify-content: end;
    gap: 9px;
    padding: 0;
}

.acc-link a {
    display: flex;
    /* background: url(../images/account/btn-link.png) no-repeat; */
    /* background-size: 100% 100%; */
    padding: 0;
    color: #788b9d;
    font-size: 14px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.green-box-wrap {
    padding-bottom: 4px;
    /* background: linear-gradient(to left, #dfeeea 0%, #c5dcce 12%, #c1e1d1 47%, #c1d9cf 100%) left bottom no-repeat; */
    /* background-size: 100% 11px; */
    position: relative;
    margin-top: 30px;
    border-radius: 10px;
    margin: 0px 0px;
    box-shadow: 0 .04rem .16rem rgba(218, 236, 234, .4);
}

.green-box-inner-wrap {
    background: #fff;
    border-radius: 10px;
    /* box-shadow: #808ea8 2px 2px 8px -4px; */
    /* border-top: 5px solid #fff; */
}

.acc-mem-title {
    background: #eef3f0;
    color: #136d51;
    border-radius: 10px 10px 0px 0px;
    font-weight: bold;
    font-size: 14px;
    display: block;
    position: relative;
}

.acc-mem-title img {
    width: 100%;
}

.acc-mem-title span {
    display: block;
    padding: 6px 10px;
}

.title-green-border {
    position: absolute;
    left: 0px;
    width: 4px;
    height: 16px;
    border-radius: 0px 20px 20px 0px;
    background: #DEB361;
    z-index: 1;
}

.title-grey-border {
    position: absolute;
    left: 0px;
    width: 4px;
    height: 16px;
    border-radius: 0px 20px 20px 0px;
    background: #888888;
    z-index: 1;
}

.acc-mem-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    padding: 10px 10px;
}

.acc-mem-list a {
    padding: 5px 0px;
}

.acc-mem-list img {
    max-width: 40px;
}

.acc-mem-list span {
    color: #000;
    display: block;
    font-size: 12px;
}

.acc-logout-btn {
    display: block;
    /* background: url(../images/account/button.png) no-repeat;
    background-size: 100% 100%; */
    background: linear-gradient(to bottom, #fdf5e1 0%, #e5c485 100%);
    box-shadow: #136d51 2px 2px 6px -4px;
    padding: 12px;
    margin-top: 15px;
    color: #855b0c;
    text-align: center;
    border-bottom: 2px solid #f5e7c1;
    border-radius: 20px;
}

#avatar-modal .modal-content {
    background: url(../images/account/avatar/box.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px 12px 0 0;
}

.avatar-content {
    padding: 20px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.avatar-tick {
    max-width: 30px;
}

.avatar-box {
    position: relative;
    text-align: center;
}

.avatar-tick {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -15px;
}

/* end account page */

/* profile page */
.white-box-wrap {
    padding-bottom: 4px;
    /* background: linear-gradient(to left, #dfeeea 0%, #c5dcce 12%, #c1e1d1 47%, #c1d9cf 100%) left bottom no-repeat; */
    position: relative;
    margin-top: 30px;
    border-radius: 10px;
    margin: 0px 5px;
    color: #000;
    padding: 0;
}

.white-box-inner-wrap {
    /* background: linear-gradient(to bottom, #f7fbff 0%, #fff 100%); */
    background: #fff;
    border-radius: 10px;
    border: 1px solid #c28648;
    overflow: hidden;
}

.profile-wrap {
    padding: 0px 10px;
}

.pf-remark {
    cursor: pointer;
    padding-left: 3px;
}

#pf-remark-modal .modal-content {
    background: url(../images/account/profile/box-popup1.png) no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
}

.pf-remark-content {
    text-align: center;
    padding: 10px;
}

.pf-remark-content span {
    color: #888888;
    display: block;
    padding: 10px 0px 20px;
}

.pf-remark-content h5 {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pf-remark-content img {
    max-width: 20px;
}

.pf-got-btn {
    background: linear-gradient(to bottom, #90d4b1 0%, #1c8d4c 12%, #209150 50%, #1e8c4d 100%);
    border-radius: 20px;
    box-shadow: #136d51 2px 2px 6px -2px;
    margin: 0 auto;
    padding: 12px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    display: block;
}

.pf-got-btn:hover {
    color: #ffe418;
}

.dep-bank-label.remark {
    display: flex;
    align-items: center;
}

input.pf-date {
    width: 100%;
    text-align: end;
    border: none;
    background-image: url(../images/account/profile/arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    text-indent: 20px;
    background-size: contain;
    position: relative;
}

input.pf-date:focus,
input.pf-date:active {
    background-image: none;
}

input.pf-date::placeholder {
    color: #000;
    font-size: 20px;
}

input.pf-date:not(:placeholder-shown) {
    background-image: none;
}

.pf-arrow {
    text-align: end;
}

.pf-arrow img {
    max-width: 9px;
}

.gdr-modal .modal-content {
    background: url(../images/account/profile/box-popup2.png) no-repeat;
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
}

/* end profile page */

/* security page */
.nav.sec-menu-tab {
    width: 100%;
    justify-content: center;
}

.sec-menu-tab .nav-item {
    display: flex;
    width: 50%;
    justify-content: center;
    padding: 0px 5px;
}

.nav-pills.sec-menu-tab .nav-link {
    background: #f7f8f9;
    color: #616c76;
    border-bottom: 1px solid #bcdacd;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    box-shadow: #136d51 2px 2px 8px -4px;
}

.nav-pills.sec-menu-tab .nav-link.active,
.nav-pills.sec-menu-tab .show>.nav-link {
    background: linear-gradient(to bottom, #4fc58b 0%, #1e9252 12%, #1d8f4d 50%, #76ba93 100%);
    box-shadow: #136d51 2px 2px 8px -4px;
    color: #fff;
}

.sec-content-wrap {
    padding: 10px;
}

.sec-input {
    position: relative;

}

.sec-input input {
    border: none;
    padding: 0px;
    font-size: 13px;
    width: auto;
    text-align: end;
    background: #fff;
    padding-right: 30px;
}

.sec-hide-icon {
    position: absolute;
    right: 5px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

img.sec-hide-icon {
    max-width: 20px;
}

input.sec-input::placeholder {
    color: #888888;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sec-detail-box {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 13px 0px;
}

.sec-detail-box:last-child {
    border-bottom: none;
}

.sec-detail-box div:nth-child(2) {
    width: auto;
    display: grid;
    word-break: break-word;
}

#sec-pin-modal .modal-dialog {
    position: fixed;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}

#sec-pin-modal .modal-content {
    border: none;
    border-radius: 0px;
    position: relative;
}

#sec-pin-modal .modal-body {
    padding: 0px;
}

.keypad {
    grid-gap: 1px;
    background-color: #ccc;
    border: 1px solid #ccc;
}

.key-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

.key {
    background-color: #fff;
    border: 1px solid #ebebeb;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.special {
    grid-row: span 2;
}

.large {
    display: block;
    background: linear-gradient(to bottom, #95e8ba 0%, #56bf8b 100%);
    color: white;
    grid-row: span 3;
}

.zero {
    grid-column: span 2;
}

.key:hover {
    background-color: #f0f0f0;
}

.key:active {
    background-color: #e0e0e0;
}

.large:hover {
    background-color: #45a049;
}

.large:active {
    background-color: #397d39;
}

/* end security page */

/* bank detail page */
.bd-note {
    text-align: center;
    color: #888888;
}

.bank-af {
    padding: 15px;
}

.bank-select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    padding: 13px 0px;
}

.bank-select-box:last-child {
    border-bottom: none;
}

.bank-af-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.bank-af-detail img {
    max-width: 30px;
}

.bank-af-name h5 {
    font-size: 13px;
    margin: 0px;
}

.bank-af-name span {
    color: #616c76;
    padding-top: 5px;
    display: block;
}

.bank-af-dlt {
    max-width: 20px;
}

.dlt-modal .modal-content {
    /* background: url(../images/account/bank-detail/box.png) no-repeat; */
    background-size: 100% 100%;
    border: none;
    border-radius: 12px;
}

.bank-dlt-content {
    text-align: center;
    padding: 15px;
}

.bank-dlt-content h5 {
    font-weight: bold;
    font-size: 15px;
}

.bank-dlt-content span {
    color: #616c76;
}

.bank-dlt-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px 0px 10px;
}

.bank-dlt-btn a {
    width: 50%;
}

/* end bank detail page */

/* inbox page */
.nav.inbox-tab {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.inbox-tab .nav-item {
    display: flex;
    justify-content: center;
    padding: 0px 5px;
}

.nav-pills.inbox-tab .nav-link {
    /* background: #f7f8f9; */
    color: #a5a9b3;
    /* border-bottom: 1px solid #bcdacd; */
    /* width: 100%; */
    border-radius: 10px;
    padding: 0px;
    /* box-shadow: #136d51 2px 2px 8px -4px; */
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
}

.nav-pills.inbox-tab .nav-link.active,
.nav-pills.inbox-tab .show>.nav-link {
    background: transparent;
    /* box-shadow: #136d51 2px 2px 8px -4px; */
    color: #DEB361;
}

.inbox-title {
    background: #f3f3f3;
    color: #000000;
    border-radius: 10px 10px 0px 0px;
    font-weight: bold;
    font-size: 13px;
    display: block;
    position: relative;
}

.inbox-title span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 10px;
}

.inbox-title img {
    max-width: 30px;
}

.inbox-title .title-green-border,
.inbox-title .title-grey-border {
    height: 20px;
}

.inbox-date {
    font-size: 11px;
    color: #616c76;
    padding: 10px;
}

.inbox-msg {
    padding: 0px 10px 10px;
    font-size: 12px;
    line-height: 1.4;
}

.inbox-no-msg {
    text-align: center;
    color: #616c76;
}

.unread {
    filter: opacity(50%);
}

.inbox-btm {
    position: fixed;
    width: 100%;
    max-width: 991px;
    bottom: 0;
    z-index: 1;
    display: flex;
    gap: 5px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px;
}

.inbox-btm a img {
    max-width: 20px;
}

.inbox-unread-btn {
    background: linear-gradient(to right, #e3c07f 0%, #fcf0ca 100%);
    box-shadow: #136d51 2px 2px 8px -4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #855b0c;
    width: 50%;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #e3c180;
}

.inbox-dlt-btn {
    background: linear-gradient(to bottom, #4fc58b 0%, #1e9252 12%, #1d8f4d 50%, #76ba93 100%);
    box-shadow: #136d51 2px 2px 8px -4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    width: 50%;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #cfe4d5;
}

.inbox-detail-box {
    padding: 10px;
}

.inbox-detail-box h5 {
    color: #DEB361;
    font-weight: bold;
    font-size: 15px;
}

.inbox-detail-box p {
    color: #616c76;
}

.inbox-detail-box span {
    display: block;
    color: #888888;
    text-align: end;
}

/* end inbox page */

/* history page  */
.his-tab .nav {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0px 0px 20px;
    border: none;
}

.his-tab .nav-tabs .nav-link {
    border: none;
    color: #616c76;
}

.his-tab .nav-tabs .nav-item.show .nav-link,
.his-tab .nav-tabs .nav-link.active {
    border: none;
    font-weight: bold;
    color: #136d51;
}

.his-tab .nav-tabs .nav-link.active::after {
    content: "";
    display: block;
    width: 50%;
    height: 5px;
    border-bottom: 2px solid #136d51;
    margin: 0px auto;
}

.his-type .nav {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0px 0px 20px;
    border: none;
    gap: 7px;
}

.his-type .nav-tabs .nav-link {
    background: #f7f8f9;
    color: #616c76;
    border-bottom: 1px solid #bcdacd;
    width: 100%;
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: #136d51 2px 2px 8px -4px;
    white-space: nowrap;
}

.his-type .nav-tabs .nav-item.show .nav-link,
.his-type .nav-tabs .nav-link.active,
.his-type .nav-tabs .nav-link:active {
    background: linear-gradient(to bottom, #4fc58b 0%, #1e9252 12%, #1d8f4d 50%, #76ba93 100%);
    box-shadow: #136d51 2px 2px 8px -4px;
    color: #fff;
}

.his-type .nav-tabs .nav-link .his-date-inactive {
    display: block;
}

.his-type .nav-tabs .nav-link .his-date-active {
    display: none;
}

.his-type .nav-tabs .nav-link:active .his-date-active,
.his-type .nav-tabs .nav-link.active .his-date-active {
    display: block;
}

.his-type .nav-tabs .nav-link:active .his-date-inactive,
.his-type .nav-tabs .nav-link.active .his-date-inactive {
    display: none;
}

.his-type .nav-tabs .nav-link img {
    max-width: 25px;
    margin: auto;
}

.trans-no-data {
    position: relative;
    bottom: 50px;
    text-align: center;
    color: #616c76;
}

.trans-wrap {
    padding: 10px;
}

.trans-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #616c76;
    padding-bottom: 5px;
}

.trans-success {
    background: linear-gradient(to bottom, #34ac5c 0%, #52bd74 100%);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.trans-verify {
    background: linear-gradient(to bottom, #e4c282 0%, #fceec7 100%);
    color: #855b0c;
    padding: 5px;
    border-radius: 5px;
}

.trans-fail {
    background: linear-gradient(to bottom, #ee7a7a 0%, #d55f62 100%);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.trans-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trans-avatar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trans-avatar img {
    max-width: 40px;
}

.trans-detail-label h5 {
    margin: 0px;
    font-weight: bold;
    font-size: 13px;
}

.trans-detail-label span {
    color: #616c76;
}

.trans-detail-amt {
    font-weight: bold;
    font-size: 15px;
}

.step-nav.his-tf-step {
    max-width: 170px;
}

.step-nav.his-tf-step li:nth-child(1):before {
    width: 100%;
}

.step-nav.his-tf-step li:nth-child(2):before {
    width: 0px;
}

.trans-date-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trans-date-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trans-start {
    color: #616c76;
}

/* end history page  */

/* bet record page */
.bet-wrap {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.bet-list {
    display: flex;
    padding: 5px 0px;
}

.bet-list-detail {
    display: grid;
    align-items: center;
    grid-template-rows: 50% 50%;
    gap: 5px;
    text-align: end;
    padding: 0px 5px;
}

.bet-list-label {
    color: #616c76;
}

.bet-list-detail .green {
    color: #136d51;
}

.wheel ul {
    padding: 0px;
}

.bet-table {
    position: relative;
}

.bet-table .table {
    font-size: 12px;
    vertical-align: middle;
    text-align: center;
}

.bet-table .title-green-border {
    top: 7px;
    height: 20px;
}

.bet-table .table thead th {
    background-color: #eef3f0;
    color: #888888;
    font-weight: normal;
    vertical-align: middle;
}

.bet-table .table thead th:first-child {
    border-top-left-radius: 10px;
}

.bet-table .table thead th:last-child {
    border-top-right-radius: 10px;
}

.bet-table .table tbody tr {
    border: transparent;
}

.bet-table .table tbody tr td.green {
    color: #136d51;
}

.bet-table .table tbody tr td.red {
    color: red;
}

.bet-table .table tbody tr td {
    white-space: nowrap;
}

/* end bet record page */

/* voucher page */
.voucher-wrap {
    padding: 10px 10px 15px;
}

/* end voucher page */

/* referral page */
.ref-tab .nav {
    justify-content: space-around;
    padding: 0px 0px 20px;
    border: none;
}

.ref-tab .nav-tabs .nav-link {
    border: none;
    color: #616c76;
}

.ref-tab .nav-tabs .nav-item.show .nav-link,
.ref-tab .nav-tabs .nav-link.active {
    border: none;
    font-weight: bold;
    color: #136d51;
}

.ref-tab .nav-tabs .nav-link.active::after {
    content: "";
    display: block;
    width: 50%;
    height: 5px;
    border-bottom: 2px solid #136d51;
    margin: 0px auto;
}

.ref-wrap {
    padding: 10px;
    color: #616c76;
}

.ref-by-wrap {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 15px 0px 10px;
}

.ref-by-box h5 {
    color: #000;
    font-weight: bold;
    font-size: 17px;
}

.ref-copy-box button {
    background: none;
    top: -3px;
    right: -5px;
    max-width: 50px;
}

.ref-qr {
    padding: 20px 10px;
}

.ref-qr span {
    display: block;
    padding: 10px 0px;
}

.ref-qr img {
    max-width: 150px;
    margin: auto;
}

/* end referral page */

/* help page */
.help-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 10px 10px 15px;
}

.help-list-box {
    color: #000;
    display: grid;
    align-items: center;
    grid-template-rows: 50% 50%;
    gap: 5px;
    margin: auto;
}

.help-list-box img {
    max-width: 30px;
    margin: auto;
}

.help-acc {
    padding: 5px 0px;
}

.help-acc .accordion {
    border: none;
    border-radius: 0px;
}

.help-acc .accordion-item:first-of-type .accordion-button,
.help-acc .accordion-item:first-of-type {
    border-radius: 0px;
}

.help-acc .accordion-item {
    border: none;
}

.help-acc .accordion-button {
    color: #000;
    font-size: 13px;
    padding: 10px;
}

.help-acc .accordion-button img {
    max-width: 35px;
    padding-right: 5px;
}

.help-acc .accordion-button:focus {
    outline: none !important;
    border: none;
    box-shadow: none;
}

.help-acc .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000;
}

.help-acc .accordion-body {
    font-size: 13px;
    background: #fafafa;
    /* text-align: end; */
    padding: 0px;
}

.help-inner-link {
    color: #616c76;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 15px;
    margin-left: 30px;
}

.help-inner-link span {
    display: block;
    padding: 10px 0px;
}

.help-inner-link i {
    font-size: 15px;
}

.help-acc .accordion-button::after {
    content: "\f106";
    font-family: FontAwesome;
    transform: rotate(180deg);
    background-image: none;
    font-size: 15px;
    color: #616c76;
    position: absolute;
    right: 13px;
    top: 13px;
}

.help-acc .accordion-button:not(.collapsed)::after {
    content: "\f107";
    font-family: FontAwesome;
    transform: rotate(180deg);
    background-image: none;
}

.help-faq-more {
    text-align: center;
    display: block;
    padding: 10px 0px;
    color: #616c76;
}

/* end help page */

/* faq page */
.faq-wrap {
    padding: 10px;
}

.faq-wrap h5 {
    font-weight: bold;
    font-size: 13px;
}

.faq-wrap ol {
    color: #616c76;
    padding-left: 15px;
}

.faq-like {
    display: flex;
    justify-content: end;
    gap: 20px;
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
}

.faq-like-box {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #616c76;
    font-weight: bold;
}

.faq-like-box img {
    max-width: 20px;
}

/* end faq page */

/* about us page */
.about-logo {
    text-align: center;
    max-width: 200px;
    margin: auto;
    padding: 20px 0px;
}

.about-logo span {
    display: block;
    font-weight: bold;
    font-size: 15px;
    padding-top: 10px;
}

.about-wrap {
    padding: 10px;
}

.about-wrap p {
    color: #616c76;
    text-align: center;
}

.about-title {
    text-align: center;
    font-weight: bold;
}

.about-license {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0px;
}

.about-license img {
    max-width: 100px;
    max-height: 50px;
}

/* end about us page */

/* tnc page */
.tnc-wrap a {
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #000;
    padding: 10px;
}

.tnc-wrap a:last-child {
    border-bottom: none;
}

.tnc-wrap i {
    color: #616c76;
}

.tnc-detail-wrap {
    padding: 0px 10px 10px;
    line-height: 1.4;
}

.tnc-detail-wrap ol {
    padding-left: 15px;
    font-weight: bold;
}

.tnc-detail-wrap ul {
    padding-left: 5px;
    font-weight: normal;
    color: #616c76;
}

.tnc-detail-wrap span {
    font-weight: bold;
    padding: 10px 0px;
    display: block;
}

ul.first-marker {
    list-style-type: square;
}

ul.first-marker ul {
    list-style-type: none;
}

ul.first-marker ul li:before {
    content: "-";
    padding-right: 5px;
}

ul.first-marker ul ul {
    list-style-type: none;
}

ul.first-marker ul ul li:before {
    content: "-";
    padding-right: 5px;
}

.tnc-detail-wrap li:not(:last-child) {
    margin-bottom: 10px;
}

/* end tnc page */

/* policy page */
.policy-wrap {
    padding: 10px 15px 15px;
    color: #616c76;
}

/* end policy page */

/* how to deposit page */
.nav.how-tab {
    width: 100%;
    justify-content: center;
}

.how-tab .nav-item {
    display: flex;
    width: 33.33%;
    justify-content: center;
    padding: 0px 5px;
}

.nav-pills.how-tab .nav-link {
    background: #f7f8f9;
    color: #616c76;
    border-bottom: 1px solid #bcdacd;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    box-shadow: #136d51 2px 2px 8px -4px;
}

.nav-pills.how-tab .nav-link.active,
.nav-pills.how-tab .show>.nav-link {
    background: linear-gradient(to bottom, #4fc58b 0%, #1e9252 12%, #1d8f4d 50%, #76ba93 100%);
    box-shadow: #136d51 2px 2px 8px -4px;
    color: #fff;
}

.how-content {
    text-align: center;
    padding: 40px 0px 30px;
}

.how-content .carousel-indicators {
    bottom: -55px
}

.how-content .carousel-indicators [data-bs-target] {
    border-radius: 22px;
    height: 5px;
    background: #b8b8b8;
    border: 1px solid #b8b8b8;
    width: 15px;
}

.how-content .carousel-indicators .active {
    background: linear-gradient(to bottom, #71dc92 0%, #33ab5b 60%, #79e39a 100%);
    border: 1px solid #79e39a;
    width: 30px;
}

.how-content .swiper-wrapper {
    padding-bottom: 10%;
}

.how-content .swiper-pagination-bullet {
    border-radius: 22px;
    height: 5px;
    background: #b8b8b8;
    border: 1px solid #b8b8b8;
    width: 15px;
}

.how-content .swiper-pagination-bullet-active {
    background: linear-gradient(to bottom, #71dc92 0%, #33ab5b 60%, #79e39a 100%);
    border: 1px solid #79e39a;
    width: 30px;
}

/* end how to deposit page */

/* promotion page */
.promo-wrap {
    padding: 20px 10px;
}

.promo-wrap .nav {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding: 0px 0px 0px;
    border: none;
    gap: 7px;
}

.promo-wrap .nav-tabs .nav-link {
    background: #ffffff;
    color: #788b9d;
    /* border-bottom: 1px solid #bcdacd; */
    width: 100%;
    /* border-radius: 10px; */
    padding: 6px 5px;
    white-space: nowrap;
    /* min-width: 83px; */
    border: none;
    font-size: 16px;
    text-overflow: ellipsis;
}

.promo-wrap .nav-tabs .nav-item.show .nav-link,
.promo-wrap .nav-tabs .nav-link.active,
.promo-wrap .nav-tabs .nav-link:active {
    color: #c28648;
}

.promo-box {
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #788b9d;
    gap: 6px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

.promo-box img {
    width: 41px;
}

.promo-detail h5 {
    color: #000;
    font-weight: bold;
    font-size: 15px;
}

.promo-time {
    color: #616c76;
}

.promo-time span {
    color: #51c2a3;
}

.green-btn.promo {
    white-space: nowrap;
    padding: 8px 15px;
}

.promo-tab-content a {
    display: block;
}

.promo-detail-box {
    padding: 10px;
}

.promo-detail-time {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 20px;
}

.promo-time-title {
    color: #616c76;
    font-weight: bold;
}

.promo-time-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.promo-day-box {
    background: #fff;
    box-shadow: #0d6efd 2px 2px 8px -4px;
    border-bottom: 2px solid #d6e6d7;
    color: #DEB361;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
}

.promo-day-label {
    color: #808ea8;
    padding-top: 5px;
    text-align: center;
    font-size: 11px;
}

.promo-hour-box {
    background: #fff;
    box-shadow: #0d6efd 2px 2px 8px -4px;
    border-bottom: 2px solid #d6e6d7;
    color: #DEB361;
    font-weight: bold;
    padding: 10px;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    gap: 10px;
}

.promo-hour-label {
    display: flex;
    justify-content: center;
    color: #808ea8;
    padding-top: 5px;
    font-size: 11px;
    gap: 14px;
}

.promo-hour-label span:nth-child(2) {
    padding-right: 4px;
}

.promo-detail-box h4 {
    font-weight: bold;
    font-size: 16px;
}

.promo-detail-box h5 {
    font-weight: bold;
    font-size: 15px;
    color: #DEB361;
}

.promo-detail-box ol {
    color: #616c76;
    padding-left: 15px;
    line-height: 1.4;
}

.promo-table table {
    vertical-align: middle;
    text-align: center;
}

.promo-table thead tr th {
    background: #DEB361;
    color: #fff;
    vertical-align: middle;
    border: 1px solid #fff;
}

.promo-table thead tr th:first-child,
.promo-table tbody tr td:first-child {
    text-align: left;
}

.promo-table tbody tr {
    background: #f7f7f7;
    border: 1px solid #fff;
}

/* end promotion page */

/* vip page */
.vip-al-wrap {
    padding: 120px 0px 0px;
    background: url(../images/account/vip/privilege/vip-bg-1-normal.png) no-repeat;
    background-size: 100% 100%;
}

.vip-top {
    position: relative;
    padding-top: 45px;
    background: url(../images/vip/bg.png) no-repeat top center;
    background-size: cover;
}

.vip-top-div {
    height: 40px;
}

.vip-top-intro {
    margin: auto;
    text-align: center;
    padding: 10px;
    padding-top: 65%;
}

.vip-top-intro h4 {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.vip-top-intro h5 {
    font-size: 14px;
    color: #fff;
}

.vip-top-intro p {
    color: #aeaeae;
}

.vip-wrap {
    padding: 10px;
}

.vip-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
}

.vip-title h4 {
    color: #136d51;
    font-size: 16px;
    font-weight: bold;
}

.vip-title h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.vip-title span {
    color: #616c76;
}

.vip-title img {
    max-width: 100px;
    margin: auto;
}

.vip-wrap .carousel-control-prev-icon,
.vip-wrap .carousel-control-next-icon {
    background-image: none;
    color: #000;
    font-size: 20px;
    width: auto;
    height: auto;
}

.vip-wrap .carousel-control-next {
    position: relative;
}

.vip-wrap .carousel-control-prev {
    position: relative;
}

.vip-img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.vip-detail {
    padding: 10px;
}

.vip-box-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #d6e6d7;
}

.vip-box-inner-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
}

.vip-box-inner-wrap img {
    max-width: 50px;
}

.vip-bnf {
    color: #616c76;
    font-size: 12px;
    width: 50%;
}

.vip-bnf span {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    display: block;
    padding-bottom: 3px;
}

.vip-pri-table {
    padding-top: 10px;
}

.vip-pri-title {
    font-weight: bold;
    padding: 15px 0px 10px;
}

.vip-pri-title:first-child {
    padding-top: 5px;
}

.vip-pri-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.vip-pri-row span:first-child {
    color: #616c76;
}

.vip-pri-row span:last-child {
    color: #136d51;
    font-weight: bold;
}

.vip-wrap .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* end vip page */

/* afterlogin vip benefit page */
.vip-rebate {
    padding: 10px;
    color: #616c76;
}

.vip-rebate .table thead tr th {
    background: #cbd5d1;
    color: #616c76;
    font-weight: normal;
    vertical-align: middle;
    text-align: center;
}

.vip-rebate .table thead th:first-child {
    border-top-left-radius: 10px;
    text-align: left;
    padding-left: 15px;
}

.vip-rebate .table thead th:last-child {
    border-top-right-radius: 10px;
}

.vip-rebate .table tbody tr:nth-of-type(even) {
    background: #eef3f0;
}

.vip-rebate .table tbody tr td {
    border: none;
    vertical-align: middle;
    text-align: center;
}

.vip-rebate .table tbody tr td:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vip-rebate .table tbody tr td img {
    max-width: 30px;
}

.vip-rebate .table tbody tr td:first-child {
    font-weight: bold;
}

.vip-al-tnc {
    padding: 10px;
}

.vip-al-tnc ol {
    padding-left: 15px;
    color: #616c76;
    line-height: 1.4;
}

.vip-rebate-active {
    background: linear-gradient(to bottom, #e9fef1 0%, #b3ebc4 100%);
    position: relative;
    color: #136d51;
    font-weight: bold;
}

.vip-green-box {
    position: absolute;
    background: linear-gradient(to bottom, #e9fef1 0%, #b3ebc4 100%);
    left: -3px;
    height: 100%;
    width: 5px;
    top: 1px;
}

.vip-green-box-1 {
    position: absolute;
    background: linear-gradient(to bottom, #e9fef1 0%, #b3ebc4 100%);
    right: -4px;
    height: 100%;
    width: 5px;
    top: 1px;
}

.vip-lvl-bar {
    padding-top: 20px;
    position: relative;

}

.vip-lvl-badge {
    /* position: relative; */
    max-width: 100%;
}

.vip-lvl1 {
    display: block;
    position: absolute;
    left: 47%;
    top: -4%;
    color: #000;
    font-weight: bold;
}

.vip-lvl2 {
    display: block;
    position: absolute;
    right: 15%;
    top: 15%;
    color: #000;
    font-weight: bold;
}

.vip-lvl-bar span.active {
    color: #136d51;
}

.vip-lvl1.gold {
    left: 48%;
}

.vip-lvl2.plat,
.vip-lvl2.diamond {
    right: 15%;
}

.vip-bnf-lvl {
    background: url(../images/account/vip/privilege/tag-current.png) no-repeat;
    background-size: 100% 100%;
    padding: 10px 20px;
    color: #fff;
    position: absolute;
    top: 35px;
    left: 11px;
}

.vip-bnf-lvl.lock {
    background: url(../images/account/vip/privilege/tag-locked.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 30px;
}

.vip-bnf-content {
    position: absolute;
    top: 45%;
    left: 30px;
    color: #808ea8;
}

.vip-bnf-content img {
    max-width: 150px;
    padding-bottom: 10px;
}

.vip-bnf-word span {
    color: #136d51;
    font-weight: bold;
}

.vip-al-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 0;
}

.swiper.vip-al-swiper {
    position: relative;
    text-align: center;
    padding: 10px 20px 10px;
    z-index: 0;
}

.vip-al-swiper .swiper-button-next::after,
.vip-al-swiper .swiper-button-prev::after {
    content: "";
}

.vip-al-swiper .swiper-button-next {
    content: "";
    background: url(../images/account/vip/privilege/ARROW_NEXT\ GAME.png) no-repeat;
    background-size: 100% 100%;
    width: 10px;
    height: 20px;
    color: transparent;
    z-index: 0;
    right: 0px;
}

.vip-al-swiper .swiper-button-prev {
    content: "";
    background: url(../images/account/vip/privilege/ARROW_PREVIOUS\ GAME.png) no-repeat;
    background-size: 100% 100%;
    width: 10px;
    height: 20px;
    color: transparent;
    z-index: 0;
    left: 0px;
}

.vip-bnf-wrap {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.vip-pri-content {
    margin: 10px 10px 30px;
}

.my-vip-note {
    background: #e1e9de;
    border-radius: 20px;
    padding: 5px 20px;
    text-align: center;
    width: 75%;
    margin: auto;
    font-size: 12px;
}

.my-vip-note span {
    color: #136d51;
    font-weight: bold;
}

.vip-bnf-bg {
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    padding: 5px;
    margin-top: 10px;
    box-shadow: #808ea8 2px 2px 8px -4px;
}

.vip-lvl-badge,
.vip-bnf-bg {
    display: none !important;
}

.vip-lvl-badge.show,
.vip-bnf-bg.show {
    display: block !important;
}

/* end afterlogin vip benefit page */

.slide_index {
    padding: 0 15px;
}

.slide_indexcarousel {
    border-radius: 10px;
}

.top-header-custom {
    /* grid-template-columns: auto; */
    /* min-height: 46px; */
}

.index-login-btn {
    color: #788b9d;
}

.btm_lang_wrap_btm {
    margin-top: 11px;
    background-color: #fff;
    min-height: 38vh;
    height: calc(30vh - 100px);
    overflow: scroll;
}

.btm_lang_wrap_top {
    padding: 20px 15px;
    font-size: 16px;
    color: #DEB361;
    background-color: #fff;
    position: relative;
    width: 100%;
    top: 0px;
}

.btm_lang_wrap_btm_box {
    padding: 20px 15px;
    border-bottom: 1px solid #eeeeee70;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.lang_sel {
    width: 30px;
    height: 30px;
    position: relative;
}

.lang_sel.hover::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    border-right: 2px solid #DEB361;
    border-bottom: 2px solid #DEB361;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.btm_lang_wrap_btm_box span {
    font-size: 16px;
}

.modal.bottom .modal-body.modal_lang_btm {
    padding: 0;
}

.modal.bottom .modal-content {
    border-radius: 15px 15px 0 0;
}

.btm_lang_wrap {
    background-color: #f4faff;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
}

.lang_top_box {
    border: 1px solid #8592b9;
    border-radius: 25px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: .16rem;
    position: relative;
    color: #8592b9;
    padding-right: 17px;
}

.lang_top_box:before {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-bottom: 0;
    border-top-color: #788b9d;
    border-radius: 3px;
}

.index_menu_wrap {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 75px;
}

.index_menu_tab_wrap {
    width: 100%;
    max-width: 20%;
    height: 100%;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 5px;
}

/* Custom scrollbar for menu tab wrap */
.index_menu_tab_wrap::-webkit-scrollbar {
    width: 4px;
    display: none;
}



.index_menu_tab_wrap ul {
    flex-direction: column;
    grid-gap: 10px;
    display: flex;
    padding: 0;
    list-style: none;
}


/* Style the buttons that are used to open the tab content */
.tablinks {
    background: linear-gradient(to bottom, #ffffff 0%, #eff3ff 49%, #ffffff 100%) !important;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    width: 100%;
    /* height: 57px; */
    color: #8894b9;
    /* border-radius: 15px; */
    border: 1px solid #dbe7fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 3px 2px -1px #aab5d1;
}



/* Create an active/current tablink class */
.tablinks.active,
.tablinks:hover {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%) !important;
    border: 1px solid transparent;
    box-shadow: 0px 3px 2px 0px #00000069;
}

.tablinks.active img,
.tablinks:hover img {
    filter: brightness(0) invert(1);
}

/* Style the tab content */
.index_menutab .tabcontent {
    display: none;
    /* padding: 6px 12px; */
    /* border: 1px solid #ccc; */
    /* border-top: none; */
}

.index_menu_tab_contentwrap {
    width: 100%;
    overflow: scroll;
    height: calc(86vh - 250px);
}


.index_menutab .tab button img {
    margin: auto;
}

.index_menutab .tab button span {
    margin-top: 5px;
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
    max-width: 100%;
}

.index_menutab .tab button.active span,
.index_menutab .tab button:hover span {
    color: #fff;
}

.index_position {
    /* position: fixed; */
    /* max-width: 768px; */
    /* width: 100%; */
}

.index_hotgame_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
}

.index_hotgame_grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    background: #fff;
    box-shadow: 0 .1rem .1rem rgb(0 0 0 / 9%);
    border-radius: 6px;
    overflow: hidden;
}

.index_hotgame_grid a span {
    color: #000;
    padding: 5px 0;
}

.index_products_grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 5px;
}
  /* Custom scrollbar for mobile */
  .index_products_grid::-webkit-scrollbar {
    width: 4px;
}

.index_products_grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.index_products_grid::-webkit-scrollbar-thumb {
    background: #d7b28c;
    border-radius: 10px;
}

.index_products_grid::-webkit-scrollbar-thumb:hover {
    background: #c5a078;
}


.index_products_select {
    position: relative;
}

.index_products_textbox {

    text-transform: uppercase;

    position: absolute;

    top: 14px;

    left: 20px;
}

.index_products_textbox p {

    margin: 0;

    font-size: 21px;
}

.index_products_textbox span {

    color: #93a2b1;

    font-size: 10px;
}

.index_products_select img {
    width: 100%;
    box-shadow: 0 .04rem .16rem rgba(121, 129, 164, .1);
    border-radius: 10px;
    border: 1px solid #d7b28c;
}

.acc_right_head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acc_right_head a img {
    width: 25px;
}

.acc_left_head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.acc_vip_wrap {
    margin-bottom: 11px;
    padding: 10px 12px;
    border: 1px solid #f1f3f5;
    border-radius: 10px;
}

.acc_vip_word {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 6px; */
}

.acc_vip_word span {

    color: #788b9d;

    font-size: 11px;
}

.vip_acc_auth {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.auth_row {
    display: flex;
    align-items: center;
    color: #788b9d;
    font-size: 11px;
    gap: 1px;
    line-height: normal;
}

.auth_row img {
    width: 13px;
}

.acc_money_wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.acc_money_wrap img {
    width: 17px;
}

.acc_money_wrap_title {

    display: flex;

    gap: 7px;

    align-items: center;
}

.acc_money_wrap_amt {

    font-size: 19px;
}

.acc_wallet_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-link a img {
    width: 37px;
}

.eye_show {
    background: url(../images/account/eye.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.eye_show.active {
    background: url(../images/account/eye_close.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.about_box {
    background-color: #fff;
    border-radius: 10px;
    padding: 0px 20px;
    margin-top: 10px;
    box-shadow: 0 .04rem .16rem rgba(218, 236, 234, .4);
}

.about_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 49px;
    border-bottom: 1px solid #f1f3f5;
}

.about_left {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #000;
}

.about_left img {
    width: 20px;
}

.about_right img {
    width: 8px;
}

.user-box-title {
    font-weight: 700;
    color: #30383f;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.pay-list ul {
    margin: 0;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 10px;
}

.pay-list li {
    position: relative;
    width: 30%;
    height: 74px;
    border: 1px solid #f4faff;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    /* margin: 0 12px 12px 0; */
    cursor: pointer;
    background: #f4faff;
}

.hover-target,
.pay-list .nav-tabs li.active,
.usdt-type-list.nav-tabs li.active {
    border: 1px solid #DEB361 !important;
}

.hover-target:before,
.pay-list .nav-tabs li.active:before,
.usdt-type-list.nav-tabs li.active:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border: 10px solid transparent;
    border-right: 10px solid #DEB361;
    border-bottom: 10px solid #DEB361;
    border-radius: 0 0 6px 0;
}

.pay-list .nav-tabs,
.usdt-type-list.nav-tabs {
    border-bottom: 0px;
}

.pay-list li .img {
    width: 32px;
    height: 32px;
}

.pay-list li .name {
    line-height: 1.5;
    max-width: 120px;
    overflow: hidden;
    font-size: 11px;
    color: #788b9d;
}

.pay-list li .gift {
    font-size: 11px;
    height: 16px;
    line-height: 16px;
    max-width: 100px;
    overflow: hidden;
    color: #e95b5b;
    margin: 0px;
}

.hover-target:after,
.pay-list .nav-tabs li.active:after,
.usdt-type-list.nav-tabs li.active:after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    z-index: 2;
    border-radius: 2px;
}

.pay-list li .hots {
    width: 28px;
    height: 16px;
    position: absolute;
    right: -5px;
    top: -5px;
}

.user-box {
    margin-bottom: 25px;
    width: 100%;
}

.usdt-step {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(152, 161, 182, .04);
    background-color: #fff;
    padding: 16px 24px;
    margin-bottom: 16px;
    flex: none;
}

.usdt-step strong {
    font-weight: 400;
    font-size: 14px;
    color: #179cff;
    margin-bottom: 10px;
    display: block;
}

.usdt-step ul {
    width: 580px;
    height: 32px;
    background: url(../images/afterlogin/deposit/step.png) no-repeat 0;
    background-size: cover;
    background-size: contain;
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.usdt-step ul li {
    color: #179cff;
    font-size: 12px;
    width: 140px;
    text-align: center;
}

.user-box-title .sec {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    color: #30383f;
}

.user-box-title .sec img {
    width: 20px;
    margin-right: 2px;
}

.usdt-type-list {
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 0px;
    margin-top: 12px;
}

.usdt-type-list li {
    width: 100px;
    height: 36px;
    border-radius: 8px;
    background: #f3faff;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-right: 0px;
}

.user-pay-money {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    margin-top: 12px;
    margin-bottom: -12px;
}

.user-pay-money li {
    /* margin-bottom: 12px; */
    /* margin-right: 8px; */
    width: auto;
    padding: 0px 10px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #f4faff;
    background-color: #f4faff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #30383f;
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
}

.pay-input {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    /* line-height: 42px; */
    width: 344px;
    height: 42px;
    background: #f4faff !important;
    border-radius: 12px;
    margin: 7px 0;
    color: #30383f;
    border: 1px solid #f4faff !important;
    margin-top: 16px;
}

.pay-input i {
    color: #788b9d;
}

input.pay-input {
    border: none;
    padding: 0 12px;
}

.pay-gray-tips,
.pay-red-tips {
    min-height: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #788b9d;
    margin-bottom: 12px;
}

.text-blue {
    color: #DEB361;
}

.dep-tips-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.blue-btn {
    color: #fff;
    background-color: #409eff;
    border: 1px solid #409eff;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
}

.blue-btn:hover {
    color: #fff;
    background: #66b1ff;
    border-color: #66b1ff;
}

.blue-btn.is-disabled,
.blue-btn.is-disabled:active,
.blue-btn.is-disabled:focus,
.blue-btn.is-disabled:hover {
    color: #fff;
    background-color: #a0cfff;
    border-color: #a0cfff;
}

.white-btn {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    border: 1px solid #a88663;
    color: #ffffff;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: unset;
    min-width: 125px;
}

.white-btn:hover {
    color: #e7e7e7;
    background: linear-gradient(to bottom, #d4a982 0%, #a88663 100%);
    border-color: #a88663;
}

.pay-red-tips {
    color: #e95b5b;
    margin-top: 12px;
}

.btn_sub_row {
    text-align: center;
    margin: 20px 0;
}

.dep_btm_box {
    background: #f4faff;
    border-radius: 10px;
    padding: 10px;
}

.dep_btm_box_tech {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.dep_btm_box_tech button {

    background: #fff;

    border-radius: 30px;

    border: none;

    padding: 5px 10px;

    width: 50%;

    margin: auto;
}

.dep_btm_box_tech button img {

    width: 26px;
}

/* how to deposit modal */
#how-dep-modal .modal-dialog {
    max-width: 900px;
}

#how-dep-modal .modal-content {
    background: #fff;
    border: none;
    border-radius: 12px;
}

.how-dep-header {
    padding: 20px 10px;
    background: #fff;
    border-radius: 10px 10px 0px 0px;
    border-bottom: 1px solid #f2f2f6;
}

.how-dep-header h5 {
    color: #000;
    text-align: center;
    margin: 0px;
}

.how-dep-header .btn-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    font-size: 25px;
    color: #adadad;
}

.how-dep-content .nav {
    margin-bottom: 10px;
}

.how-dep-content .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #f1f3f5;
    width: 250px;
    text-align: left;
    position: relative;
}

.how-dep-content .dropdown-toggle::after {
    position: absolute;
    right: 9px;
    top: 6px;
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    color: #adadad;
    border: none;
    font-weight: 900;
}

.how-dep-content .dropdown-item {
    display: flex;
    gap: 5px;
    align-items: center;
}

.how-dep-content .dropdown-item img {
    max-width: 20px;
}

.how-dep-content .dropdown-menu {
    width: 250px;
}

.how-dep-content .dropdown-menu .nav-link {
    padding: 10px;
    color: #606266;
}

.how-dep-content .dropdown-toggle img {
    display: none;
}

.how-dep-content .dropdown-item.active,
.how-dep-content .dropdown-item:active {
    background: #f5f7fa;
    color: #409eff;
    border-radius: 0px;
}

.how-dep-wrap {
    max-height: 500px;
    overflow-y: scroll;
    padding: 0px 10px;
}

/* end how to deposit modal */


/* deposit tutorial page */
.user-main1 {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 16px 36px
}

.defalut-reture {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: #303442;
    display: flex;
    align-items: center;
    cursor: pointer
}

.defalut-reture img {
    height: 20px
}

.intro-title {
    width: 100%;
    text-align: center;
    margin: 30px auto
}

.intro-title img {
    height: 40px
}

.intro-li ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.intro-li li {
    text-align: left;
    font-size: 14px;
    color: #494d62;
    margin-bottom: 18px;
    padding: 5px 0 5px 32px;
    position: relative
}

.intro-li li:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    background-image: url(../images/afterlogin/deposit/tutorial/link.png);
    background-size: cover;
    background-position: 50%
}

.intro-url li,
.intro-url ul {
    display: flex;
    align-items: center
}

.intro-url ul {
    justify-content: space-between;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    gap: 5px;
}

.intro-url li {
    width: 290px;
    height: 250px;
    background: #f7f9fb;
    padding: 13px 24px 0;
    flex-direction: column
}

.intro-url li img {
    width: 114px;
    height: 114px
}

.intro-url li span {
    font-weight: 700;
    font-size: 18px;
    color: #494d62;
    padding: 3px 0
}

.intro-url li p {
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
    color: #494d62;
    margin-top: 16px
}

.intro-info {
    justify-content: space-between;
    padding: 40px
}

.intro-info,
.intro-info-row {
    display: flex;
    align-items: center
}

.intro-info-row .img {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: #494d62
}

.intro-info-row .img img {
    /* width: 72px;
    height: 72px; */
    margin-bottom: 10px
}

.intro-info-row .main img {
    height: 24px;
    margin-top: 8px
}

.intro-playte {
    background: #f7f9fb;
    height: 100px;
    justify-content: space-between;
    padding: 0 50px
}

.intro-playte,
.intro-playte .left {
    display: flex;
    align-items: center
}

.intro-playte .icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    background-size: 166px 40px;
    background-image: url(../images/afterlogin/deposit/tutorial/usdt.png);
    background-position: -42px 0
}

.intro-playte .name {
    font-size: 18px;
    font-weight: 700;
    color: #494d62
}

.intro-playte .sec {
    width: 444px;
    font-size: 14px;
    line-height: 1.71;
    color: #494d62;
    text-align: left;
    margin-left: 30px
}

.intro-playte .view {
    text-align: center;
    width: 120px;
    height: 40px;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    background: #179cff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center
}

.intro-text {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #494d62;
    padding: 16px 0 30px 0
}

.dir-step .dir-row-step {
    text-align: center;
    font-size: 18px;
    color: #30383f;
    font-weight: 700;
    padding: 10px 0;
}

/* end deposit tutorial page */
.transfer_wraptop {
    width: 100%;
    background: #f4faff;
    border-radius: 10px;
    padding-bottom: 10px;
}

.transfer-info {
    min-height: 2.6rem;
    width: 100%;
    padding: 15px 12px;
    border-radius: 14px;
    margin-bottom: 10px;
    box-shadow: 0 .08rem .32rem rgb(0 0 0 / 50%);
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
}

.transfer-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .16rem;
}

.transfer-info-row .left {
    color: hsla(0, 0%, 100%, .6);
    font-size: 13px;
}

.transfer-info-row .left .money {
    font-size: 22px;
    display: block;
    color: #fff;
}

.transfer-info-row .right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, .2);
    border-radius: 20px;
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    gap: 4px;
}

.transfer-info-row .right img {
    width: 15px;
}

.transfer-info-row-two {
    display: flex;
    margin-top: 15px;
}

.transfer-info-row-two-inn {
    display: flex;
    flex-direction: column;
    color: hsla(0, 0%, 100%, .6);
    font-size: 12px;
    position: relative;
    padding-right: 37px;
}

.transfer-info-row-two-text {
    font-size: 16px;
    color: hsla(0, 0%, 100%, .8);
    margin-top: 4px;
}

.transfer-info-row-two-inn[data-inforow]::before {
    content: "";
    width: .02rem;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: hsla(0, 0%, 100%, .2);
}

.transfer-balance {
    display: flex;
    align-items: center;
    color: #606f7e;
    border-bottom: 1px solid #f1f3f5;
    gap: 5px;
    padding: 5px 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 16px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.tf-switch .switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.tf-switch .switch-slider:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 2px;
    left: 2px;
    background-color: white;
    transition: all .3s;
}

input:checked+.switch-slider {
    background-color: #2196F3;
}

input:focus+.switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.switch-slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px);
}

.switch-slider.round {
    border-radius: 34px;
}

.switch-slider.round:before {
    border-radius: 50%;
}

.transfer-money-list {
    margin-top: 10px;
}

.transfer-money-list ul {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 16px;
}

.transfer-money-list ul li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: .16rem 0;
    width: calc(100% / 4);
    position: relative;
    text-align: center;
    margin-bottom: 12px;
}

.transfer-money-list ul li span {

    color: #aeb9c4;
}

.transfer-money-list ul li p {

    margin: 0;

    color: #93a2b1;

    font-weight: bold;
}

.transfer-money-list ul li::before {
    content: "";
    width: 1px;
    height: 19px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #f1f3f5;
}

.transfer_auto_wrap {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f3f5;
    font-size: 15px;
    margin-top: 18px;
    padding-bottom: 5px;
    font-weight: 800;
}

.transfer-cv-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.transfer-cv-left {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #788b9d;
}

.transfer-cv-left img {

    margin: 5px 0;

    width: 13px;
}

.transfer-cv {
    margin: 0 .3rem;
    flex: 1;
}

.transfer-cv-row {
    display: flex;
    align-items: center;
    height: 45px;
    border-bottom: .02rem solid #f1f3f5;
}

.transfer-cv-row-icon {
    background: rgba(37, 153, 248, .1);
    /* width: 10px; */
    /* height: 10px; */
    /* line-height: .4rem; */
    border-radius: 2px;
    color: #DEB361;
    text-align: center;
    font-size: 12px;
    padding: 3px;
}

.transfer-cv-row-icon1 {
    background: rgba(74, 176, 106, .1);
    color: #4ab06a;
    border-radius: 2px;
    text-align: center;
    font-size: 12px;
    padding: 3px;
}

.transfer-cv-row-text {
    font-weight: 700;
    font-size: 14px;
    line-height: .4rem;
    color: #30383f;
    flex: 1 1;
    margin: 0 5px 0 10px;
}

.transfer-cv-row-arrow {
    width: 10px;
}

.transfer-cv-right img {
    width: 25px;
}

.trannotis {
    margin-top: 10px;
    color: #788b9d;
}

.transfer_auto_wrap_cus {
    border-bottom: none;
    margin-top: 25px;
}

.user-pay-money-custom {
    margin: 0;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 10px;
}

.user-pay-money-custom li {
    width: 22%;
}

.transfer-input-money {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
}

.transfer-input-money .all-in {
    position: absolute;
    right: 14px;
    top: 56%;
    transform: translateY(-50%);
    font-family: PingFang SC;
    font-size: 14px;
    line-height: 24px;
    color: #DEB361;
    cursor: pointer
}

.transfer-input-money .unit {
    position: absolute;
    right: 56px;
    top: 56%;
    padding-right: 12px;
    transform: translateY(-50%);
    color: #788b9d;
}

.transfer-input-money .unit:before {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: #dcdcdc;
    transform: translateY(-50%)
}

.btm-tran-cus {
    text-align: center;
    font-size: 13px;
    color: #788b9d;
}

.btm_lang_wrap_top span {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    color: #000;
}

.transfer-details-wrap {
    border-top: 10px solid #f4faff;
    padding: 6px 0 10px 0;
}

.top-short-wrap-transfer {
    padding: 46px 0 20px;
}

.accordion_a {
    color: #30383f;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-weight: 600;
    padding: 13px 27px 13px 15px;
    border: none;
    text-align: left;
    border-bottom: 1px solid #efefef;
    background-color: transparent;
}

.accordion_a.collapsed {
    color: #30383f;
}

.accordion_a.collapsed:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    transform: rotate(0);
    transition: linear 0.3s;
    color: #969696;
    font-size: 14px;
}

.accordion_a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: #969696;
    width: 12px;
    font-size: 14px;
    height: 22px;
    position: absolute;
    right: 13px;
    top: 17px;
    transform: rotate(90deg);
    transition: linear 0.3s;
}

hr {
    border-top: 1px solid #ebebeb;
    opacity: 1;
}

.collapse_custom {

    padding: 13px 30px 10px 30px;

    font-size: 13px;
}

.collapse_custom p {

    margin-bottom: 5px;
}

.collapse_custom span.text-red {
    color: red;
}

.with_auto_wrap img {
    width: 10px;
}

.with_auto_wrap {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding-bottom: 15px;
}

.with_auto_wrap_inn {
    display: flex;
    align-items: center;
    line-height: normal;
    gap: 5px;
    font-weight: 400;
}

.text_title_with {
    font-weight: 800;
    font-size: 18px;
}

.with_addcard_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.with_addcard_wrapper .right {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #f4faff;
    color: #DEB361;
    padding: 4px;
    font-size: 14px;
}

.with_addcard_wrapper .left {

    font-weight: 600;

    font-size: 18px;
}

.collapse_custom p i {
    font-style: normal;
    margin-left: -14px;
    letter-spacing: 3px;
}

.top-short-header-bank {
    display: flex;
    flex-direction: column;
}

.top-short-header-bankone {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    width: 100%;
}

/* bank */
.bank-tab .nav {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0px 0px 20px;
    border: none;
}

.bank-tab .nav-tabs .nav-link {
    border: none;
    color: #616c76;
}

.bank-tab .nav-tabs .nav-item.show .nav-link,
.bank-tab .nav-tabs .nav-link.active {
    border: none;
    font-weight: bold;
    color: #136d51;
}

.bank-tab .nav-tabs .nav-link.active::after {
    content: "";
    display: block;
    width: 50%;
    height: 5px;
    border-bottom: 2px solid #136d51;
    margin: 0px auto;
}

.bank-type .nav {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding: 0;
    border: none;
    /* gap: 7px; */
    display: flex;
    background: #f4faff;
    width: 100%;
    border-radius: 10px;
}

.bank-type .nav-tabs .nav-link {
    /* background: #f7f8f9; */
    color: #616c76;
    /* border-bottom: 1px solid #bcdacd; */
    width: 100%;
    border-radius: 10px;
    padding: 8px 10px;
    /* box-shadow: #136d51 2px 2px 8px -4px; */
    white-space: nowrap;
    font-size: 12px;
}

.bank-type .nav-tabs .nav-item.show .nav-link,
.bank-type .nav-tabs .nav-link.active,
.bank-type .nav-tabs .nav-link:active {
    background: #fff;
    /* box-shadow: #136d51 2px 2px 8px -4px; */
    color: #000;
    border: 1px solid #f1f1f1;
}

.top-short-header-banktwo {
    width: 100%;
    margin: 10px 0 0 0;
}

.top-short-wrap-bank {
    padding: 103px 15px 20px;
}

.bodybank {
    background: #f4faff;
}

.bank_addtitle {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.bank_addimg {
    text-align: center;
    max-width: 70%;
    margin: auto;
}

.bank_tips_btm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.bank_tips_box {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 10px;
    gap: 6px;
}

.bank_tips_box p {

    margin: 0;

    color: #a5a5a5;

    font-size: 11px;
}

.bank_tips_box img {
    width: 45px;
    margin: auto;
}

.top-short-wrap-bankadd {

    padding: 58px 10px 20px;
}

.select-list ul,
.select-list ul li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.select-list ul li {
    width: 90px;
    height: 40px;
    line-height: 7px;
    border: 1px solid #f2f2f6;
    border-radius: 8px;
    margin-right: 16px;
    justify-content: center;
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

.select-list ul li img {
    width: 40px;
    margin-right: 6px;
}

.tips-text {
    font-size: 12px;
    color: #788b9d;
    padding-top: 20px;
}

.head_table_row {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 10px;
}

.head_table_button {
    width: 33.33%;
    font-size: 15px;
    background: #f4faff;
    color: #30383f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 35px;
}

.head_table_button .arrow {
    border: 6px solid transparent;
    border-top-color: #9ca4c3;
    border-bottom: none;
    border-radius: 5px;
    margin-left: 6px;
    position: relative;
    transition: all .2s;
}

.head_table_button.hover .arrow {
    transform: rotate(-180deg);
}

.table_row_select_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    text-align: center;
    /* border-top: 1px solid #e4e8eb; */
    padding: 5px 0;
    margin-top: 0px;
}

.table_row_box {
    border: 1px solid #e4e8eb;
    border-radius: 8px;
    font-size: 14px;
    color: #aeb9c4;
    padding: 8px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table_row_box.hover {
    background: #DEB361;
    border: 1px solid #DEB361;
    color: #fff;
}

.select-tips {

    font-size: 11px;

    color: #aeb9c4;

    margin-top: 15px;
}

.table_row_select {
    width: 100%;
}

.table_row_select {
    display: none;
}

.wf-table thead {
    color: #909399;
    font-weight: 500;
    /* background-color: #fff; */
}

.wf-table thead tr th {
    background: #f4faff;
    font-size: 12px;
    padding: 5px;
    font-weight: 400;
    border-bottom: 0;
    vertical-align: middle;
    color: #909399;
    border-bottom: 1px solid #e7e7e7;
}

.wf-table tbody tr {
    background-color: #fff;
}

.wf-table tbody tr td {
    border-bottom: 0;
    color: #606266;
    vertical-align: middle;
    /* max-width: 100%; */
    white-space: nowrap;
    min-width: 45px;
}

.wf-no-data {
    color: #909399;
    font-size: 14px;
    text-align: center;
}

.user-box:last-child {
    margin-bottom: 0;
    flex: 1 1;
}

.setting_box_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #f4faff;
    min-height: 48px;
}

.setting_box_row .arrow {
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 10pxrem;
}

.body_blue {
    background: #f4faff;
}

.setting_box {

    margin-top: 10px;
}

.setting_box_row .right {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #a5a9b3;
}

.setting_box_row_signout {

    justify-content: center;

    color: red;
}

.pf-check-main {
    /* min-height: 400px; */
    /* overflow-y: scroll; */
    padding: 0 15px;
    background: #fff;
}

.pf-modal .modal-content {
    background: #fff;
    border: none;
    border-radius: 12px;
}

.pf-modal .blue-btn {
    width: 100%;
    margin-top: 20px;
}

.pf-label {
    font-size: 14px;
    color: #606266;
    line-height: 40px;
}

.pass-form {
    position: relative;
    font-size: 14px;
    align-content: center;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.pf-form-wrap {
    margin-bottom: 10px;
}

.link-step-text {
    text-align: center;
    margin-top: 16px;
}

.wd-form input,
.pass-form input,
.wd-form select {
    border-radius: 4px;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    outline: 0;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
    border: none;
    border-bottom: 1px solid #f1f3f5;
    border-radius: 0;
    font-size: 16px;
    padding-left: 0;
}

.changepass_btn {
    padding: 15px 15px;
}

.top-short-wrap-inbox {

    padding: 0 15px 20px;
}

.top-short-wrap-inbox-top {

    padding: 60px 10px 0px;

    background: #fff;

    overflow: auto;
}

.nav-pills.inbox-tab .nav-link.active:after {
    transition: 0.2s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 2px;
    background-color: rgba(255, 0, 0, 0);
    width: 100%;
    background-color: #DEB361;
}

.mail-tab .nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    height: 35px;
    background-color: #f4faff;
    padding: 1px;
    border-radius: 8px;
    border: none;
}

.mail-tab .nav .nav-item {
    text-align: center;
    height: 33px;
    flex: 1;
    line-height: 33px;
    color: #788b9d;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.mail-tab .nav .nav-item.active {
    color: #30383f;
    background-color: #fff;
}

.mail-tab-list .nav {
    display: flex;
    justify-content: left;
    border-bottom: 1px solid #f1f3f5;
    height: 46px;
    margin-top: 16px;
    position: relative;
}

.mail-tab-list .nav .nav-item {
    height: 46px;
    font-size: 16px;
    padding: 12 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-right: 35px;
    color: #30383f;
    cursor: pointer;
}

.mail-tab-list .nav .nav-item.active {
    color: #DEB361;
}

.mail-tab-list .nav .nav-item.active:after {
    transition: 0.2s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 2px;
    background-color: rgba(255, 0, 0, 0);
    width: 100%;
    background-color: #DEB361;
}

.btm_lang_wrap_btm_box_inbox {
    justify-content: center;
}

.btm_lang_wrap_btm_inbox {
    min-height: 18vh;
    height: calc(25vh - 100px);
    margin-top: 0;
    margin-bottom: 10px;
}

.btm_lang_wrap_inbox {
    background-color: #f8f8f8;
}

.top-short-wrap-profile {
    padding: 55px 0 20px;
}

.avatar_chg {
    width: 56px;
}

.top-short-wrap-profile .pf-form-wrap {
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: 10px;
}

.top-short-wrap-profile .pass-form input {
    border-bottom: none;
}

.avatar_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.avatar_grid img {
    width: 50px;
    margin: auto;
}

.btm_lang_wrap_btm_profile {
    min-height: calc(25vh - 100px);
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
}

.profile_content_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(201, 209, 216);
}

.profile_content_wrap .arrow {
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 10px;
}

.top-short-header a.head_profile {
    text-align: end;
    font-size: 16px;
}

.btm-tran-cuschangename {
    max-width: 300px;
    font-size: 14px;
    text-align: center;
    margin: 20px auto;
}

/* vip */
.userbadge {
    position: absolute;
    right: 0;
    width: auto;
    top: -19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.userbadge img {}

.vip_body_wrapper {
    background: #fff;
    padding-top: 30px;
}

.vipbg {
    background: #fff url(../images/vip/vip_top_bg.png)center no-repeat;
    background-size: 100% 100%;
    padding-bottom: 3px;
    padding-top: 46px;
    position: relative;
}

.userdetails img {
    width: 50px;
}

.userdetails {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.userbadge img {
    width: 125px;
    /* float: right; */
}

.vipghead00 {
    padding-bottom: 25px;
    color: #414655;
    font-size: 18px;
}

.vipghead01 {
    padding-bottom: 57px;
    position: relative;
}

.vipfrom {
    background: #DEB361;
    font-size: 10px;
    border-radius: 13px;
    color: #fff;
    padding: 0px 5px;
    /* float: right; */
    /* margin-top: 3px; */
    z-index: 1;
}

.vipto {
    background: linear-gradient(270deg, #dde1e6, #b9b0b9);
    font-size: 10px;
    border-radius: 13px;
    color: #fff;
    padding: 0px 5px;
}

.vipbg .progress {
    height: 10px;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .03);
}

.vipbg .progress .progress-bar-striped {
    /* background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); */
    /* background-size: 1rem 1rem; */
}

.vipbg .progress .progress-bar {
    background: linear-gradient(0deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, .9));
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .03);
}

.progressicon {
    display: inline-block;
}

.progressicon .fa-sort-down:before {
    position: absolute;
    top: 13px;
    width: 29px;
}

.progresscustom {
    margin: auto;
    position: relative;
    width: 100%;
}

.progresspercent {
    position: absolute;
    top: -27px;
    left: -9px;
    text-align: right;
    font-size: 11px;
    font-weight: 900;
}

.progresspercent img {
    width: 30px;
    margin-top: 10px;
}

.vipghead02 {
    padding-bottom: 25px;
}

.currentsaving span {
    color: #9aa4c2;
    font-size: 10px;
}

.currentsaving .saving01 {
    display: list-item;
    list-style-type: disc;
    list-style-position: inside;
}

.currentsaving .savingamt {
    color: #414655;
    font-size: 12px;
    margin-left: 5px;
}

.controlwalletsection {
    margin: auto;
    margin-top: 20px;
}

.vip_bg_wrapper {

    position: relative;

    padding: 15px 25px;
}

.vip_custom_tag img {
    width: 59px;
}

.userbadge span {

    position: absolute;

    top: 43%;

    right: auto;

    left: auto;

    font-size: 18px;

    margin-left: 25px;
}

.vipghead02_custom {

    display: flex;

    /* grid-template-columns: 20% 80% 20%; */

    gap: 5px;

    align-items: center;
}

.vip_more_btn {
    display: flex;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #fff;
    width: 150px;
    height: 35px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px;
    font-size: 14px;
}

.vip-privileges .vip-bar-wrap {
    position: relative;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 5px 20px 15px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.vip-privileges .vip-bar-wrap::-webkit-scrollbar,
.vip-privileges .desc-wrap::-webkit-scrollbar {
    display: none
}

.vip-privileges .vip-bar>div {
    display: inline-block;
    float: none;
    margin: 0;
    margin-right: -3px;
}

.vip-privileges .vip-bar>div:last-child {
    margin-right: 10px
}

.vip-privileges .vip-bar .badge {
    background: #f1f3f5;
    border: 1px solid #e4e8eb;
    border-radius: 19px;
    color: #788b9d;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
}

.vip-privileges .vip-bar .badge-divider {
    width: 30px;
    height: 2px;
    /* background-color: #f1f3f5; */
    border-top: 2px solid #f1f3f5;
    padding: 1px;
}

.vip-privileges .vip-bar .badge.active {
    background: #DEB361;
    border: 1px solid #03f1fd00;
    /* border-radius: 5px; */
    color: #fff;
}

.vip-privileges .desc-wrap {
    position: relative;
    display: block;
    padding-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.vip-privileges .desc-wrap-inner {
    display: inline-block;
    float: none;
    /* padding-left: 10px; */
    padding: 0 20px;
    width: 100%;
    /* margin: auto; */
}

.vip-privileges .desc-wrap-inner:first-child {
    /* padding-left: 25px; */
    /* padding-right: 20px; */
}

.vip-privileges .desc-wrap-inner:last-child {
    padding-right: 20px
}

.vip-privileges .desc-box {
    width: 100%;
    background-image: url(../images/vip/vip_cardbg.png);
    background-size: 100% 100%;
    padding: 20px;
    position: relative;
    margin: auto;
}

.vip-privileges .header-wrap {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 1rem;
    height: 14vw;
    background: linear-gradient(#01f8fd, #12c3ff);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-weight: 900;
}

.vip-privileges .header-wrap img {
    height: 10vw;
    margin: 0 .8rem 0 .6rem
}

.vip-privileges .col-row {
    margin: .6rem;
    display: flex;
    justify-content: space-between
}

.vip-privileges .col-card {
    padding: 0;
    width: calc((100% - 1rem)/3)
}

.vip-privileges .col-card-lg {
    padding: 0;
    width: calc((100% - 1rem)/2)
}

.vip-privileges .col-wrap {
    border: 1px solid #124abd;
    background-color: #061235;
    border-radius: 10px;
    padding: 0
}

.vip-privileges .privilege-img {
    margin: auto;
    text-align: center;
}

.vip-privileges .privilege-img img {
    width: 50px;
    height: 100%;
    object-fit: contain
}

.vip-privileges .privilege-item {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: normal;
    line-height: 11px;
    height: 22px;
    color: #ffffff;
    text-align: center;
    font-size: 11px;
    padding: 3px;
}

.vip-privileges .privilege-value {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: normal;
    font-size: 12px;
    line-height: 12px;
    height: 24px;
    color: #fff;
    font-weight: bold;
}

.vip_box {
    display: none;
}

.vip_box.active {
    display: block;
}

.vip_icon_float {
    position: absolute;
    width: 65px;
    top: 0;
    right: 36px;
}

.vip_name_title {

    color: #fff;

    font-size: 38px;

    font-weight: 600;

    padding-left: 20px;

    margin-bottom: 18px;
}

.vip_card_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.vip_card_content .left,
.vip_card_content .right {

    display: flex;

    flex-direction: column;

    justify-content: center;

    text-align: center;

    color: #fff;

    font-size: 13px;
}

.card_showing {

    color: #788b9d;

    text-align: end;

    padding: 10px 22px;

    font-weight: 600;
}

.vip_box_title {
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.vip_box_title:after {
    content: "";
    position: absolute;
    top: 2px;
    left: -9px;
    width: 3px;
    height: 16px;
    border-radius: 20px;
    background: #DEB361;
}

.vip_box_details {
    background: #fff;
    margin-top: 10px;
    padding: 20px;
}

.vip_box_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 2px;
    padding: 15px 0;
}

.vip_box_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip_box_flex .left img {

    width: 39px;
}

.vip_box_flex .right {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.vip_box_flex .right span {
    font-size: 17px;
    font-weight: 500;
}

.vip_box_flex .right p {
    margin: 0;
    color: #788b9d;
    font-size: 11px;
}

.vip_btm_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 0;
    gap: 17px;
}

.vip_btm_grid_box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    text-align: center;
}

.vip_btm_grid_box span {
    color: #DEB361;
    font-size: 21px;
    font-weight: 500;
}

.vip_btm_grid_box p {
    margin: 0;
    color: #788b9d;
    font-size: 14px;
}

.vip_btm_grid_box span.span_spec {
    font-size: 14px;
}

.vip_more_a {

    text-align: center;

    display: block;

    font-size: 15px;

    margin: 20px 0;
}

.vip_details_body {
    padding-top: 46px;
}

.vip_details_wrapbox {
    margin-top: 8px;
    background-color: #fff;
    padding: 10px 0;
}

.vip_box_title_details {
    margin: 5px 30px 10px 30px;
}

.viptable_return {
    width: 100%;
    border: 1px #ebeef5 solid;
}

.viptable_return td {
    padding: 9px;
    font-size: 15px;
    border-right: 1px #ebeef5 solid;
    text-align: center;
    color: #606266;
}

.viptable_return thead td {
    background: rgba(120, 139, 157, .2);
    font-size: 11px;
    text-align: center;
    color: #000;
}

.viptable_return tbody tr:nth-child(even) {
    background: #fafafa;
}

.table-sec {
    color: #788b9d;
    margin: 10px;
}

.viptable_return tbody tr:nth-child(even) td:first-child {
    background: rgba(120, 139, 157, .2);
}

.currentvip_row {
    background: rgb(255 193 7 / 11%);
}

.currentvip_row td:first-child {
    background: rgb(255 193 7 / 11%);
}

.viptable_return .currentvip_row td {
    color: #DEB361;
}

.detail-main {

    padding: 0 20px;
}

.detail-main ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 26px;
}

.detail-main li {
    width: 100%;
    height: auto;
    margin-bottom: 18px;
    counter-increment: my-awesome-counter;
    padding-left: 24px;
    position: relative;
    line-height: 22px;
    font-size: 14px;
    color: #48535e;
}

.detail-main li:before {
    content: counter(my-awesome-counter);
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: #DEB361;
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-main li p {
    margin-top: 16px;
}

.vip_btt {
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    color: #788b9d;
    background: #fff;
    width: 122px;
    margin: 10px auto;
}

.top-header-custom-promo {

    display: flex;

    padding: 8px 0px;
}

.promo-tab-content .white-box-wrap {
    box-shadow: 0 .04rem .16rem rgba(121, 129, 164, .1);
}

.login_img {
    margin: 15px 0;
}

.login-form-box_password {
    position: relative;
}

.login-form-box_password .toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c7ba8;
}

.reg_phone_box {
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #6c7ba8;
    background: hsla(0, 0%, 100%, .08);
    padding-bottom: 0;
    margin-bottom: 15px;
    padding: 0 10px 0px 10px;
}

.phone_coun {
    color: #6c7ba8;
    min-width: 30px;
    flex: 1;
    font-size: 18px;
    text-align: center;
    border-right: 1px solid #6c7ba8;
}

.login-form-box.reg_phone_box input {
    background: transparent;
    border: none;
    flex: 4;
    padding: 15px 15px 15px 15px;
}

.login-form-box.reg_phone_box .login-icon {

    position: unset;
}

.help_wrapper {
    border-top: 10px solid #f4faff;
    padding: 6px 0px 10px 0px;
}

.help_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f3f5;
    padding: 12px 10px;
}

.help_box .left {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000;
    font-size: 15px;
}

.help_box .right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #93a2b1;
    font-size: 15px;
}

.help_box .left img {
    width: 32px;
}

.help_box .right img {
    width: 12px;
}

.game_intro_wrapper {
    border-bottom: 10px solid #f4faff;
}

.gameselect_share .btm_lang_wrap_btm_box {
    color: #000;
}

.game_intro_wrapper .help_box {
    padding: 12px 16px;
}

.game_intro_body p {
    margin-bottom: 10px;
}

.contact_title {
    position: relative;
    color: #30383f;
    font-size: 15px;
}

.contact_title::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 15px;
    border-radius: 10px;
    overflow: hidden;
    left: -9px;
    background: linear-gradient(180deg, #DEB361, #DEB361);
}

.contact_box {
    background: #fff;
    padding: 10px 25px 0 25px;
    border-top: 11px solid #f4faff;
    margin: 0;
}

.contact_wrapbox {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f2f7;
    padding: 15px 0;
}

.contact_wrapbox .left {
    width: 30px;
    margin: 0 13px 0 0px;
}

.contact_wrapbox .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_wrapbox .middle {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-left: 1px solid #f0f2f7;
    padding-left: 20px;
    gap: 5px;
}

.link_copy {
    color: #DEB361;
    border: 1px solid #DEB361;
    border-radius: 10px;
    min-width: 55px;
    min-height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link_copy_2 {
    color: #fff;
    border: 1px solid #DEB361;
    border-radius: 10px;
    min-width: 55px;
    min-height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
}

.btn_seventf {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    min-height: 45px;
    align-items: center;
    font-size: 17px;
    margin: 20px 0;
}

.joinus_bg {
    background: url(../images/help/bg.8f74c76d.jpg) no-repeat 50%;
    background-size: auto;
}

.join_wrapper {
    padding: 15px 15px;
}

.join_box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
}

.join_box .left {
    width: 30px;
    margin: 0 13px 0 0px;
}

.join_box .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.join_box .middle {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-left: 1px solid #f0f2f7;
    padding-left: 20px;
    gap: 5px;
}

.join_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.aboutapps_bg {
    background: url(../images/help/about-bg.8fb137a0.png) no-repeat 50%;
    background-size: 100% 100%;
}

.aboutapps_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    margin-top: 65px;
}

.aboutapps_wrapper .top img {
    width: 200px;
    margin: auto;
}

.abouttitle {
    color: #788b9d;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

/*downloadmodal*/
#download-modal .modal-body {
    padding: 10px;
}

#download-modal .modal-dialog {
    max-width: 800px;
}

#download-modal .modal-header {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    -moz-box-shadow: 0px 3px 7px 0px #ccc;
    -webkit-box-shadow: 0px 3px 7px 0px #ccc;
    box-shadow: 0px 3px 7px 0px #ccc;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    justify-content: center;
}

#download-modal .modal-header img {
    margin: 0 auto;
    width: 125px;
}

#download-modal .modal-header .close {
    position: absolute;
    right: 9px;
    top: 6px;
    color: #fff;
    background: none;
    border: none;
    font-size: 28px;
}

.download_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-weight: 700;
    justify-items: center;
    text-align: center;
    grid-column-gap: 20px;
}

.download_box_column {
    border: 1px solid #a88663;
    width: 80%;
    border-radius: 10px;
    padding: 10px;
    /* -webkit-box-shadow: 0px 0px 6px 0px rgb(203,182,152,0.7); */
    -moz-box-shadow: 0px 0px 6px 0px rgb(203, 182, 152, 0.7);
    /* box-shadow: 0px 0px 6px 0px rgb(203,182,152,0.7); */
    position: relative;
    margin-top: 0;
}

.applybg {
    background: url(../images/download/APPLE.jpg)no-repeat top center;
    background-position: center;
    background-size: cover;
}

.androidbg {
    background: url(../images/download/ANDROID.jpg)no-repeat top center;
    background-position: center;
    background-size: cover;
}

.btn_login_download {
    margin-top: 10px;
}

.download_scan {
    width: 70px;
    height: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    border-radius: 60px;
    margin: auto;
}

.download_scan img {
    width: 30px;
    margin: auto;
}

.btn_download {
    border-radius: 5px;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #ffffff;
    width: auto;
    font-size: 10px;
    border: none;
    padding: 8px;
}

.download_table table {
    -webkit-box-shadow: 0px 0px 6px 0px rgb(203, 182, 152, 0.7);
    -moz-box-shadow: 0px 0px 6px 0px rgb(203, 182, 152, 0.7);
    box-shadow: 0px 0px 6px 0px rgb(203, 182, 152, 0.7);
    font-size: 9px;
}

.download_table table thead {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #ffffff;
    border: 1px solid #a88663;
    font-size: 11px;
}

.download_table table thead tr td {
    padding: 8px;
}

.download_table table tbody tr td {
    border: 1px solid #a88663;
    padding: 8px;
}

.download_pass {
    width: 100%;
    border: 1px solid #a88663;
    margin-bottom: 7px;
    padding: 5px;
}

.download_table {
    font-size: 12px;
}

/*downloadEND*/
.message-delete-checkbox {
    margin-right: 10px;
    padding-top: 10px;
}

.msg_selectwrap {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.select_a_wrapper {
    display: flex;
    align-items: unset;
    margin: 20px 0;
}

.msg_selectwrap .message-delete-checkbox {
    padding-top: 0;
}

.pay-input-select {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 42px;
    width: 100%;
    height: 42px;
    background: #f4faff !important;
    border-radius: 12px;
    margin: 7px 0;
    color: #30383f;
    border: 1px solid #f4faff !important;
    margin-top: 4px;
}

.pay-input-select:focus-visible {
    outline: none;
}

.wf-table.trans_table tbody tr td {
    border: 1px solid #e7e7e7;
}

.wf-table.trans_table thead tr th {
    border: 1px solid #e7e7e7;
}

.af-info {
    margin-top: 0px;
}

.af-info p {
    margin: 0px;
}

.txt-rd {
    color: #ed1d49;
}

.dep-detail-box-custom {
    flex-direction: unset;
    align-items: center;
    justify-content: space-between;
}

.dep-detail-box-custom .dep-bank-label {
    padding: 0;
    font-weight: 400;
    min-width: 100px;
    flex: 1;
}

.tnc-body {
    padding: 10px;
}

/* banking page */
.table-second {
    margin: 20px 0px;
}

.table-second>tbody>tr>th {
    border: 1px solid #7682a5;
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #fff;
    text-align: center;
    padding: 5px;
}

.table-second>tbody>tr>td {
    border: 1px solid #7682a5;
    background: #f0f6ff;
    padding: 5px;
    color: #7682a5;
}

.detail-ul {
    color: #7682a5;
}

/* end banking page */

.login-row a {
    text-decoration: underline;
}

.otp-section {
    margin-top: 20px;
    padding: 0px 20px 10px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.otp-inputs input {

    margin: 0 5px;

    text-align: center;

    border: 1px solid #6c7ba8;

    border-radius: 12px;

    padding: 10px;

    background: transparent;
}

.otp-actions {
    margin-top: 10px;
    display: flex;
}

#countdownTimer {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.success-wrap {
    text-align: center;
}

.success-wrap h4 {
    font-size: 24px;
    color: #a88663;
    margin-bottom: 20px;
}

.success-wrap i {
    font-size: 60px;
    color: #a88663;
    margin-bottom: 20px;
}

/* LOBBY */
.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-catergory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.mini-box .hoverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: rgba(0, 0, 0, 0.568);
}

.mini-box:hover .hoverlay {
    opacity: 1;
}

.mini-box {
    position: relative;
    width: 100%;
    border: 1px solid #717bac;
    border-radius: 10px;
    overflow: hidden;
}



.btn-playmini-1 {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #fff;
    padding: 5px;
    border-radius: 25px;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #a88663;
}

.btn-playmini:hover {
    color: #fff;
}

.game-list-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.game-title-text {
    font-weight: bold;
    margin-bottom: 0;
    padding: 10px;
    color: #6c7ba8;
    text-align: center;
}

.product-lobby {
    padding-top: 45px;
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.search-bar input {
    background: #ffffff;
    color: #535353;
    border: none;
    padding: 10px 5px;
    display: block;
}

.search-bar input:focus {
    outline: none;
}

.search-btn {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #fff !important;
    padding: 10px 5px;
    width: 10%;
    text-align: center;
}

/* 23/1/2025 */
.btn-member {
    color: #8894b9;
}

.btn-member i {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%);
    color: #fff;
    padding: 5px;
    text-align: center;
    border-radius: 50%;
}

.lang_top_box button.dropdown-toggle:after {
    display: none;
}

.download-icon img {
    max-width: 75px;
}

.download-icon {
    margin-top: -25px;
}

.balance-wrap {
    display: flex;
    grid-gap: 5px;
    justify-content: space-between;
    margin-top: 5px;
    font-weight: 600;
}

.balance-wrap img {
    width: 30px;
}

.balance-wrap span {
    text-align: center;
    color: #788b9d;
}

.token-wallet {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
}

.point-wallet {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
}

.balance-dropdown {
    width: 300px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-item {
    display: grid;
    grid-template-columns: 30% 30% auto;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    color: #8894b9;
    font-weight: 500;
}
.balance-item span:first-child{
    text-overflow: ellipsis;
    overflow: hidden; 
    white-space: nowrap;
}
.balance-actions {
    display: flex;
    gap: 5px;
}

.btn-enter,
.btn-exit {
    padding: 2px 10px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
}

.btn-enter {
    background: #4CAF50;
    color: white;
}

.btn-exit {
    background: #f44336;
    color: white;
}

.afterlogin-index-login {
    cursor: pointer;
    color: #788b9d;
    border: 1px solid #788b9d;
    border-radius: 25px;
}

.afterlogin-index-login img {
    max-width: 20px;
}

.afterlogin-index-login .dropdown-toggle {
    padding: 5px;
    text-align: center;
}

/* DOWNLOAD */
.download-tabs {
    display: flex;
    width: 100%;
    background: #ffffff;
}

.download-tabs .tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s;
}

.download-tabs .tab.active {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%) !important;
    color: #fff;
}

.platform-content {
    display: none;
    padding: 20px 0;
}

.platform-content.active {
    display: block;
}

.game-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0px 0px 11px 2px #97979759;
}

.game-image {
    margin-bottom: 15px;
}

.game-image img {
    max-width: 100%;
    border-radius: 8px;
}

.game-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.action-btn.download {
    background: linear-gradient(to bottom, #edd7ba 0%, #d4a982 100%) !important;
    color: #fff;
}

.action-btn.qr {
    background: #333;
}

.game-name {
    color: #b3b3b3;
    font-size: 18px;
    font-weight: bold;
}

/* 27/1/2025 */
#announcementpopup .modal-content {
    margin: 0 auto;
    text-align: center;
    max-width: 75%;
}

#announcementpopup .ann-close {
    right: 0;
    bottom: -35px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d7b28c;
}

.head_table_row .dropdown button {
    font-size: 15px;
    background: #f4faff;
    color: #30383f;
    padding: 8px 10px;
    border-radius: 35px;
}

.head_table_row .dropdown button:focus {
    border: 1px solid transparent;
}

.head_table_row .dropdown-toggle[aria-expanded="true"]:after {
    transform: rotate(-180deg);
}

.head_table_row .dropdown-toggle:after {
    transition: 0.7s;
}

.head_table_row .btn.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border: 6px solid transparent;
    border-top-color: #9ca4c3;
    border-bottom: none;
    border-radius: 5px;
    transition: transform 0.2s, border-top-color 0.2s;
}

.head_table_row .show > .btn.dropdown-toggle::after {
    transform: rotate(-180deg);
    border-top-color: #6b7280; 
}
.index_menu_wrap .tab-content{
    flex: 2;
}

@media only screen and (min-width: 480px) {

    /* account page */
    .my-vip-dot img {
        max-width: 100%;
        max-height: 100%;
    }
}



@media only screen and (min-width: 600px) {
    body.landing-v1 {
        background: url(../images/landing/ver1.png) no-repeat top center fixed;
        background-size: auto 100%;
        height: 100%;
    }

    body.landing-v2 {
        background: url(../images/landing/ver2.png) no-repeat top center fixed;
        background-size: auto 100%;
        height: 100%;
    }

    .landing-btm {
        bottom: 20%;
    }

    .landing-slogan,
    .landing-slogan-v2 {
        padding-top: 0%;
    }

    .landing-flag {
        max-width: 400px;
        margin: auto;
    }

    .landing-flag img {
        max-width: 60px;
    }
}

@media only screen and (max-width: 1080px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 600px) {}

@media(max-width: 550px) {
    .vip-bnf-lvl {
        top: 12%;
        left: 7px;
    }
}

@media only screen and (max-width: 480px) {

    /* contact us page */
    .contact-opt-list span {
        font-size: 3.3vw;
    }

    /* account page */
    .acc-vip-note {
        font-size: 2.8vw;
    }

    .my-vip-bar {
        /* width: auto; */
    }

    .acc-mem-list span {
        /* font-size: 3vw; */
    }

    /* afterlogin vip page */
    .vip-lvl1 {
        left: 44%;
    }

    .vip-lvl2 {
        right: 13%;
    }

    .vip-lvl1.silver {
        left: 45%;
    }

    .vip-lvl1.gold {
        left: 46%;
    }

    .vip-lvl2.gold {
        right: 13%;
    }

    .vip-lvl2.plat,
    .vip-lvl2.diamond {
        right: 10%;
    }

    .vip-lvl1.diamond {
        left: 43%;
    }
}

/* SLOT-LOBBY */
.slot_product_icon_wrap {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 10px;
}

.slot_product_box {
    background-image: url(../images/product/slots/logo/prov-bgnormal.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0.2rem;
    /* box-shadow: 0px 3px 2px 0px #00000014; */
    min-width: 150px;
    width: 150px;
    height: 53px;
    cursor: pointer;
    padding: 0 10px;
    text-align: center;
    align-content: center;
    flex-shrink: 0;
}

    .slot_product_box:hover,
    .slot_product_box.active {
        transform: scale(1.05);
        background-image: url(../images/product/slots/logo/prov-bgactive.png);
        background-size: 100% 100%;
    }

        .slot_product_box:hover img,
        .slot_product_box.active img {
            filter: brightness(10.5);
        }

    .slot_product_box img {
        margin: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .slot_product_box:hover .slot_product_txt,
    .slot_product_box.active .slot_product_txt {
        color: #fff;
    }

.slot_product_txt {
    color: #6c7ba8;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 600;
    font-size: 12px;
}
/* 28/10/2025 */
.new-badge {
    position: absolute;
    left: 10px;
    top: 0;
    margin-top: 0 !important;
}

    .new-badge img {
        max-height: 19px;
    }

.tablinks.active .new-badge img, .tablinks:hover .new-badge img {
    filter: none;
}

.inbox-icon {
    position: relative;
}

.noti-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 13px;
    height: 13px;
    background: #f44336;
    color: #fff;
    display: flex;
    border-radius: 50%;
    padding: 5px;
    font-size: 8px;
    justify-content: center;
    align-items: center;
}

.main-wallet-balance {
    background: #f0d9bf;
    color: #fff;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}