@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

body {font-family: "Roboto", sans-serif;line-height: 1.1;font-size:15px;margin:0 auto;color:#191919;max-width: 991px;}

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 { 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: #666;
    width: 100%;
}
input:focus-visible{
    outline: unset;
}
.main_body{
    padding-bottom: 12%;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: unset;
}
button:focus{
    outline: 0;
    box-shadow: unset;
}
select:focus-visible {
    outline: 0;
}
.logo{
    width: 79px;
}
.logo img{
/*    width: 87px;*/
}
.login_btn{
    background-image: linear-gradient(#f1e2d0, #d8c0a7);
    color: #fff;
    border: 1px solid #bd9f7f;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 3px 8px;
    min-width: 75px;
    text-shadow: 0px 0px 2px #422200;
}
.reg_btn{
    background-image: linear-gradient(#f1e2d0, #d8c0a7);
    color: #fff;
    border: 1px solid #bd9f7f;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 3px 8px;
    min-width: 75px;
    text-shadow: 0px 0px 2px #422200;
}
.bg-audio {
    background-image: url(../images/icon/i_sound.png);
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 2;
    display: block;
    background-size: 100% 100%;
    background-position: center;
}
.bg-audio.muted {
    background-image: url(../images/icon/i_soundoff.png);
}
/** Header **/
.afterlogin_user{
    display: flex;
    align-items: center;
    font-size: 11px;
    grid-gap: 5px;
}
.afterlogin_user img{
    width: 20px;
}
.header_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-top {
    padding: 5px 0;
    /* position: fixed; */
    top: 0;
    width: 100%;
    max-width: 991px;
    z-index: 99;
    background: #fff;
}
.right-member {
    display: flex;
    grid-template-rows: 1fr;
    grid-column-gap: 7px;
    margin-right: 0;
}
.right-login-btn {
    float: right;
    color: #8e8e8e;
    font-size: 22px;
}
.header_btn_wrap{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}
.lang-box {
    display: inline-block;
    padding: 2px 0;
}
.lang-btn {
    background: transparent;
        border: 1px solid transparent;
}
.lang-btn:focus {
    outline: none;
}
.lang-btn.dropdown-toggle::after {
    color: #fff;
    position: absolute;
    top: 13px;
}
.dropdown-menu.language {
    padding: 6px 5px;
    background: #ffd643;
    min-width: auto;
    border: none;
    text-align: center;
    border-radius: 20px;
}
.dropdown-menu.language a {
    padding: 1px 5px;
}
.dropdown-menu.language a:hover {
    background: transparent;
}
.dropdown-menu.language a:hover img {
    filter: drop-shadow(0px 0px 2px #fff);
}
.lang-btn img, .dropdown-menu.language img {
    max-width: 21px;
}
.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    transition: opacity .6s ease;
    border-radius: 100%;
    /* transform: skew( -25deg); */
}
.carousel-indicators .active {
    opacity: 1;
    background-color: #e9cd7a;
}
.carousel-indicators li {
    background-color: #1c1c1c;
}
.mobile-slider .carousel-inner {
    border-radius: 8px;
}
.mobile-slider {
    padding: 0px 10px 10px;
}
.annouce-sec {
    /* padding: 3px 0; */
    /* background: #000000; */
    /* border: 1px solid #c87f1a; */
    border-left: none;
    border-right: none;
    /* height: 33px; */
    color: #9aa4c2;
    font-size: 13px;
    /* box-shadow: 0 0 6px #c87f1a; */
}
.annuuce-wrapper {
    display: grid;
    grid-template-columns: 6% auto;
    align-items: center;
}
.speaker-icon {
    width: 20px;
}

.annouce-wrap{
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: unset;
    display: flex;
    align-items: center;
      position: relative;
  box-sizing: border-box;
}
.anouce-msg {
    margin: 0;
    text-align: center;
/*    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);*/
    -moz-animation: scroll-left 100s linear infinite;
    -webkit-animation: scroll-left 100s linear infinite;
    animation: scroll-left 10s linear infinite;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
}

@-webkit-keyframes scroll-left {
 0% {
    left: 100%;
  }
  100% {
    left: 0;
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
    transform: translateX(-100%);
  }
}


/*home*/
.wrapper_main{
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
}
.no-sign {
    color: #b1987f;
    font-size: 12px;
}
.pls-sign a {
    color: #b1987f;
    font-size: 11px;
}

.game-sec{
    padding: 20px 0;
}
.slct-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 0px;
    align-items: center;
}
.slct-wrapper a {
    display: block;
    color: #b8a18b;
    text-align: center;
    font-size: 12px;
}
.slct-wrapper a img {
    display: block;
    margin: auto;
    width: 35px;
}
.index_barwrap {
    display: grid;
    grid-template-columns: 25% auto;
}
.nav-pills li.nav-item {
    width: 100%;
    text-align: center;
}
.nav-pills.game-nav .nav-link {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-radius: 10px;
    padding: 2px 5px 2px 1px;
    margin-bottom: 9px;
    color: #9aa4c2;
    border: 1px solid #bdb09d00;
    /* font-size: 11px; */
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0px 3px 11px -5px rgb(0 0 0 / 58%);
    align-items: center;
    background-image: url(../images/icon/tabNormal.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}
.nav-pills.game-nav .nav-link.active, .nav-pills.game-nav .show>.nav-link {
    color: #fff;
    background-color: #eddfcb;
    border: 1px solid #bdb09d;
    /* text-shadow: 0px 4px 4px #907c5d; */
    background-image: linear-gradient(#f1e2d0, #d8c0a7);
}
.game-nav .nav-link img {
    max-width: 100%;
    margin-right: 0px;
    padding: 5px;
}
.index_rightbar .s-pro {
    /* height: 120px; */
    margin: 0 0 10px 0;
    /* overflow: hidden; */
    border-radius: 5px;
    box-shadow: 0 0.3rem 0.6rem 0 rgb(65 70 92 / 30%);
}
.index_rightbar .s-pro img{
    width: 100%;
}
.index_rightbar{
    padding-left: 10px;
}
.gwrap_1{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.no-img-active{
    display: none;
}
.nav-pills.game-nav .nav-link.active .no-img{
    display: none;
}
.nav-pills.game-nav .nav-link.active .no-img-active{
    display: block;
}

/*footer*/
.menu-btm {
    position: fixed;
    max-width: 991px;
    width: 100%;
    bottom: 0;
    background: #fff;
    z-index: 99;
}
.menu-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
    padding: 6px 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.1);
}
.menu-wrapper a {
    color: #9aa4c2;
    font-size: 10px;
}
.menu-wrapper a img {
    max-width: 24%;
    display: block;
    margin: auto;
}
.menu-wrapper a .active-img {
    display: none;
}
.menu-wrapper a.active {
    color: #d2b79c;
}
.menu-wrapper a.active .active-img {
    display: block;
}
.menu-wrapper a.active .com-img {
    display: none;
}

/*login*/
.login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: url(../images/login/register-bg.jpg) no-repeat;
    background-size: 100% 100%;
    color: #000;
    max-width: 991px;
    margin: auto;
}
.login-wrapper .login-box {
    width: 100%;
    position: fixed;
    top: 0;
    max-width: 991px;
    overflow: hidden;
    overflow-y: auto;
    overflow: auto;
    height: 100%;
}
.login-wrapper .login-title {
    position: relative;
    width: 100%;
    height: 6.4vmin;
    line-height: 6.4vmin;
    padding: 0 5.65vmin;
    margin: 8.54vmin 0 7.2vmin;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 22px;
    text-align: center;
}
.login-logo{
    width: 195px;
    margin: auto;
}
.login-content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 93.3vmin;
    border: none;
    margin: 0 auto;
    padding: 0 35px;
}
.login-content .input-box {
    border-radius: 5px;
    background-color: rgba(0,0,0,.302);
    -webkit-box-shadow: inset 0 3px 7px 0 rgb(0 0 0 / 46%);
    box-shadow: inset 0 3px 7px 0 rgb(0 0 0 / 46%);
    height: 11.7vmin;
    line-height: 44px;
    border: 1px solid #382d1c;
    padding-left: 40px;
}
.login-content .input-box.account {
    background: url(../images/login/icon_account.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,100%,.3);
    min-width: 100%;
}
.login-content .input-box.pwd {
    background: url(../images/login/icon_password.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,100%,.3);
    min-width: 100%;
}


.login-content.reg_content .input-box.account {
    background: url(../images/register/registion_icon_account.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,40%,.3);
    min-width: 100%;
    border: none;
    box-shadow: unset;
}
.login-content.reg_content .input-box.pwd {
    background: url(../images/register/registion_icon_password.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,40%,.3);
    min-width: 100%;
    border: none;
    box-shadow: unset;
}
.login-content.reg_content .input-box.name {
    background: url(../images/register/icon_truename.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,40%,.3);
    min-width: 100%;
    border: none;
    box-shadow: unset;
}
.login-content.reg_content .input-box.phone {
    background: url(../images/register/icon_phone.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,40%,.3);
    min-width: 100%;
    border: none;
    box-shadow: unset;
    position: relative;
    display: flex;
    align-items: center;
}
.login-content.reg_content .input-box.phonever {
    background: url(../images/register/icon_phoneCode.png) no-repeat;
    background-size: auto 7vmin;
    background-position: 2vmin;
    border-radius: 6vmin;
    background-color: hsla(0,0%,40%,.3);
    min-width: 100%;
    border: none;
    box-shadow: unset;
}
.phoneCodeBtn {
    background: #eb9429;
    border-radius: 6vmin;
    position: absolute;
    color: #fff;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    width: auto;
    justify-content: right;
    padding: 12px;
    right: 0;
    z-index: 1;
}

.login-content .input-box input, .login-content .input-box input {
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: none;
    display: block;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    text-indent: 5px;
    background-color: transparent;
    height: 100%;
    padding-left: 3vw;
}
.login-content .input-box input::placeholder{
    font-size: 10px;
}

.login-wrapper .login-content .input-box {
    margin-top: 2.56vmin;
}
.login-content .remember_forget {
    display: inline-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 3.85vmin;
}
.login-content .remember_box{
    display: flex;
    align-items:center;
}
.login-content .remember_box .btn_remember_noactive {
    display: inline-block;
    width: 4.5vmin;
    height: 4.5vmin;
    background: url(../images/login/checkbox_false.png) no-repeat 50%;
    background-size: contain;
    vertical-align: middle;
    margin-bottom: 0.5vmin;
}
.login-content .remember_box .btn_remember_noactive.active {
    display: inline-block;
    width: 4.5vmin;
    height: 4.5vmin;
    background: url(../images/login/checkbox_true.png) no-repeat 50%;
    background-size: contain;
    vertical-align: middle;
}
.login-content .remember_forget .remember_box_text {
    vertical-align: middle;
    font-weight: 600;
    font-size: 3vmin;
    letter-spacing: 0.3vmin;
}
.remember_pwd {
    padding-left: 10px;
}
.login_btn_wrap{

width: 100%;
}
.signin_btn{
    background: linear-gradient(90deg,#e2b689,#ce7f0f);
    color: #fff;
    border-radius: 25px;
    border: none;
    width: 100%;
    margin: 5px 0;
    min-height: 43px;
    font-size: 17px;
}
.go_round{
    margin: 15px 0;
}

/*promo*/
.fade-scale {
    transform: scale(0.9);
    opacity: 0;
    transition: all .2s linear;
}

.fade-scale.show {
    opacity: 1;
    transform: scale(1);
}
#promomodal .modal-dialog{
    width: 75%;
    margin: auto;
    max-width: 470px;
} 
#promomodal .modal-header{
    background-image: linear-gradient( 0, rgb(218, 200, 181) 0%, rgb(202, 183, 163) 100%);
    color: #fff;
    justify-content: center;
    padding: 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#promomodal .modal-body{
    padding: 7px;
}
#promomodal .modal-header h5{
    font-weight: 400;
}
#promomodal .close{
    position: absolute;
    bottom: -29px;
    color: #d2c0ac;
    opacity: 1;
    text-shadow: unset;
    border: 2px solid #d2c0ac;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    background-color: #00000078;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    left: 50%;
}
#promomodal .modal-content{
    border: none;
    border-radius: 10px;
}
#promomodal .modal-content:before{
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 30px;
    background: #d0bdaa;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
.event-item-list .event-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    background: #FFF;
    border-radius: 50px;
    padding: 0 0 0 30px;
    border: 3px solid #FFF;
    box-shadow: 0 5px 6px rgb(0 0 0 / 10%);
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    text-decoration: none;
}
.event-item-list .event-item span {
    color: #d0ad4d;
}
.event-item.hot::before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
    background: url(../images/icon/pre_ihot.svg) top left/100% auto no-repeat;
}
.event-item-list .event-item::after {
    position: absolute;
    content: '';
    display: block;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: url(../images/icon/pre_arrR.svg) center/auto 98% no-repeat;
}
.promo-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1051;
    background: #000000ad;
    color: #000;
    max-width: 991px;
    margin: auto;
}
.promomodal_wrap{
     /* left: 50%; */
     top: 12%;
     transform: translate(0%, 5vh);
     /* position: relative; */
     /* height: 100%; */
     /* max-height: 550px; */
}
#promomodal_swiper .swiper-container{
      width: 100%;
      height: 400px;
}
#promomodal_swiper .swiper-slide img.img_up {
  display: block;
  width: 280px;
  height: 100px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#promomodal_swiper .swiper-slide img.img_bottom {
  display: block;
  width: 280px;
  height: 400px;
  object-fit: cover;
}
#promomodal_swiper .swiper-slide {
  border-radius: 10px;
  text-align: center;
  width: auto;
  margin-top: 40px;
  background: #797474;
  padding-bottom: 30px;
}
.event-banner-close-btn {
    position: absolute;
    width: 54px;
    height: 54px;
    background: url(../images/icon/close_v02.png) center/100% no-repeat;
    top: 0;
    right: 0;
    transform: translate(33%, -36%);
    cursor: pointer;
    z-index: 9;
}
.swiper-pagination-bullet-active{
    background: #e9cd7a;
}

/*deposit*/
.modal-open .modal.modal_share {
overflow-y: hidden;
}
.modal_share {
}
.modal_share .modal-dialog{
    width: 75%;
    margin: auto;
    max-width: 470px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
} 
.modal_share .modal-header{
    background-image: linear-gradient( 0, #dac8b5 0%, rgb(202, 183, 163) 100%);
    color: #fff;
    justify-content: center;
    padding: 7px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.modal_share .modal-body{
    padding: 9px;
    position: relative;
    background: none;
    border: 0;
    border-radius: 0;
    background-clip: padding-box;
    outline: 0;
    height: calc(100% - 50px);
    max-height: 68.234vh;
    min-height: 200px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.modal_share .modal-header h5{
    font-weight: 400;
    font-size: 15px;
}
.modal_share .close{
    position: absolute;
    bottom: -29px;
    color: #d2c0ac;
    opacity: 1;
    text-shadow: unset;
    border: 2px solid #d2c0ac;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    background-color: #00000078;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    left: 50%;
}
.modal_share .modal-content{
    border: none;
    border-radius: 10px;
}
.modal_share .modal-content:before{
    position: absolute;
    display: block;
    content: '';
    width: 2px;
    height: 30px;
    background: #d0bdaa;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
.modal_share .nav-pills.afterlogin .nav-link {
    color: #fff;
    background-color: #ffffff;
    padding: 0;
    margin: 8px 0px;
    border: 2px solid #bbbbbb00;
    display: flex;
    align-items: center;
    min-width: 76px;
    justify-content: center;
    padding: 5px;
}
.modal_share .nav-pills.afterlogin .nav-link img{
    width: 42px;
}
.modal_share .nav-pills.afterlogin .nav-link.active, .modal_share .nav-pills.afterlogin .show>.nav-link {
    color: #fff;
    background-color: #ffffff;
    border: 2px solid #005bac;
    background-image: url(../images/afterlogin/add_t005.svg);
    background-position: bottom right;
    background-repeat: no-repeat;
    margin: 8px 0px;
    background-size: 24px;
}

.step-wrap ul{
    display:flex;
    color:#fff;
    padding:0px;
    justify-content: space-between;
    margin:0px;
    position:relative;
    width: 250px;
    flex-direction: row;
    border: none;
}
 .step-wrap ul li{
    list-style:none;
    /* margin: 0px 41px;
     */
    z-index:10;
}
 .btn-step-act{
    background:#d7b556 !important;
}
 .step-wrap ul li a{
    font-size:20px;
    width: 40px;
    height: 40px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius: 50px !important;
    background: #e1e1e1;
    z-index:10;
    border: 1px solid #dac8b5;
    color: #000!important;
}
 .step-wrap .nav-tabs .nav-item.show .nav-link,  .step-wrap .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dac8b5 #dac8b5 #dac8b5;
    box-shadow: inset 0px 0px 6px 3px #dac8b5;
}
 .step-wrap{
    position:relative;
    margin-top: 15px;
    margin-bottom: 15px;
    display:flex;
    justify-content:center;
}
 .step-wrap ul::after{
    content:'';
    background-color: #dac8b5;
    position:absolute;
    top:50%;
    left:0;
    height:4px;
    width:100%;
    z-index:1;
    margin:0px auto;
    right:0;
}
.form_row{
    display: grid;
    align-items: center;
    grid-gap: 0px;
    margin: 10px 0;
    grid-template-columns: 18% 67% 15%;
}
.form_row input{ 
    width: 100%; 
    color: #000;  
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%); 
    border: none; 
    height: 50px; 
    line-height: 50px;  
    border-radius: 5px;
    padding: 0 5px;
}
.clear_btn{
    background-color: transparent;
    border: none;
    width: 34px;
}
.inputrecamount{
    color: cornflowerblue;
    text-align: center;
    margin: 10px 0;
    font-size: 10px;
}
.deposit_note{
    color: #bda287;
    font-size: 11px;
}
.deposit_note ol{
    padding: 10px;
    margin: 0;
}
.deposit_note ol li{
    margin-bottom: 10px;
}
button.nextbtn {
    background: linear-gradient(to bottom, #bda287  0%, #bda287 100%);
    color: #fff;
    border: 1px solid #bda287;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    padding: 11px;
    border-radius: 6px;
    margin-top: 15px;
}
button.nextbtns {
    background: linear-gradient(to bottom, #bda287 0%, #bda287 100%);
    color: #fff;
    border: 1px solid #bda287;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    padding: 11px;
    border-radius: 6px;
    margin-top: 15px;
}
.cash_bal{

text-align: right;
}
.cash_bal span{
font-size: 27px;
}
.form-group label {
    color: #bda287;
    font-size: 13px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.copy_wrap {
    display: flex;
    align-items: center;
}
.deposit_form input.form-control {
    width: 100%;
    border-radius: 10px;
    padding: 10px 25px;
    font-size: 12px;
    height: 40px;
    margin-top: 0px;
    border: 1px solid #bda287;
    color: #585c69;
    background: #ffffff;
}
.btn_copy {
    padding: 11px 10px;
    /*width: 90px;*/
    font-size: 14px;
    margin-left: 10px;
    background: linear-gradient(to bottom, #bda287  0%, #bda287 100%);
    color: #fff;
    border: 1px solid #bda287;
    border-radius: 10px;
    height: max-content;
}
.deposit_p_c_btn{
    display: flex;
    grid-gap: 10px;
}
.deposit_t_btn{
    display: flex;
    grid-gap: 10px;
    margin: 10px 0;
}
.btn_tut{
    background: linear-gradient(to bottom, #e3ccb6  0%, #a78e74 100%);
    font-size: 10px;
    border: none;
    border-radius: 20px;
    padding: 7px;
    width: 100%;
}
.deposit_sel{
    height: 29px;
}
.deposit_sel_row{
    margin: 10px 0;
}
.usdt_add_wrap .form_row{
    grid-template-columns:  85% 15%;
}
.sender_txt{
    color: rgb(68, 168, 215);
}
.ratetxt{
    color: #f37830;
    margin-bottom: 10px;
}
.form_wrap select {
    width: 100%;
    color: #000;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    border: none;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    padding: 0 5px;
}
.withdraw_add_wrap .form_row{
    position: relative;
    grid-template-columns: 100%;
}
.withdraw_add_wrap .form_row .clear_btn{
position: absolute;
right: 0;
}

#with_personal input::placeholder{
    color: red;
}
.recharge-custom-input-box{
    width: 100%;
    color: #000;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    border: none;
    border-radius: 5px;
    padding: 5px 5px;
    min-height: 50px;
    font-size: 15px;
}
#withdrawalmodal.modal_share .modal-body{
    min-height: auto;
}
.btn_signout_w{
    background: linear-gradient(to bottom, #bda287 0%, #bda287 100%);
    font-size: 17px;
    border: none;
    border-radius: 5px;
    padding: 14px;
    width: 100%;
    margin: 5px 0;
    color: #fff;
}
.btn_cancel{
    background: linear-gradient(to bottom, #8e8e8e 0%, #8e8e8e 100%);
    font-size: 17px;
    border: none;
    border-radius: 5px;
    padding: 14px;
    width: 100%;
    margin: 5px 0;
    color: #fff;
}
.w_btn_wrap{
    margin: 10px 0 0 0;
}
.with_rem{
    color: #060606;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 400;
    margin: 10px 0;
}
.usdt_red_txt{
    color: red;
    font-size: 14px;
}
.form_wrap input {
    width: 100%;
    color: #000;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    border: none;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    padding: 0 5px;
}
.form_transfer_group{
    margin-bottom: 10px;
}
.form_transfer_group label{
    color: #a38b72;
    font-weight: 500; 
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 1px;
}

/*info*/
.afterlogin_header{
    position: fixed;
    min-height: 38px;
    align-items: center;
    display: flex;
    border-bottom: 1px solid #222;
}
.afterlogin_body{
    padding-top: 44px;
}
.info_header{
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 22% 56% 22%;
    text-align: center;
}
.heade_icon_wrap{
    display: flex;
    grid-gap: 10px;
    justify-content: end;
}
.heade_icon_wrap img{
    width: 23px;
}
.info_header .fa-chevron-left{
    color: grey;
    font-size: 19px;
}
.info_header_back{
    display: flex;
    justify-content: left;
}
.menu-wrapper_afterlogin{
    grid-template-columns: repeat(5,1fr);
    align-items: center;
}
.profile-user {
    display: grid;
    grid-template-columns: 70px auto;
    grid-gap: 10px;
    padding: 10px 0 15px;
    align-items: center;
}
.promo_user {
    background: #fff;
    box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 10%);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 60px auto;
    padding: 2px 10px;
    align-items: center;
    grid-gap: 10px;
}
.contact_welc {
    font-size: 18px;
    font-weight: 700;
}
.contact_sub_welc {
    font-size: 6px;
    color: #c7c7c7;
}
.profile_select{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin: 10px 0;
}
.profile_select a{
    color: #000;
}
.profile_select_wrap{
    font-size: 11px;
}
.profile_select_wrap img{
    width: 42px;
}
.afterlogin_body_main{
    background-color: #f8f8f8;
}
.profile_top{
    background-color: #fff;
    border-bottom-right-radius: 7vmin;
    border-bottom-left-radius: 7vmin;
    padding: 0 15px 5px 15px;
    margin-bottom: 10px;
}
.profile_bottom{
    background-color: #fff;
}
.record-wrapper {
    display: grid;
    grid-template-columns: 80% auto;
    align-items: center;
    padding: 15px 32px;
}
.rcaption {
    color: #414655;
    font-size: 14px;
    text-align: left;
    padding-left: 10px;
    font-weight: 400;
}
.grey {
    align-self: center;
    font-size: 18px;
    color: #b9b9b9;
    text-align: right;
}
.recharge_body{
    box-shadow: 0 0.04rem 0.4rem 0 rgb(0 0 0 / 5%);
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 9px;
}
.recharge_choose{

display: grid;

grid-template-columns: 50% 50%;

padding: 0;

grid-gap: 10px;

max-width: 70%;

justify-content: center;

margin: 10px auto 0px auto;
}
.recharge_choose button{
    
border: none;
    
background-color: rgb(218, 200, 181);
    
border-radius: 5px;
    
min-width: 120px;
    
padding: 5px;
}
.recharge_choose button img{
    width: 70px;
}
table.sharetable{
    text-align: center;
    font-size: 14px;
    margin: 5px 0;
}
table.sharetable thead th{
    background: #65625d;
    color: #FFF;
    padding: 5px;
    font-size: 12px;
    font-weight: 500;
}
table.sharetable tbody td{
    border-bottom: 1px solid #282826;
    background: #FFF;
    color: #000;
    padding: 3px;
    font-size: 12px;
}
table.sharetable tbody td.txt-red {
    color: #db0102;
}
.history_s{
    display: flex;
    grid-gap: 5px;
}
.history_s input,.historybody select{
    border-radius: 5px;
    color: #000;
    height: 40px;
    line-height: 40px;
    margin: 0 0px;
    padding-right: 10px;
    padding-left: 10px;
    border: 1px solid #4f4f4d;
    width: 80px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: none;
}
.history_s button{
    border-radius: 5px;
    color: #000;
    height: 40px;
    line-height: 40px;
    margin: 0 0px;
    padding-right: 10px;
    padding-left: 10px;
    border: 1px solid #4f4f4d;
    width: 80px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: none;
}
.history_s input.date {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.historybody select{
    width: 100%;
    margin: 10px 0;
}
table.footer_table{
    position: fixed;
    bottom: 0;
    margin-bottom: calc(9.29vh + env(safe-area-inset-bottom));
}
table.footer_table thead th{
    background: transparent;
    color: #000;
    padding: 5px;
    font-size: 12px;
    font-weight: 500;
}
table.sharetable .td-note {
    background-color: rgb(218, 217, 218);
    font-size: 12px;
    padding: 8px;
    color: rgb(0, 0, 0);
    word-break: break-all;
    text-align: left;
}
.note_reason{
    display: none;
}
.note_reason.active{
    display: contents;
}
.refuse_c{
    position: relative;
    vertical-align: middle;
}
.icon-shangjiantou, .icon-xiajiantou {
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    border-width: 7px;
    border-style: solid;
    top: 38%;
}
.icon-xiajiantou {
    border-color: #000 transparent transparent;
}
.icon-shangjiantou {
    border-color: transparent transparent #000;
    top: 4px;
}
.bankcard_select{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
.bankcard_select button{ 
border: none;  
background-color: rgb(241, 234, 145);
padding: 13px;
border-radius: 5px;
}
.bankcard_list{
    
background: rgb(236, 216, 168);
    
padding: 15px;
    
text-align: center;
    
margin: 15px 0;
    
border-radius: 5px;
}
.bankbox{

background: rgb(255, 255, 255);

border: 1px solid rgb(220, 180, 84);

padding: 10px;

line-height: 1.7;
}
.bankboxtitle{
    
text-align: center;
    
border-bottom: 1px solid #000;
    
margin-bottom: 10px;
}
.bankboxusdt{
    
word-wrap: break-word;
    
word-break: break-all;
}
.bank_notis{
    text-align: center;
    color: #ff2b2b;
    margin: 5px 20px;
    display: inline-block;
    line-height: 1.5;
}
.modal_share.afterlogin_modal .modal-content:before{
    display: none;
}
.bankmodal_notis{
    color: #ff0000;
    margin-bottom: 5px;
}
.afterlogin_modal .form_transfer_group{
    width: 100%;
    color: #000;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    border: none;
    height: 70px;
    line-height: 27.2px;
    border-radius: 5px;
    padding: 0 5px;
}
.afterlogin_modal .form_wrap select,.afterlogin_modal .form_wrap input {
    width: 100%;
    color: #000;
    box-shadow: unset;
    border: none;
    height: auto;
    line-height: 0;
    border-radius: 5px;
    padding: 0 5px;
}
.qr_code{
    max-width: 175px;
    margin: 10px auto;
}
.password_wrap{
    display: grid;
    grid-template-columns: 100%;
}
.password_wrap a{
    background-color: #fff;
    color: #414655;
    padding: 15px;
    margin-bottom: 10px;
}
.password_wrapper_sign{
    text-align: center;
}
.modal_share.afterlogin_modal.modal_sec .modal-content:before{
    display: block;
}
.inbox_wrapper_in{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
.inbox_wrapper_in button{ 
    border: none;  
    padding: 13px;
    border-radius: 5px;
}
.inbox_btn_1{
    background: #6c6c6c;
}
.inbox_btn_2{
    background: rgb(218, 200, 181);
}
.inbox-wrapper {
    color: #fff;
    font-size: 14px;
    border: 1px solid #bda287;
    border-radius: 5px;
    margin: 10px 0;
}
.mailbox {
    display: grid;
    grid-template-columns: 8% 80% 10%;
    grid-gap: 5px;
    padding: 5px;
    color: #939393
}
.mailbox a {
    color: #9c9c9c;
}
.mailbox.unread a {
    color: #6a6a6a;
}
.mtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.maildate {
    color: #9c9c9c;
    font-size: 13px;
}
.action-mail, .nom  {
    text-align: center;
}
.action-mail a {
    color: #D3D3D3;
}
.mailbox.top {
    margin-bottom: 5px;
    border-bottom: 1px solid #606060;
    color: #7e7e7e;
    font-weight: 600;
}
.messagecontent, .message-wrapper {
    padding: 0 15px;
}

/*annou*/
.annou_modalbody{
    white-space: pre-line;
    word-break: break-all;
    text-align: left;
}
#announmodal_swiper .swiper-container{
      width: 100%;
      height: 400px;
}
#announmodal_swiper .swiper-slide img.img_bottom {
  display: block;
  width: 100%;
  height: 400px;
  max-width: 250px;
}
#announmodal_swiper .swiper-slide {
  border-radius: 10px;
  text-align: center;
  width: auto;
  margin-top: 40px;
  background: #797474;
  padding-bottom: 30px;
}
#announmodal.modal_share .modal-body {
    padding: 9px;
    position: relative;
    background: none;
    border: 0;
    border-radius: 0;
    background-clip: padding-box;
    outline: 0;
    height: calc(100% - 50px);
    max-height: 32.234vh;
    min-height: 200px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #efeae2;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.download_body{
    background: url(../images/download/mWM_bg.jpg) 50% 0 no-repeat;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding-top: 45px;
}
.download_tit_01{
    text-align: center;
    font-weight: 900;
    font-size: 19px;
    margin: 10px 0;
}
.download_tit_02{
    text-align: center;
    font-weight: 900;
    font-size: 19px;
    margin: 62px 0 68px 0;
    border-top: 2px solid #000;
    padding-top: 5px;
}
.download_app_wrap{

background: #d1e2f2;

padding: 10px;

border-radius: 12px;

width: 260px;

margin: 10px auto;
}
.download_app_bg{
    
display: grid;
    
grid-template-columns: 50% 50%;
    
justify-content: center;
    
text-align: center;
    
align-items: center;
    
grid-gap: 10px;
}
.download_btn{
    
border: 2px solid #000;
    
text-align: center;
    
border-radius: 25px;
    
padding: 5px;
}
.download_logo img{
    margin-bottom: 5px;
}
.swiper-horizontal {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.two-grid {
    grid-template-columns: repeat(2, 1fr);
}

/*Tournament*/
.tour-wrap-all {
    background: url("../images/tournament/mobile_bg.png") no-repeat center top;
    background-size: cover;
}

.tour-wrap {
    padding-top: 20px;
}

.token {
    display: flex;
    justify-content: center;
    /* margin-bottom: 80px; */
}

button.btn-token {
    border-radius: 8px;
    padding: 9px 0px;
    width: 230px;
    background: linear-gradient(to bottom, rgba(239,195,65,1) 0%, rgba(203,120,32,1) 100%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-shadow: -1px 4px #a41919;
}

.wrap-btn {
    background: linear-gradient(to bottom, rgba(217,161,57,1) 0%, rgba(246,219,113,1) 53%, rgba(215,160,59,1) 100%);
    border-radius: 10px;
    padding: 4px;
}

.check-in { /* background: url("../images/tournament/line.png")repeat center top; */
    margin-top: 20px;
    background-size: contain;
}

.check-iteam ul {
    display: grid;
    justify-content: center;
    position: relative;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
    padding: 15px;
    list-style: none;
}

    .check-iteam ul li a {
        display: flex;
        flex-direction: column;
    }

    .check-iteam ul img {
        /* height: 145px; */
    }

.check-iteam {
    /* position: relative; */
    /* margin-bottom: 40px; */
}

    .check-iteam ul li p {
        color: #585555;
        font-weight: bold;
        text-align: center;
        padding-top: 12px;
    }

.tour-logo img {
    /* height: 200px; */
    margin: 0px auto;
    display: block;
}

.btn-reward {
    display: flex;
    justify-content: center;
}

.reward-btn {
    background: linear-gradient(to bottom, rgba(176,143,115,1) 0%, rgba(255,221,187,1) 31%, rgba(115,48,6,1) 75%, rgba(188,150,121,1) 100%);
    padding: 3px;
    border-radius: 8px;
}

button.btn-wrad {
    background: linear-gradient(to bottom, rgba(50,23,25,1) 0%, rgba(25,5,5,1) 100%);
    color: #fff;
    font-size: 30px;
    padding: 4px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.check-iteam ul li.active a p {
    color: #b73e1e;
}

.modal-dialog.tour-pop {
    max-width: 380px;
}


.tour-btn {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 13px;
    padding-bottom: 67px;
    padding: 15px;
    padding-top: 0px;
    padding-bottom: 40px;
}

button.btn-how {
    color: #fff;
    background: linear-gradient(to bottom, rgba(61,61,61,1) 0%, rgba(6,6,6,1) 100%);
    border-style: solid;
    /* border-width: 2px; */
    border-image: radial-gradient(rgb(221 167 65), rgb(246 220 115)) 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 47px;
    font-weight: bold;
    border-radius: 6px;
    font-size: 15px;
    border: none;
}

.modal-dialog.tnc-pop {
    background: linear-gradient(to bottom, rgba(161,113,80,1) 0%, rgba(255,221,196,1) 32%, rgba(115,48,6,1) 74%, rgba(193,156,128,1) 100%);
    padding: 2px;
    border-radius: 10px;
    max-width: 685px;
}

.tnc-pop .modal-body {
    background: #260e0f;
    color: #fff;
    border-radius: 10px;
    padding: 25px 50px;
}

.tnc-tour .close {
    opacity: 1;
    color: #fff;
}

.tnc-ttl {
    text-align: center;
    font-size: 26px;
}

.tnc-content {
    margin-top: 20px;
}

.tnc-tour button.close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.tnc-pop .modal-content {
    background: #321719;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
}

.tour-pop .modal-content {
    background: none;
    border: none;
}

.bd-out {
    background: linear-gradient(to bottom, rgba(161,113,80,1) 0%, rgba(255,221,196,1) 32%, rgba(115,48,6,1) 74%, rgba(193,156,128,1) 100%);
    padding: 2px;
    border-radius: 7px;
    width: 100%;
    border: none;
}

.pop-tour .close {
    opacity: 1;
    color: #fff;
}