@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); 
body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    font-size: 15px;
    margin: 0px auto;
    color: rgb(25, 25, 25);
    background-color: #0c141c;
    overflow: hidden;
}
:root {
    --font-color: #97a7b6;
    --bg-color-1: #111923;
    --bg-color-2: #1b222d;
    --bg-color-4: #1E2B3E;
    --bg-color-6: #1D2633;
    --primary-color: #523FBE;
    --yellow: #DBA84C;
    --blue: #5780E9;
    --warn-color: #EF7979;
}
.yellow-color {
    color: var(--yellow);
}
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px
}
.form-control:focus{
    box-shadow: none;
}
a {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover, a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: rgb(102, 102, 102);
    width: 100%;
}

input:focus-visible {
    outline: unset;
}

/* modal */
.modalforgot .btn-close{
    position: absolute;
    right: 20px;
    filter: invert(1) brightness(7.5);
    opacity: 1;
    border: 1px solid;
    border-radius: 35px;
}
.modalforgot .modal-header{
    justify-content: center;
    background: linear-gradient(to right, #5099F2, #2F33B7);
    border: none;
}
.modalforgot .modal-title{
    color: #fff;
}
.modalforgot .modal-content{
    background: #1E2B3E;
    border: none;
    color: #fff;
}
.modalforgot .modal-body{
    padding: 2rem;
}

.modalregister .btn-close{
    position: absolute;
    right: 20px;
    filter: invert(1) brightness(7.5);
    opacity: 1;
    border: 1px solid;
    border-radius: 35px;
    top: 20px;
}
.modalregister .modal-content{
    background-color: initial!important;
    color: #fff;
    border: 2px solid #717171;
    border-radius: 20px;
}
.modalregister .modalbg{
    width: 100%;
    height: 100%;
    background: linear-gradient(149deg, #24284d 16%, #07080f 85%);
    opacity: .9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
}
.reg_top_head{
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.reg_top_head span{
    color: #dba84c;
    margin-left: 9px;
    cursor: pointer;
}
.reg_top_head i{
    margin-right: 3px;
}
.modalregister .modal-dialog{
    max-width: 700px;
}
.form_group_reg input {
    min-height: 40px;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    padding: 6px 12px;
}
.form_group_reg label{
    color: #fff;
    font-size: 13px;
}
.forgot_from {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.registrationPassIcondes {
    position: absolute;
    right: 18px;
    cursor: pointer;
    color: #000;
}
.formgroup_wrap{
    margin-bottom: 20px;
}
.modalregister .forgot_numwrap{
    grid-template-columns: 28% 71%;
}
.modalregister .modal-body{
    padding: 3rem;
}
.otp-wrap {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
}
.otp-wrap .form-control{
    text-align: center;
}
.checkmark{
    display: flex; 
    align-items: center;
    gap: 11px;
    justify-content: center;
}
.reg_form h4 {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
}
.reg_form i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: #2283f6;
    margin-bottom: 10px;
    filter: hue-rotate(270deg) brightness(2.5);
}
.reg_form p {
    text-align: center;
    color: #c3c3c3;
    font-size: 12px;
}
/* modalend */








.header {
    width: 100%;
    position: fixed;
    height: 80px;
    top: 0px;
    left: 0px;
    z-index: 11;
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 0px 15px;
    background: rgb(22, 31, 43);
}

.header .left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.headnavi img {
    width: 40px;
    cursor: pointer;
}

body.menuon .headnavi .btnmenu_navi_right {
    display: none;
}

body.menuon .headnavi .btnmenu_navi_left {
    display: block;
}

body .headnavi .btnmenu_navi_right {
    display: block;
}

body .headnavi .btnmenu_navi_left {
    display: none;
}

.logo {
    width: 250px;
}

.logo img {
    width: 250px;
}

.header .right {
    display: flex;
    align-items: center;
    gap: 13px;
}

.headinputwrap {
    display: flex;
    align-items: center;
    gap: 13px;
}

.headinputwrap input.headinput {
    width: 160px;
    height: 50px;
    background: rgb(42, 53, 70);
    border: none;
    color: rgb(255, 255, 255);
    padding: 4px 11px;
    border-radius: 6px;
    transition: 0.2s;
    font-size: 13px;
}

.headinputwrap input.headinput::placeholder {
    color: rgb(151, 167, 182);
    opacity: 1;
}

.headinputwrap_password {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.forgot_link {
    position: absolute;
    color: rgb(87, 128, 233);
    right: 9px;
    font-size: 13px;
    cursor: pointer;
}

.head_btn_lrwrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.head_signinbtn {
    height: 50px;
    min-width: 120px;
    font-size: 16px;
    background-color: rgb(82, 63, 190);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 6px;
}

.head_regbtn {
    height: 50px;
    min-width: 120px;
    font-size: 16px;
    background-color: rgb(221, 33, 70);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 6px;
    position: relative;
}

.head_regbtn::before {
    content: "";
    position: absolute;
    width: 134px;
    height: 66px;
    background-color: rgba(180, 19, 51, 0.53);
    top: -8px;
    left: -8px;
    border-radius: 10px;
    z-index: -1;
}

.head_regbtn:hover::before {
    display: none;
}

.btn_left_headwrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn_dw {
    height: 44px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(316deg, rgb(38, 48, 98) 0%, rgb(18, 26, 34) 83%);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0px 15px;
    gap: 10px;
}

.btn_dw img {
    width: 42px;
}

.btn_promo {
    height: 44px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(316deg, rgb(62, 56, 31) 0%, rgb(18, 26, 34) 83%);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
    color: rgb(255, 255, 255);
    border: none;
    padding: 0px 15px;
    gap: 10px;
}

.btn_promo img {
    width: 35px;
}

.lang_head {
    cursor: pointer;
    border: 1px solid rgb(42, 53, 70);
    border-radius: 20px;
    width: 76px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.lang_head i {
    color: rgb(89, 103, 124);
}

.lang_head img {
    width: 22px;
}

.lang_pop {
    display: none;
    position: absolute;
    padding: 26px;
    background-color: rgb(22, 31, 44);
    border-radius: 10px;
    border: 1px solid rgb(39, 43, 55);
    box-shadow: rgba(39, 43, 55, 0.79) 0px 2px 3px;
    top: 135%;
    right: 0px;
    min-width: 260px;
}

.lang_pop.show {
    display: block;
}
.lang_title{
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
}
.lang_title img{
    width: 28px;
}
.languagecontent{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #fff;
}
.languagecontentin{
    position: relative;
}
.languagecontentin:hover{
    color: #3486ff;
}
.languagecontentin:after{
    content: "";
    width: 1px;
    height: 16px;
    background-color: #97a7b6;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}
.languagecontentin.no:after{
    display: none;
}
.lang_titlewraphr{
    border-top: 1px solid #fff;
    margin: 10px 0;
    width: 100%;
    padding: 0;
}
.lang_pop_cus{
    display: flex;
    flex-direction: column;
    gap: 23px;
    font-size: 13px;
}
.ant-dropdown-arrow{
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
    width: 16px;
    height: 16px;
    overflow: hidden;
    top: -17px;
    right: 28px;
}
.ant-dropdown-arrow:before{
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 16px;
    height: 8px;
    background: #ffffff;
    clip-path: polygon(1.6568542494923806px 100%, 50% 1.6568542494923806px, 14.34314575050762px 100%, 1.6568542494923806px 100%);
    clip-path: path('M 0 8 A 4 4 0 0 0 2.82842712474619 6.82842712474619 L 6.585786437626905 3.0710678118654755 A 2 2 0 0 1 9.414213562373096 3.0710678118654755 L 13.17157287525381 6.82842712474619 A 4 4 0 0 0 16 8 Z');
    content: "";
}
.ant-dropdown-arrow:after{
    content: "";
    position: absolute;
    width: 8.970562748477143px;
    height: 8.970562748477143px;
    bottom: 0;
    inset-inline: 0;
    margin: auto;
    border-radius: 0 0 2px 0;
    transform: translateY(50%) rotate(-135deg);
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
    z-index: 0;
    background: transparent;
}

/* headerEND */
/* sidemenu */
.side_menunav{
    width: 260px;
    height: calc(100vh - 80px);
    background: var(--bg-color-1);
    position: fixed;
    left: 0;
    top: 80px;
    padding-top: 10px;
    /* transition: 0.3s; */
    z-index: 1;
}
.sidebg{
    width: 232px;
    background: var(--bg-color-2);
    border-radius: 0 6px 6px 0;
    /* overflow: hidden; */
    /* transition: 0.3s; */
    position: relative;
}
.sidebg .item{
    height: 60px;
    padding-left: 20px;
    color: var(--font-color);
    font-size: 18px;
    border-bottom: 1px solid #2d3744;
    line-height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.sidebg .item:hover{
    background: linear-gradient(194deg, hsla(272, 100%, 57%, .3) 0%, rgba(43, 32, 95, .3) 100%);
    color: #fff;
}
.sidebg .item.active{
    background: linear-gradient(194deg, #6420bc 0%, #2e1d64 100%);
    color: #fff;
}

.sidebg .item img{
    width: 31px;
}
.sidebg .item .itemtext{
    color: #97a7b6;
}
.sidebg .item:hover .itemtext,.sidebg .item.active .itemtext{
    color: #fff;
}
.sidebg .item .hover{
    display: none;
}
.sidebg .item.active .hover{
    display: block;
}
.sidebg .item.active .before{
    display: none;
}
.vipmenubg{
    width: 232px;
    border-radius: 0 6px 6px 0;
    height: 60px;
    padding-left: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 60px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background-image: linear-gradient(90deg, #222521 0%, #3d371f 100%);
    margin-top: 20px;
    position: relative;
    transition: unset;
}
.vipmenubg:before{
    position: absolute;
    content: '';
    background-image: linear-gradient(90deg, #111923 0%, #8d6e1b 100%);
    width: 213px;
    height: 62px;
    z-index: -1;
    border-radius: 7px;
    transition: unset;
}
.vipmenubg .vipmenu{
    width: 31px;
}


.sidebg .item .tooltip, .vipmenubg .tooltip {
    visibility: hidden;
    min-width: 90px;
    background-color: #08598b;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 9999;
    left: 100%; /* Position the tooltip to the right of the item */
    margin-left: 10px; /* Space between the item and the tooltip */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

body.menuoff .sidebg .item:hover .tooltip, body.menuoff .vipmenubg:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.sidebg .item .tooltip::after, .vipmenubg .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%; /* Position the arrow to the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #08598b transparent transparent;
}
.sidebg a:first-child{
    border-radius: 0 10px 0 0;
}
.sidebg a:last-child{
    border-radius: 0 0 10px 0;
}

/* sidemenuEND */




/* indexbody */
.main{
    width: calc(100vw);
    height: 100vh;
    overflow-x: hidden;
    padding-left: 260px;
    overflow-y: auto;
    position: relative;
    padding-top: 80px;
    /* transition: 0.3s; */
    z-index: 0;
}
.main_container{
    max-width: 1290px;
    padding: 0 10px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    margin-bottom: 2%;
}
.carousel-indicators li[data-bs-target] {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-left: 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #BBBBBB;
    background-clip: padding-box;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    opacity: 1;
    transition: opacity .6s ease;
    border-radius: 25px;
}
.carousel-indicators li[data-bs-target].active {
    opacity: 1;
    background-color: #ff610b;
}
.desktop-slider{
    border-radius: 20px;
    overflow: hidden;
}
.ann-wrap{
    display: flex;
    background: #16202c;
    padding: 10px;
    border-radius: 10px;
    margin: 25px 0 0 0;
    align-items: center;
    color: #98aad0;
    font-size: 13px;
}
.ann-wrap img{
    margin-right: 10px;
    margin-left: 10px;
}
.arrow_slider .slide-arrow {
    cursor: pointer;
    background-color: #171f2b;
    padding: 6px 13px;
    border-radius: 8px;
    color: #93acd3;
}
.arrow_slider{
    display: flex;
    align-items: center;
    gap: 10px;
}
.slider_title {
    color: #ffffff;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.slider_title i {
    margin-right: 10px;
}
.arrow_slider_wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.arrow_slider_wrp.slot-all {
    justify-content: flex-end;
}
.slider_title img{
    width: 30px;
    margin-right: 10px;
}
.index_product_box{
    margin-top: 30px;
}
.index_promoimg img{
    border-radius: 10px;
}
.hotgame-main-img{
    position: relative;
    cursor: pointer;
}
.hotgame-main-img img{
    border-radius: 8px;
}
.game-preview__hover {
    background-color: rgba(27,34,51,.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 19px 10px 13px;
    transition: opacity .1s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    transform: translateZ(1px);
    border-radius: 8px;
}

.game-preview__btn-play {
    /* width: calc(35% + 15px); */
    /* min-width: 42px; */
    /* background-color: red; */
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hotgame-main-img:hover .game-preview__btn-play,.hotgame-main-img:hover .game-preview__hover {
    opacity: 1;
    
}

.hotgame-main-img:hover .game-preview__btn-play img{
    animation: hover-animation .2s forwards;
}

@keyframes hover-animation {
    0% {
        width: 50px
    }

    50% {
        width: 80px
    }

    to {
        width: 50px
    }
}

.game-preview__btn-play:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.game-preview__btn-play i {
    color: #fff;
    font-size: 20px;
}
.index_download{
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 50px 0;
    align-items: center;
}
.index_download .left{

text-align: center;
}
.title_dw{
    background: #BA40FF;
    background: linear-gradient(to bottom, #BA40FF 0%, #8D5CEB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    font-weight: bold;
}
.title_dw_name{
    background: #FF9600;
    background: linear-gradient(to bottom, #FF9600 0%, #FFFF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    font-weight: bold;
}
.dw_content{
    color: #fff;
    font-size: 15px;
    margin-top: 12px;
}
.qr_wrap_index{
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 24px;
}
.qr_box_bg{
    width: 132px;
    height: 137px;
    background-image: url(../images/index/qr_bg.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qr_box_bg img{
    width: 105px;
    /* height: 90px; */
}
.qr_btn{
    margin-top: 10px;
    min-width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #1e2735;
    color: #fff;
    padding: 3px;
}
.qr_btn img{
    width: 20px;
    margin-right: 5px;
}
.hotgame-main-img-pro{
    background-color: #460d90;
    border-radius: 10px;
}
/* indexbodyend */
/* footer */
.footer{
    background-color: #181a2c;
    padding: 30px 0px;
}
.footer_main_container{
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 10px;
}
.footer_top_wrap{
    display: flex;
    justify-content: space-between;
    
}
.footer_box_title{
    font-size: 18px;
    color: #fff;
    margin-bottom: 13px;
}
.footer_box_content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_box_content a{
    color: var(--font-color);
    font-size: 13px;
}
.footer_box_content a:hover{
    color: #8D5CEB;
}
.footer_box_logo1 img{
    width: 30px;
    margin-right: 15px;
}
.footer_box_logo2 img{
    margin-right: 13px;
    min-width: 36px;
}
.footer_box_logo2{
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 18px;
}
.footer_box_last{
    width: 450px;
}
.footer_hr{ 
    border-top: 2px #000000 solid;
    box-shadow: 0px 1px 2px 1px #4d4d4d8f;
}
.footer_lic_logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_lic_logo img{
    margin-right: 64px;
}
.footer_lic_logo img:last-child{
    margin-right: 0;
}
.footer_copyright{
    color: #54657f;
    text-align: center;
    margin-top: 45px;
    font-size: 12px;
}
/* footerEND */
/* forgot */
.forgottabwrap .tab {
    overflow: hidden;
    border: 1px solid #73737300;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #ffffff21;
    margin-bottom: 20px;
}
.forgottabwrap .tab button {
    background-color: #4f586400;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    width: auto;
    border-bottom: 1px solid #5d5d5d00;
    text-align: left;
    padding: 0;
}
/* Change background color of buttons on hover */
.forgottabwrap .tab button:hover {
    background-color: #00000000;
    border-bottom: 1px solid #DBA84C;
}

/* Create an active/current tablink class */
.forgottabwrap .tab button.active {
    background-color: #00000000;
    color: #DBA84C;
    border-bottom: 1px solid #DBA84C;
}

/* Style the tab content */
.forgottabwrap .tabcontent {
    display: none;
    padding: 0;
    border: 1px solid #ccc0;
    border-top: none;
}
.forgot_numwrap{
    display: grid;
    grid-template-columns: 37% 62%;
    gap: 5px;
}
.btn_reg_drop,.btn_reg_drop:hover{
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #979797;
    border-radius: 6px;
    display: flex;
    align-items: center;
    min-width: 103px;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    min-height: 40px;
}
.btn_reg_drop:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 0%);
}
.btn_reg_drop_menu img{
    width: 24px;
}
.btn_reg_drop_menu .dropdown-menu{
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #979797;
    border-radius: 5px;
    width: 100%;
    min-width: 200px;
}
.btn_reg_drop_menu .dropdown-menu .dropdown-item{
    color: #000000;
}
.btn_reg_drop_menu .dropdown-menu .dropdown-item:hover{
    background-color: #c9c9c9;
}
.btn_reg_drop_menu .dropdown-menu .dropdown-item img{
    margin-right: 10px;
}
.forgottabwrap input{
    border-radius: 6px;
    box-shadow: unset;
    border: none;
    padding: 2px 10px;
    font-size: 13px;
    min-height: 40px;
}
.btn_forgot{
    background-color: #523fbe;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px 5px;
    border: none;
    margin-top: 25px;
}
/* forgotEND */

.product_inn_group_wrapper{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
    margin-top: 20px;
}
.product_main_a{
    display: block;
}
.productname{
    color: #fff;
    text-align: center;
    margin-top: 5px;
}
.index_product_box_cus{
    margin-top: 0;
}
.esport_bg{
    background-image: url(../images/esport/bg-tfg.jpg?v1);
    background-repeat: no-repeat;
    min-height: 700px;
    background-position: top center;
    background-size: cover;
}
.esport_content{
    max-width: 500px;
    margin: auto;
    text-align: center;
    margin-top: 19%;
}
.esport_content p{
    color: #000000;
    font-size: 15px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 600;
}
.btn_esport{
    background-color: transparent;
    background-image: url(../images/esport/btn-esport.png);
    border: none;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 104px;
    color: #fff;
    font-size: 22px;
    margin-top: 11%;
    transition: 0.2s;
}
.btn_esport:hover{
    filter: drop-shadow(0px 0px 10px #fff);
    transition: 0.2s;
}
.download_header{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.download_header a{
    position: absolute;
    left: 4%;
    top: 5px;
    color: #fff;
}
.download_header a i{
    margin-right: 7px;
}
.download_header h1{
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.slots_topbanner{
    position: relative;
}
.banner_cusradius{
    border-radius: 15px;
}
.jackpot{
    width: 56%;
    position: absolute;
    top: 50%;
    right: 2vw;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.jackpot_inn{
    position: relative;
}
.jackpotnum{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
    margin: auto;
    justify-content: center;
}
.jackpotnum span{
    /*background-image: url(../images/slots/banner-slots-jackport-1.png);*/
    background-repeat: no-repeat;
    width: 69px;
    height: 86px;
    color: #fff;
    font-size: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    background-size: 100% auto;
    background-position: center;
}
.jackpotnum span.nonum{
    background-image: unset;
    width: 13px;
}
.jackpotnum p{
    margin: 0;
    color: #fff;
    font-size: 19px;
}
.mySwiper4{
    position: relative;
}
.mySwiper4 .arrow_slider_wrp{
    /* position: absolute; */
    z-index: 2;
    width: 100%;
    margin-bottom: 0;
    top: 28%;
}
.mySwiper4 .arrow_slider{
    /* justify-content: space-between; */
    /* width: 100%; */
}
.product_row{
    margin: 15px 0;
}
.arrow_slider .slide-arrow.swiper-button-disabled{
    background-color: #171f2b87;
    color: #93acd391;
}
.mySwiper4 .arrow_slider .slide-arrow{
    color: #fff;
    background-color: #97a7b6;
}
.mySwiper4 .arrow_slider .slide-arrow.swiper-button-disabled{
    background-color: #171f2b87;
    color: #93acd391;
}
.product_row_name{
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    font-size: 0.7vw;
    padding: 0 5px;
    padding-bottom: 10px;
}
.mySwiper4 .slide-arrow__prev{
    position: absolute;
    left: 0;
    top: 31%;
    z-index: 2;
}
.mySwiper4 .slide-arrow__next{
    position: absolute;
    right: 0;
    top: 31%;
    z-index: 2;
}
.mySwiper4 .hotgame-main-img-pro {
    background: linear-gradient(180deg,#263062 0%,#111a29 100%);
    border-radius: 10px;
    cursor: pointer;
    margin: auto;
    text-align: center;
}
.mySwiper4 .hotgame-main-img-pro.active,.mySwiper4 .hotgame-main-img-pro:hover{
    background: linear-gradient(180deg,#523fbe 7%,#001e64 100%);
}
.mySwiper4 .hotgame-main-img-pro  img{
    width: 80%;
    margin: auto;
    text-align: center;
}
.product_main_wrap{
    background-color: #161f2c;
    padding: 15px;
    border-radius: 10px;
}
.product_swiperbtn_wrap{
    background-color: #2a3546;
    /* height: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    width: 400px;
    padding: 4px;
}
.product_swiperbtn{
    display: block;
    height: 40px;
    cursor: pointer;
    border-radius: 25px;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    background-color: #2a3546;
    color: #fff;
    min-width: 33%;
    transition: 0.2s;
}
.product_swiperbtn.on,.product_swiperbtn:hover{
    background-color: #523fbe;
    transition: 0.2s;
}
.product_grid_wrap{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 15px;
    margin: 20px 0 0 0;
}
.product_box{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gamename{
    text-align: center;
    color: #fff;
    font-size: 0.7vw;
}
.gamenamerate{
    background-color: #523fbe;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 0.7vw;
    padding: 3px;
}
.product_box{
    cursor: pointer;
}

/* promo */
.mix {
    display: none;
}
.filter-menu-bar{
    margin: 0;
    /* background: #29313b; */
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.pmbox {
    color: #ffffff;
    padding: 15px 15px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(0deg, #1d2633 0%, #2e394a 100%);
    border: 1px solid #333f53;
    border-radius: 9px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pmbox i {
	width: 28px;
	font-size: 19px;
	display: flex;
	justify-content: center;
}
.pmbox.active {
	background: #523fbe;
	color: #fff;
	border: 1px solid #523fbe;
}
.promo-content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}
.pm-boxer {
    /* max-width: 470px; */
    margin: auto;
    background: #29313b;
    color: #fff;
    padding: 0;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}
.promo-img {
    position: relative;
}
.promo-img img {
	transition: 0.3s;
}
.promo-label {
    background: #0cd664;
    color: #d7f3ff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    padding: 6px 10px 4px;
    min-width: 140px;
    border-radius: 0 0 30px 0;
    position: absolute;
    left: -2px;
    top: -2px;
    z-index: 2;
}
.promo-title-box {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 11px;
}
.title-pm {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
button.more-info-btn {
    background: #0cd664;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    border-radius: 7px;
    padding: 4px 15px;
}
button.more-info-btn.more-info-btn_main{
	background: #3b3b3a;
}
.pm-boxer:hover .promo-img img {
	transition: 0.3;
	transform: scale(1.05);
	filter: brightness(1.1);
}
.promo_bgmain{
    background-color: #111923;
    border-radius: 15px;
    padding: 15px;
}
.filterbox{
    display: grid;
    grid-template-columns: 175px auto;
    gap: 3%;
}
.pmbox img{
    width: 28px;
    filter: brightness(2.5);
}



.modal-dialog.promo {
    max-width: 800px !important;
    border-radius: 20px;
  }
  
  .modal-content.promo {
    border: none;
    background-color: #1a1c29;
    border-radius: 20px;
  }
  
  button.close-promo {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
  }
  
  .grlist {
    color: var(--text-color);
  }
  
  .pm-title-wrapper {
    font-size: 21px;
    font-weight: 700;
    background: #3d29c6;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 20px;
  }
  
  .pmtable-wrapper {}
  
  table.promo-table tr th {
    color: #fff;
    background: #d9353d;
    padding: 4px;
    text-align: center;
    border: 1px solid var(--text-color);
  }
  
  table.promo-table tr td {
    border: 1px solid var(--text-color);
    padding: 5px;
    color: var(--text-color);
    text-align: center;
  }
  
  .gr-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #d9353d;
  }
  
  .grlist ul {
    padding-left: 20px;
    margin-top: 5px;
  }
  
  .grlist ul li {
    padding-bottom: 8px;
    font-size: 14px;
    list-style: disc;
  }
  
  .promo-pop-cont {
    padding: 15px;
    border: 1px solid #d9353d;
    border-radius: 0px 0px 20px 20px;
  }
  
  .promo-nav button {
    background: #1e2024;
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
  }
  .promo-modal-tnc{
    font-size: 14px;
    color: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 2px;
  }
  
  .promo-modal-tnc li span{
    color: #ffffff;
    margin-right: 10px;
  }
  .promo_table tr th{
    background: #6c7ba8;
    padding: 10px;
    border: 1px solid #6c7ba8;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }
  .promo_table tr td{
    font-size: 12px;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #6c7ba8;
    background: #6c7ba833;
    text-align: center;
  }
  .basic-text{
    font-size: 12px;
    color: #ffffff;
  }
  .promo_table{
    width: 100%;
  }
  .promo-text {
    padding: 20px;
    background-color: #1a1c29;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
}
.red-underline {
    margin: 10px 0 0 0;
}
.promo-body{
    
background-color: transparent;
}
.promo_ul{
    padding-left: 1rem;
    font-size: 12px;
}

/* vip */
.vip_banner {
    position: relative;
    background: url(../images/vip/newvipbanner.jpg);
    min-height: 440px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: -webkit-fill-available;
}
.vip_banner img{
    width: 100%;
}
.inner_product_txt {
    color: #ada6d2;
    max-width: 500px;
    position: absolute;
    top: 12%;
    right: 10%;
}
.vip_tit {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 20px;
}
.poker_org_txt {
    color: #8744ec;
}
.vip_con {
    font-size: 13px;
    margin-bottom: 20px;
}
.inner_product_content.vip_wrap {
    width: 400px;
    text-align: left;
    margin-left: auto;
    padding-top: 110px;
}

.vip_status_wrap{
    display: grid;
    grid-template-columns: 300px auto;
    padding-top: 0;
    align-items: center;
}
.vip_status_wrap img{
    width: 235px;
}
.progress-bar{
    position: relative;
    overflow: hidden;
    height: 30px;
    margin-top: 10px;
    border-radius: 30px;
    background: repeating-linear-gradient(35deg,#3b3f4c,#3b3f4c 1rem,#111 0,#111 1.2rem);
}
.progress-bar>span{
    position: relative;
    display: block;
    height: 100%;
}
.progress-bar>span:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient(35deg,#8744ec,#8744ec 1rem,#111 0,#111 1.2rem);
}
.current-status-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.current-status h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.status-bottom h6 {
    margin: 0;
    padding: 39px 0 0px;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.status-bottom h6:before {
    width: 1px;
    height: 27px;
    position: absolute;
    background: #fff;
    bottom: 20px;
    left: 50%;
    content: "";
    transform: translateX(-50%);
}
.status-bottom p {
    color: #707070;
    font-size: 13px;
    padding: 7px 0 0;
    line-height: 13px;
    text-align: center;
    font-weight: bold;
    font-weight: 400;
}
.vip span {
    text-shadow: 1px 3px 4px #000;
}
.status-bottom span {
    display: block;
}
.grey-color{
    color: #a5a5a5;
}
.gold-color{
    color: #a38842;
}
.blue-color{
    color: #a5c0d4;
}
.purple-color{
    color: #7d6daa;
}
.brown-color{
    color: #f0c783;
}
.elite-color{
    color: #c0a06e;
}
.progress_percent_bronze{
    width: 7%;
}
.progress_percent_silver{
    width: 29%;
}
.progress_percent_gold{
    width: 50%;
}
.progress_percent_platinum{
    width: 72%;
}
.progress_percent_diamond{
    width: 100%;
}

.vip_table{
    color: #d88aff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}
.icon_1st{
    content: '';
    min-height: 28px;
}
.txt_yellow{
    color: #ffffff;
}
.vip_line hr{
    border-top: 1px solid rgb(175 175 175);
}
table.vip_table tbody tr td:first-child{
    text-align: left;
}
table.vip_table tbody tr td img{
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 2px 2px #ffffff30;
}
table.vip_table tbody tr td{
    padding: 10px;
}
table.vip_table tbody tr td.text-left{
    padding-bottom: 0px;
    padding-top: 12px;
    text-transform: uppercase;
}
.vip_pri{
    font-size: 20px;
    vertical-align: bottom;
}
.vip_bom_img{
    text-align: center;
    padding-top: 30px;
}

/* vipEND */

.infopage_wrapper{
    display: grid;
    grid-template-columns: 300px auto;
    gap: 10px;
}
.infopage_wrapper .left{
    background-color: #111923;
    padding: 28px 0;
    border-radius: 10px;
}
.info_menu_box_title{
    font-size: 18px;
    color: #fff;
    padding-left: 62px;
    padding-bottom: 20px;
    margin-bottom: 0;
}
.info_menu_boxul{
    padding-left: 0;
    list-style: none;
}
.info_menu_boxul li a{
    display: block;
    font-size: 16px;
    color: #97a7b6;
    width: 100%;
    padding: 7px;
    padding-left: 62px;
}
.info_menu_boxul li a.active{
    background-color: #222b51;
    color: #dba84c;
    position: relative;
}
.info_menu_boxul li a.active:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 26px;
    background: #dba84c;
    border-radius: 0 30% 30% 0;
}
.hr_infomenu{
    border-top: 1px solid #2b445b7a;
    opacity: 0.8;
}
.infopage_wrapper .right{
    background-color: #111923;
    padding: 26px;
    border-radius: 10px;
    color: var(--font-color);
}
.infopage_wrapper .right h5{
    color: var(--yellow);
    font-size: 15px;
    font-weight: 700;
    line-height: 38px;
}
.infopage_wrapper .right h5.primary-color{
    color: var(--primary-color);
}
.infopage_wrapper .right p {
    font-size: 14px;
    line-height: 38px;
    text-indent: 2em;
    font-weight: 400;
}

.pagcor{
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}
.pacgor_wrap{
    max-width: 500px;
    margin: auto;
}
.licimg img{
    width: 100%;
}
.pagcor a{
    color: #0d6efd!important;
}
.match_brief h4 {
    text-align: center;
}
.match_brief ul {
    margin-top: 17px;
    display: flex;
    flex-wrap: wrap;
}
.match_brief ul li {
    display: flex;
    margin-bottom: 26px;
    flex-basis: 49%;
    padding-right: 20px;
    align-items: center;
}
.match_brief ul li img {
    margin-top: 6px;
    width: 128px;
    margin-right: 20px;
}
.infopage_wrapper .right.match_brief ul li p {
    line-height: 24px;
    text-indent: unset;
}
.match_brief ul li p span {
    font-weight: 700;
}
.match_brief.spec ul li{
    flex-basis: 100%;
}

/* afterlogin */
.main_container_afterlogin{
    padding-top: 10px;
    padding-bottom: 10px;
}
.head_bg_charge{
    width: 346px;
    height: 50px;
    background-color: var(--bg-color-6);
    border-radius: 10px;
    box-shadow: 0 3px 6px #00000029;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 17px;
    gap: 12px;
}
.head_bg_charge_left{
    width: 196px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.head_amtimg{
    width: 22px;
}
.head_bg_charge_left span{
    color: #ffffff;
    font-size: 12px;
}
.head_bg_charge_right img{
    width: 25px;
}
.head_bg_charge_right{
    width: 133px;
    height: 44px;
    background: linear-gradient(16deg, #2021a1 0%, #9c06cb 75%);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 10px;
}
.amt_pop {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    padding: 13px;
    background-color: #29374b;
    border-radius: 10px;
    border: 1px solid rgb(39, 43, 55);
    box-shadow: rgba(39, 43, 55, 0.79) 0px 2px 3px;
    top: 163%;
    right: 0px;
    min-width: 260px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.amt_pop.show{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.wallet_list{
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-right: 10px;
    width: 320px;
}
.wallet_list .main-wallet{
    height: 35px;
    display: flex;
    justify-content: space-between;
    background-color: var(--primary-color);
    border-radius: 4px;
    padding: 5px 10px;
    align-items: center;
}
.wallet_list .main-wallet span ,.wallet_list .main_alllisting span{
    font-size: 13px;
}
.wallet_list .main_alllisting{
    height: 35px;
    display: flex;
    justify-content: space-between;
    background-color: #51698d;
    border-radius: 4px;
    padding: 5px 10px;
    align-items: center;
}
.btn_in{
    border: none;
    background-color: greenyellow;
    border-radius: 4px;
}
.btn_out{
    border: none;
    background-color: rgb(255, 47, 47);
    border-radius: 4px;
    color: #fff;
}
.main_alllistingspan{
    display: flex;
    gap: 6px;
    align-items: center;
}
.header_profileinfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 200px;
    height: 50px;
    cursor: pointer;
    background: var(--bg-color-6);
    border-radius: 25px;
    position: relative;
}
.header_profileinfo_left{
    display: flex;
    align-items: center;
}
.header_profileinfo_left img{
    width: 39px;
}
.header_profileinfo_left img.imageviphead{
    width: 20px;
}
.header_profileinfo_mid{
    color: #fff;
    overflow: hidden;
    white-space: nowrap; /* Don't forget this one */
    text-overflow: ellipsis;
    width: 87px;
    font-size: 13px;
    text-align: center;
}
.header_profileinfo_right{
    color: #59677c;
}
.profile_head_box{
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    width: 320px;
    background: var(--bg-color-6);
    border: 1px solid #2f3a4b;
    border-radius: 12px;
    padding: 16px 26px 26px;
    top: 110%;
    right: 0px;
    min-width: 260px;
}
.profile_head_box.show{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.profile_box_head{
    position: relative;
    text-align: center;
}
.imagevipheadbox_wrap{
    width: 32px;
    height: 36px;
    text-align: center;
    line-height: 32px;
    background-image: url(../images/header/vip_bg.png);
    background-size: contain;
    position: absolute;
    bottom: 2px;
    left: 140px;
}
.imagevipheadbox{
    width: 17px;
}
.profileid{
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin: 5px 0;
}
.head_profileul{
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
}
.head_profileul li a{
    width: 100%;
    height: 44px;
    background: #2a3546;
    border-radius: 10px;
    box-shadow: 0 3px 6px #00000029;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    cursor: pointer;
    color: #97a7b6;
    gap: 15px;
}
.head_profileul li a i{
    font-size: 21px;
}
.head_inbox{
    position: relative;
}
.head_inbox .badge {
    position: absolute;
    top: -40%;
    right: -20px;
    padding: 5px;
    border-radius: 50%;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
}
.afterlogin_wrap{
    display: grid;
    grid-template-columns: 350px auto;
    gap: 10px;
    grid-template-columns: 26% 73%;
}
.afterlogin_wrap_left{
    background-color: rgba(17, 25, 35);
    border-radius: 10px;
}
.menu_backend_profile{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.profile_menu_img{
    width: 70px;
}
.profile_note{
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-size: 13px;
}
.profile_note1{
    color: #fff;
}
.profile_note2{
    color: var(--yellow);
}
.profile_note3{
    color: var(--font-color);
}
.menu_backend_walletbalance{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 13px;
    margin-bottom: 10px;
}
.menu_backend_walletbalancetext{
    display: flex;
    align-items: center;
    color: #fff;
} 
.menu_backend_walletbalancetext span{
    color: var(--yellow);
    margin: 0 6px;
}
.revoc_img{
    cursor: pointer;
}
.profile_box_btn{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    border-top: 1px solid rgb(29, 39, 51);
    border-bottom: 1px solid rgb(29, 39, 51);
    padding: 20px 0;
    margin: 0 20px;
}
.profile_box_btn i{
    font-size: 15px;
}
.profile_box_btn1{
    border: 1px solid #5780e9;
    background: transparent;
    border-radius: 6px;
    color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 8px;
    font-size: 13px;
    padding: 0 5px;
} 
.profile_box_btn1.active,.profile_box_btn1:hover{
    background: linear-gradient(220deg, rgb(70, 47, 205) 18%, rgb(24, 104, 220) 100%);
    color: #fff;
}
.profile_box_btn2{
    border: 1px solid #f9a51a;
    background: transparent;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 8px;
    color: #f9a51a;
    font-size: 13px;
    padding: 0 5px;
} 
.profile_box_btn2.active,.profile_box_btn2:hover{
    background: linear-gradient(rgb(219, 168, 76), rgb(248, 200, 117));
    color: #fff;
}
.profile_box_btn3{
    border: 1px solid #51dcc9;
    background: transparent;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 8px;
    color: #51dcc9;
    font-size: 13px;
    padding: 0 5px;
} 
.profile_box_btn3.active,.profile_box_btn3:hover{
    background: linear-gradient(257deg, rgb(51, 193, 173) 28%, rgb(112, 254, 234) 75%);
    color: #000000;
}
.afterlogin_side_menu{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 20px 0;
}
.afterlogin_side_menu a{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--font-color);
    font-size: 13px;
    padding: 10px 20px;
}
.afterlogin_side_menu a.active,.afterlogin_side_menu a:hover{
    background: linear-gradient(257deg, #111923 19%, #222b51 95%);
}
.afterlogin_side_menu a img{
    width: 30px;
    margin-right: 10px;
}
.afterlogin_wrap_right{
    background-color: #111923;
    border-radius: 10px;
}
.wrap_right_header{
    background-color: var(--bg-color-6);
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 72px;
    padding-right: 72px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    width: 100%;
    align-items: center;
}
.wrap_right_box_left{
    display: flex;
    align-items: center;
    gap: 10px;
}
.wrap_right_box_left img{
    width: 90px;
    border-radius: 8px;
}
.box_left_vip p{
    color: var(--font-color);
    margin: 0;
    font-size: 13px;
}
.box_left_vip span{
    color: #fff;
    font-size: 11px;
}
.box_left_vip{
    display: flex;
    flex-direction: column;
}
.box_border{
    background-color: #2c3643;
    height: 40px;
    margin: 0 36px;
    border-inline-start: 1px solid rgba(5, 5, 5, 0.08);
}
.wrap_right_body{
    padding: 30px 72px 60px 72px;
    color: #fff;
    position: relative;
}
.form_wrapper label{
    color: #fff;
    margin-bottom: 10px;
    font-size: 13px;
}
.form_input{
    margin-bottom: 30px;
}
.share_tab_tri .tab{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.share_tab_tri .tablinks{
    width: 140px;
    text-align: center;
    background-color: var(--bg-color-4);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    padding: 8px 4px;
    border: none;
    position: relative;
}
.share_tab_tri .tablinks img{
    width: 34px;
}
.tab_txt{
    font-size: 13px;
}
.share_tab_tri .tablinks.active,.share_tab_tri .tablinks:hover{
    background-color: #4f3fc5;
}
.share_tab_tri .tabcontent{
    display: none;
    margin-top: 25px;
}
.top_right_percent{
    background-color: #0cd263;
    color: #fff;
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    position: absolute;
    right: 0;
    top: 0;
}
.share_tab_tri .tablinks img.top_right_referimg{
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
}
.form_input input{
    background: #FFFFFF;
    border: none;
    color: #000;
    height: 44px;
    width: 100%;
    /* min-width: 99%; */
    border-radius: 6px;
    text-overflow: ellipsis;
    touch-action: manipulation;
    -webkit-appearance: none;
    font-size: 14px;
}
.form_input input::placeholder{
    color: #c7c7c7;
}
.form_input select{
    color: #8a8a8a;
    height: 44px;
}
.form_input option:not(:first-of-type) {
    color: #8a8a8a;
}
.remark{
    font-size: 11px;
    color: var(--font-color);
    margin: 10px 0;
}
.select_amt{
    display: flex;
    align-items: center;
    gap: 10px;
}
.select_amt a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dba84c;
    color: #000;
    padding: 5px;
    border-radius: 5px;
    min-width: 58px;
}
.select_amt a:hover{
    background-color: #ffedcc;
}
.dep_channel{
    display: flex;
    align-items: center;
    gap: 10px;
}
.dep_channel button{
    border: 1px solid transparent;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 7px;
    padding: 8px 5px;
    min-width: 100px;
    gap: 5px;
}
.dep_channel button:hover,.dep_channel button.active{
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}
.dep_channel button.active:after{
    content: "";
    width: 26px;
    height: 22px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-image: url(../images/afterlogin/activeImg.svg);
    background-position: center;
    background-size: cover;
}
.dep_channel img{
    height: 28px;
    margin: auto;
}
.dep_channel_txt{
    color: var(--font-color);
    font-size: 12px;
    text-align: center;
    margin: auto;
}
.btn-submit{
    background-color: var(--primary-color);
    width: 100%;
    border: none;
    height: 40px;
    color: #fff;
    padding: 4px 15px;
    border-radius: 6px;
}

.uploader {
    display: block;
    /* clear: both; */
    /* margin: 0 auto; */
    width: 100%;
    /* max-width: 600px; */
  }
  .uploader label {
    float: left;
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #becaec;
    transition: all 0.2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .uploader label:hover {
    border-color: #becaec;
  }
  .uploader label.hover {
    border: 3px solid #454cad;
    box-shadow: inset 0 0 0 6px #eee;
  }
  .uploader label.hover #start i.fa {
    transform: scale(0.8);
    opacity: 0.3;
  }
  .uploader #start {
    float: left;
    clear: both;
    width: 100%;
  }
  .uploader #start.hidden {
    display: none;
  }
  .uploader #start i.fa {
    font-size: 50px;
    margin-bottom: 1rem;
    transition: all 0.2s ease-in-out;
  }
  .uploader #response {
    float: left;
    clear: both;
    width: 100%;
  }
  .uploader #response.hidden {
    display: none;
  }
  .uploader #response #messages {
    margin-bottom: 0.5rem;
  }
  .uploader #file-image {
    display: inline;
    margin: 0 auto 0.5rem auto;
    width: auto;
    height: auto;
    max-width: 180px;
  }
  .uploader #file-image.hidden {
    display: none;
  }
  .uploader #notimage {
    display: block;
    float: left;
    clear: both;
    width: 100%;
  }
  .uploader #notimage.hidden {
    display: none;
  }
  .uploader progress,
  .uploader .progress {
    display: inline;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 180px;
    height: 8px;
    border: 0;
    border-radius: 4px;
    background-color: #eee;
    overflow: hidden;
  }
  .uploader .progress[value]::-webkit-progress-bar {
    border-radius: 4px;
    background-color: #eee;
  }
  .uploader .progress[value]::-webkit-progress-value {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
  }
  .uploader .progress[value]::-moz-progress-bar {
    background: linear-gradient(to right, #393f90 0%, #454cad 50%);
    border-radius: 4px;
  }
  .uploader input[type=file] {
    display: none;
  }
  .uploader div {
    margin: 0 0 0.5rem 0;
    color: #5f6982;
  }
  .uploader .btn {
    display: inline-block;
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    clear: both;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: initial;
    border: none;
    border-radius: 0.2rem;
    outline: none;
    padding: 0 1rem;
    height: 36px;
    line-height: 36px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    background: var(--primary-color);
    /* border-color: #454cad; */
    cursor: pointer;
  }
.cryptotab{
    display: flex;
}
.crypto_channel{
    display: flex;
    align-items: center;
    gap: 10px;
}
.crypto_channel button{
    border: 1px solid transparent;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 7px;
    padding: 8px 5px;
    min-width: 130px;
    gap: 5px;
    min-height: 100px;
}
.crypto_channel button:hover,.crypto_channel button.active{
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}
.crypto_channel button.active:after{
    content: "";
    width: 26px;
    height: 22px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-image: url(../images/afterlogin/activeImg.svg);
    background-position: center;
    background-size: cover;
}
.crypto_channel img{
    height: 38px;
    margin: auto;
}
.crypto_channel_txt{
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: auto;
}
.crypto_flex{
    display: flex;
    align-items: center;
    gap: 10px;
}
.crypto_flex button{
    height: 46px;
    width: 80px;
    background-color: #1e2b3e;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
    border: none;
    cursor: pointer;
}
.crypto_flex button.active,.crypto_flex button:hover{
    background-color: #4f3fc5; 
}
.cryptotab_right{
    padding: 40px 12px;
    background-color: #1d2633;
    border-radius: 10px;
    margin-top: -128px;
    margin-right: -6%;
}
.cryptotab_left{
    min-width: 485px;
    margin-right: 10px;
}
.remind dl {
    display: flex;
    margin-bottom: 12px;
}
.remind dl dt {
    padding-right: 1vw;
    margin-top: 3px;
}
.remind dl dt span {
    font-size: 12px;
    width: 16px;
    height: 16px;
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remind dl dd {
    font-size: 0.7vw;
    /* line-height: 24px; */
    color: var(--font-color);
}
.qr_wrapper_crypto{
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
}
.qr_wrapper_crypto_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 13px;
}
.qr_crypto_bg{
    width: 172px;
    height: 172px;
    background-image: url(../images/afterlogin/qr_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr_crypto_bg img{
    width: 80%;
}
.btn_saveqr{
    width: 128px;
    height: 30px;
    background-color: #ff4d4f;
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    margin: auto;
    margin-left: 22px;
}
.qr_wrapper_crypto_right {
    color: var(--font-color);
    font-size: 12px;
}
.warn-color {
    color: var(--warn-color);
}
.qr_wrapper_crypto_right span{
    color: #fff;
}
.qr_wrapper_crypto_right p{
    margin-bottom: 8px;
}
.form_input input.usdtinput{
    border: 1px solid #5c7dec;
    background: transparent;
}
.usdt_inputwrap{
    position: relative;
}
.usdtcopy{  
    position: absolute; 
    right: 9px; 
    top: 15px; 
    cursor: pointer; 
    color: #ffc107;
}
.important{ 
    font-size: 12px;
    text-align: center;
    margin: 20px;
}
.table-share tr th {
    background-color: #4f3fc5;
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #6c7ba8;
    color: #fff;
}

.table-share tr td {
    padding: 5px;
    border: 1px solid #6c7ba8;
    text-align: center;
}
.form_input_transfer{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 94.5%;
}
.form_input_transfer label{
    font-size: 14px;
    margin: 0;
    min-width: 100px;
}
.transfer_right span{
    width: 29px;
    height: 24px;
    border: 1px solid #26496a;
    display: inline-block;
}
.transfer_right .top{
    border-left: 0;
    border-bottom: 0;
}
.transfer_right .btm{
    border-left: 0;
    border-top: 0;
}
.transfer_right img{
    width: 28px;
    text-align: center;
    margin-left: 14px;
}
.tran_input_cus{  
    position: relative;  
    z-index: 1;
}
.transfer_right{
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 18px;
    z-index: -1;
}
.transfer_amt_row{
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    position: relative;
}
.transfer_amt_row input{
    width: 30%;
}
.tran_devider{
    position: relative;
    top: -0.06em;
    display: inline-block;
    height: 0.9em;
    margin: 0 8px;
    vertical-align: middle;
    border-top: 0;
    border-inline-start: 1px solid rgba(5, 5, 5, 0.06);
}
.transfer_amt_row span{
    color: var(--font-color);
}
.transfer_amt_row a{
    color: var(--yellow);
    height: 44px;
    right: 9px;
    position: absolute;
    top: 26%;
}
.tran_form_btn{
    display: grid;
    grid-template-columns: 69% 30%;
    gap: 10px;
}
.btn-reset{
    color: var(--font-color) !important;
    background-color: var(--bg-color-6);
}
.transfer_contentgame_grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.contentgame_box{
    background: var(--bg-color-6);
    border-radius: 10px;
    padding: 18px;
}
.contentgame_box hr{
    border-top: 1px solid #596d7f;
}
.contentgame_box h5{
    color: var(--yellow);
    font-size: 13px;
}
.contentgame_box ul{
    padding-left: 0;
    list-style: none;
}
.contentgame_box ul li{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.contentgame_box ul li p{
    color: #fff;
    margin: 0;
    font-size: 13px;
}
.contentgame_box ul li span{
    color: var(--font-color);
}
.transaction_selbtn{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 15px;
}
.transaction_selbtn button{
    background-color: var(--bg-color-6);
    color: var(--font-color);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    min-height: 44px;
    padding: 5px;
    font-size: 13px;
}
.transaction_selbtn button.active,.transaction_selbtn button:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.transtime_grid{
    display: flex;
    align-items: center;
    gap: 30px;
}
.transtime_grid a{
    color: #fff;
    border-bottom: 1px solid transparent;
    font-size: 13px;
}
.transtime_grid a.active,.transtime_grid a:hover{
    color: var(--yellow);
    border-bottom: 1px solid var(--yellow);
}
.historynote{
    color: var(--font-color);
    font-size: 11px;
    display: flex;
    justify-content: center;
}
.historynote:before{
    position: relative;
    width: 70px;
    border-block-start: 1px solid transparent;
    border-block-start-color: inherit;
    border-block-end: 0;
    transform: translateY(50%);
    content: '';
    border-top: 1px solid #2A3546;
}
.historynote:after{
    position: relative;
    width: 70px;
    border-block-start: 1px solid transparent;
    border-block-start-color: inherit;
    border-block-end: 0;
    transform: translateY(50%);
    content: '';
    border-top: 1px solid #2A3546;
}
.historynote span{
    padding: 0 10px;
    text-align: center;
}

.table_history{
    margin-top: 40px;
}
.tableshareall{
    width: 100%;
    font-size: 13px;
    border-spacing: 0;
    border-collapse: separate;
}
.tableshareall thead{
    background-color: #1d2633;
    text-align: center;
}
.tableshareall tbody{
    text-align: center;
}
.tableshareall th,.tableshareall td{
    padding: 8px;
    font-weight: 300;
}
.tableshareall thead tr th:first-child{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.tableshareall thead tr th:last-child{
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.tableshareall tbody tr td{
    border-bottom: 1px solid #ffffff26;
}
.form_insert, .form_default {
    display: none; /* Initially hide both forms */
}
.form_default.active, .form_insert.active {
    display: block; /* Show the active form */
}
.form_default{

}
.form_default img{
    margin: auto;
}
.form_default_noted{
    display: flex;
    justify-content: center;
    color: var(--font-color);
    text-align: center;
    font-size: 12px;
}
.btnadd_bank{
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 12px;
    width: 220px;
    font-size: 14px;
    margin: auto;
}
.form_default_grid{
    text-align: center;
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.addbank_form_btn{
    display: grid;
    grid-template-columns: 30% 69% ;
    gap: 10px;
}
.batchdelete{
    text-align: end;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
    cursor: pointer;
}
.table_history_inbox{
    margin-top: 15px;
}
.delete_cus{
    cursor: pointer;
}
.msg_sel{
    cursor: pointer;
}
.profile_body{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px 80px;
}
.profile_body .form_input{
    margin-bottom: 0;
}
.profile_passwrap{
    position: relative;
}
.passedit{
    position: absolute; 
    right: 13px; 
    top: 10px;
    cursor: pointer;
    color: #0d6efd;
}
.refer_copy{
    position: relative;
}
.refer_copyicon{
    position: absolute;
    right: 9px;
    top: 12px;
    cursor: pointer;
    color: #0d6efd;
    font-size: 18px;
}
.qr-sample_refer{
    text-align: center;
}
.qr-sample_refer img{
    width: 175px;
}

button.btn-tnc {
    background: #0d131c;
    width: 100%;
    text-align: left;
    font-size: 13px;
    padding: 10px 15px;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 35px;
}

button.btn-tnc.collapsed {
    background: #0d131c;
    color: #fff;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 8px;
}

.tnc-body {
    background: #0d131c;
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 0px;
    line-height: 1.3;
    font-size: 11px;
}

.tnc-body ol {
    padding-left: 15px;
}

.tnc-body ol li {
    padding-bottom: 8px;
}

button.btn-tnc::after {
    content: '>';
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 10px;
    transform: rotate(270deg);
    transition: all 0.3s;
}

button.btn-tnc.collapsed::after {
    content: '>';
    transform: rotate(90deg);
    transition: all 0.3s;
}
.sup_span{
    background-color: var(--primary-color);
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 15px; 
    border-radius: 100px;
    padding: 5px;
    font-size: 12px;
    margin-right: 10px;
}
.tnc-body p{
    text-indent: 30px;
    letter-spacing: 0.6px;
    line-height: 1.6;
    font-weight: 300;
}
.supporttable{
    width: 100%;
}
table.supporttable td {
    border-right: 1px #eee solid;
    border-bottom: 1px #eee solid;
    vertical-align: middle;
}
table.supporttable tr td:first-child {
    width: 35%;
    border-left: 1px #eee solid;
    text-align: center;
}
table.supporttable tr td:last-child {
    padding: 4px;
}
table.supporttable tr:first-child {
    border-top: 1px #eee solid;
}
.deposit-reminder {
    padding: 15px;
    border-radius: 8px;
    background: #0000008a;
    color: #fff;
    border: 1px solid var(--primary-color);
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .deposit-reminder ol,.deposit-reminder ol li{
    list-style: decimal;
  }
  .deposit-reminder ol{
    padding: 0 15px;
  }
/* afterloginend */





/* menuoff */
.menuoff .side_menunav{
    width: 88px;
    /* transition: 0.3s; */
}
.menuoff .sidebg{
    width: 72px;
    /* transition: 0.3s; */
}
.menuoff .vipmenubg{
    width: 72px;
    transition: unset;
}
.menuoff .itemtext{
    display: none;
}
.menuoff .vipmenubg:before{
    width: 53px;
    transition: unset;
}
.menuoff .main{
    /* width: calc(100vw - 88px); */
    padding-left: 88px;
    /* transition: 0.3s; */
}

@media screen and (max-width: 1100px) {
    .main {
        width:1100px;
    }
}