body {
    font-family: Microsoft YaHei, sans-serif;
    line-height: 1.5;
    font-size: 14px;
    margin: 0 auto;
    color: #fff;
    background: #121212;
    height: 100vh;
}

ul {
    list-style: none;
}

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;
}

.t-header {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
}

.container-fluid {
    max-width: 1600px;
}

.t-body {
    padding-top: 144px;
}

.body-bg {
    background: url(../images/common/bg.jpg) center;
}


/* HEADER */

.header-top {
    background: #1e1e1e;
    padding: 15px 0;
}

.header-top .container-fluid {
    max-width: 1600px;
}

.logo img {
    max-width: 100%;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.member-btn-sec {
    align-items: center;
}

.btn-join {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #fff;
    border-radius: 20px;
    padding: 10px;
    margin-right: 10px;
    min-width: 120px;
    text-align: center;
}

.btn-join:hover {
    color: #000;
    background: linear-gradient(to right, #9d6f35 0%, #d6ac5c 100%);
    text-decoration: none;
}

.btn-login {
    background: linear-gradient(to bottom, #9d6f35 0%, #d6ac5c 100%);
    color: #fff;
    border-radius: 20px;
    padding: 10px;
    margin-right: 10px;
    min-width: 120px;
    text-align: center;
}

.btn-login:hover {
    background: linear-gradient(to right, #9d6f35 0%, #d6ac5c 100%);
    color: #000;
    border-radius: 20px;
    padding: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.btn-lang {
    margin-right: 10px;
}

.btn-lang img {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.header-bottom {
    background: #171717;
    position: relative;
    border-bottom: 1px solid #7f6610;
    border-top: 1px solid #7f6610;
}

.header-bottom .container-fluid {
    max-width: 1600px;
}

.main-nav {
    display: inline-flex;
    align-items: center;
}

.main-nav li.nav-item {}

.main-nav li.nav-item a.navlink:hover {
    border-bottom: 3px solid #FDB813;
}

.main-nav li.nav-item a.navlink {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 50px;
    margin: 0 15px;
    padding: 0px 0px;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
}

.main-nav li.nav-item:hover a.navlink {
    color: #FDB813;
    text-decoration: none;
}

.navlink img {
    margin-right: 10px;
}

.main-nav li.nav-item.menuimg {
    padding: 0;
}

.main-nav li.nav-item.menuimg a.navlink img {
    max-width: 30px;
    height: 30px;
}

.main-nav li.nav-item.menuimg:hover a.navlink img {
    filter: none;
}

.position-inherit {
    position: inherit;
}

.dropmenu {
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 54px;
    left: 0;
    z-index: 99;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    visibility: hidden;
}

.main-nav li.nav-item:hover .dropmenu {
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.dm-item {
    display: inline-block;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

.dm-item:hover {
    text-decoration: none;
}

.dm-item:hover .gm_name {
    color: #ffd65b;
}

.gm_name {
    margin-top: 5px;
    color: #fff;
    transition: all 0.5s;
}

.gm_name img {
    max-width: 35px;
    vertical-align: text-bottom;
}

.dm-item img.img-open {
    display: none;
}

.dm-item:hover img.img-open {
    display: block;
}

.dm-item:hover img.img-close {
    display: none;
}

.dropmenu:hover a {
    opacity: 0.5;
    transition: all 0.5s;
}

.dropmenu:hover a:hover {
    opacity: 1;
    transition: all 0.5s;
}


/* SLIDER */

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
}

.banner-slider img {
    width: 100%;
}

.banner-slider .swiper-pagination-bullet {
    border: 1px solid #f77900;
    opacity: 1;
}

.banner-slider .swiper-pagination-bullet-active {
    background: #f77900;
}

.banner-slider .swiper-pagination {
    text-align: end;
    padding-left: 5%;
    padding-right: 5%;
}


/* ANNOUCEMENT */

.annoucement {
    background: #000;
    padding: 0;
    display: flex;
    height: 40px;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.annoucement .container-fluid {
    max-width: 1600px;
}

.icon-annoucement {
    text-align: center;
}

.icon-annoucement img {
    max-width: 25px;
}

.annoucement-text {
    display: flex;
    align-items: center;
    color: #ffd053;
}


/* GAMELOBBY */

.game-lobby-slider {
    background: url(../images/common/game-lobby/game-lobby-bg.png)no-repeat center;
    height: 227px;
    position: relative;
    background-size: contain;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 40px;
}

.game-lobby-wrapper {
    width: 100%;
    margin: 0 auto;
}

.game-lobby-wrapper::before {
    background: #000 url(../images/common/game-lobby/index-arrow-left.png);
    content: "";
    position: absolute;
    top: 10px;
}

.game-lobby-container {
    max-width: 90%;
}

.game-lobby-title {
    background: url(../images/common/game-lobby/game-lobby-title.png)no-repeat center;
    text-align: center;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d6af68;
    font-size: 24px;
    margin-top: 25px;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.game-lobby-container .swiper-wrapper {
    display: flex;
    align-items: center;
}

.game-lobby-container .swiper-slide {
    text-align: center;
    height: 150px;
    background: #dcb46b;
    padding: 10px;
    border-radius: 0;
    display: inline-table;
    border: 1px solid #584505;
}

.game-lobby-container .swiper-slide::before {
    content: '';
    background: none;
    border: 1px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #3acfd5 0%, #3a4ed5 100%);
    border-image: linear-gradient(to bottom, #d1ab6600 0%, #d1ab66 50%, #d1ab6600 100%);
    border-image-slice: 1;
    height: 150px;
    width: 0px;
    position: absolute;
    left: -20px;
    z-index: 20;
}

.game-lobby-container .swiper-slide img {
    max-width: 140px !important;
    height: 125px;
    border-radius: 0;
    display: block;
}

.game-lobby-text {
    font-size: 14px;
    display: block;
    margin-top: 7px;
    color: #000;
}

.game-lobby-slider .game-lobby-prev {
    background: url(../images/common/game-lobby/arrow-left.png) no-repeat;
    height: 45px;
    opacity: 1;
    z-index: 1;
    outline: none;
    left: 35px;
    top: 110px;
}

.game-lobby-slider .game-lobby-next {
    background: url(../images/common/game-lobby/arrow-right.png);
    height: 45px;
    opacity: 1;
    z-index: 1;
    outline: none;
    right: 35px;
    top: 110px;
}


/* SPORTLOBBY */

.sport-lobby {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    padding: 60px 0;
    max-width: 1600px;
    padding-bottom: 0;
}

.sport-lobby-sec {
    display: flex;
    flex-wrap: wrap;
}

.sport-lobby-container {
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 70%;
}

.sport-lobby .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
}

.sport-lobby-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3 - 20px);
    flex: 0 0 calc(100% / 3 - 20px);
    margin-bottom: 120px;
    margin-right: -10px;
    position: relative;
}

.sport-lobby-item a div {
    width: 100%;
    height: 100%;
}

.sport-lobby-item a .container {
    position: relative;
    -webkit-perspective: 900px;
    perspective: 900px;
}

.sport-lobby-item a .card_right {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: rotateY(20deg);
    transform: rotateY(20deg);
}

.sport-lobby-item a .card_left {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: rotateY(-20deg);
    transform: rotateY(-20deg);
}

.sport-lobby-item a .card_right img,
.sport-lobby-item a .card_left img {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.sport-lobby-item a:hover .card_right img,
.sport-lobby-item a:hover .card_left img,
.sport-lobby-item a:active .card_right img,
.sport-lobby-item a:active .card_left img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.sport-lobby-item a .container .card_right,
.sport-lobby-item a .container .card_left {
    -webkit-transition: 0.7s;
    transition: 0.7s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
}

.sport-lobby-item a .npc {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: -14px;
    left: 20px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 1;
}

.sport-lobby-item a span {
    position: absolute;
    bottom: 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 15%);
    z-index: 2;
    left: 10%;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    color: #fff;
    top: 0;
}

.sport-lobby-item a:hover .npc,
.sport-lobby-item a:active .npc {
    top: -30px;
    left: 0px;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.sport-lobby-item a:hover .card_right,
.sport-lobby-item a:hover .card_left,
.sport-lobby-item a:active .card_right,
.sport-lobby-item a:active .card_left {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.sport-lobby-item a .npc img {
    width: 100%;
}

.sport-lobby-item a:hover span,
.sport-lobby-item a:active span {
    left: 25%;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.sport-lobby-container-2 {
    -webkit-box-flex: 5;
    -ms-flex: 5;
    flex: 5;
    max-width: 100%;
    margin-right: 20px;
    padding-bottom: 96px;
}

.product-lobby-item {
    position: relative;
    padding-bottom: 66px;
}

.product-lobby-item:last-child {
    padding: 0;
}

.product-lobby-item a:hover .sport-lobby-bg {
    filter: none;
}

.product-lobby-item a:hover .sport-lobby-npc {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.product-lobby-item a:hover .catergory-title {
    color: #ffd65b;
}

.sport-lobby-bg {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.sport-lobby-npc {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 1;
}

.sport-lobby-npc img {
    width: 120%;
}

.catergory-title {
    position: absolute;
    left: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    color: #8b8b8b;
    top: 27%;
    font-weight: 800;
    font-size: 45px;
    z-index: 20;
}

.npc-1 {
    top: -75px;
    left: 20px;
}

.npc-2 {
    top: -27px;
    left: 3px;
}

.npc-3 {
    top: -54px;
    left: 29px;
}

.app-sec {
    background: #51515152;
}

.app-download {
    max-width: 1600px;
    background: url(../images/common/footer/appdownload-bg.png)no-repeat center;
    position: relative;
    margin: 0 auto;
    height: 685px;
}

.app-title {
    position: absolute;
    left: 12%;
    top: 10%;
}

.app-download-title {
    font-size: 25px;
    color: #f9cc7c;
    text-transform: uppercase;
}

.app-download-subtitle {
    font-size: 13px;
    color: #fff;
    font-weight: 100;
}

.qr-section {
    padding: 10px;
    position: absolute;
    background: linear-gradient(to bottom, #ffd07d 0%, #b29156 100%);
    text-align: center;
    left: 13%;
    top: 28%;
}

.qr-desc {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 20px;
}

.app-download-character {
    position: absolute;
    right: 0;
}


/* FOOTER */

.webmap {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    background: #171717;
}

.footer-col {
    border-left: 2px dotted #ffffff4f;
}

.footer-col::before {
    content: '';
    background: none;
    border: 6px solid #d5ae68;
    height: 30px;
    width: 0px;
    position: absolute;
    left: -12px;
    z-index: 20;
}

.policy-sec,
.contact-sec,
.powered-sec {
    padding-top: 10px;
}

.policy-sec a,
.contact-sec a,
.powered-sec a {
    display: block;
    background: none;
}

.webmap>div span.title {
    line-height: 16px;
    float: left;
    text-transform: uppercase;
    color: #d5ae68;
}

.webmap>div div:nth-child(2) {
    clear: both;
}

.webmap>div:nth-child(-n+4) a:hover,
.webmap>div:nth-child(-n+4) button:hover {
    color: #d5ae68;
    text-decoration: none;
}

.webmap>div:nth-child(-n+4) a,
.webmap>div:nth-child(-n+4) button {
    color: #666;
    text-align: left;
}

.webmap>div div a,
.webmap>div div button {
    font-size: 14px;
    line-height: 30px;
    background: none;
    border: none;
}

.webmap>div:last-child a,
.webmap>div:last-child button {
    cursor: pointer;
}

.webmap>div:nth-child(n+5) a,
.webmap>div:nth-child(n+5) button {
    cursor: auto;
}

.webmap>div:nth-last-child(2) div,
.webmap>div:nth-last-child(5) div {
    display: block;
}

.webmap>div:last-child a {
    font-size: 12px;
    cursor: pointer;
    color: #fff;
}

.platform {
    padding: 0 calc((100% - 1600px) / 2);
    padding-top: 15px;
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.platform .saba {
    width: 104px;
}

.platform button {
    margin-right: 17px;
    height: 55px;
    background: none;
    border: none;
}

.copyright {
    padding: 0 calc((100% - 1600px) / 2);
    text-align: center;
    font-size: 12px;
    background: black;
    padding: 22px 0;
}


/* MODAL */

#login .modal-dialog,
#register .modal-dialog,
#forgot .modal-dialog {
    background: none;
    border-radius: 0;
    margin-top: 10%;
    max-width: 960px;
}

.login-modal {
    background: url(../images/common/register/bg-register.png)no-repeat center;
    position: relative;
    border-radius: 15px;
    background-size: contain;
    min-height: 433px;
}

.login-modal .modal-header {
    border: none;
    border-radius: 0;
}

.login-modal .modal-footer {
    border: none;
}

.login-bg {
    display: flex;
    justify-content: flex-end;
}

.register-img {
    position: absolute;
    top: -17%;
    left: 0;
}

.register-img img {
    max-width: 100%;
}

.login-modal .modal-body h4 {
    color: #fed24f;
    margin-left: 22px;
    font-weight: 700;
}

.reg-subtitle {
    color: #000;
    padding-left: 23px;
    font-size: 12px;
}

.login-modal .form-text {
    color: #000;
}

.reg-form {
    position: absolute;
    top: 10%;
    right: 0px;
    padding-left: 0;
}

.reg-form-in {
    margin-top: 45px;
}

.reg-form-in .row {
    width: 90%;
    margin: 0 auto;
}

.reg-form-in .input-group {
    border-radius: 20px;
}

.reg-form-in .input-group-prepend .input-group-text {
    background: none;
    border: 1px solid #ffd241;
    border-right: none;
    border-radius: 21px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    color: #ffd241;
    padding-left: 20px;
    padding-right: 20px;
}

.reg-form-in .form-control {
    border: 1px solid #ffd241;
    border-left: none;
    border-radius: 21px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    text-transform: capitalize !important;
    font-size: 15px;
    margin-top: 0;
}

.forgot-text {
    text-decoration: underline;
    color: #000;
    width: 90%;
    margin: 0 auto;
}

.btn-group {
    margin-top: 15%;
    display: flex;
    justify-content: center;
}

.btn-group button {
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 29px;
    border: none;
    color: #fff;
    padding: 0 30px;
    min-width: 130px;
    height: 37px;
}

.btn-modal-register {
    color: #ffd241;
    margin-left: 10px;
    font-weight: 700;
}

.btn-modal-register:hover {
    text-decoration: none;
    color: #f77900;
}

.btn-group .btn-modal-cancel {
    background: #707070;
}

.btn-group .btn-modal-login {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
}

.btn-modal-login:hover {
    background: linear-gradient(to right, #9d6f35 0%, #d6ac5c 100%);
}


/* SLOT */

.slot-nav {
    padding-top: 15px;
}

.slot-nav .nav-tabs {
    border: none;
    background: #121212;
    display: grid;
    grid-template-columns: repeat(13, 1fr);
}

.slot-nav .nav-tabs .nav-link {
    border: none;
    color: #606060;
    border-bottom: 2px solid #1b1b1b;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: grid;
    align-items: center;
    text-align: -webkit-center;
    height: 80px;
    position: relative;
}

.slot-nav .nav-tabs .nav-link img {
    filter: grayscale(1);
}

.slot-nav .nav-tabs .nav-item.show .nav-link,
.slot-nav .nav-tabs .nav-link.active {
    background: #171717;
    color: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #ffd65b;
}

.slot-nav .nav-tabs .nav-item.show .nav-link::after,
.slot-nav .nav-tabs .nav-link.active::after,
.slot-nav .nav-tabs .nav-link:focus::after,
.slot-nav .nav-tabs .nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 59px;
    border-top: 8px solid #ffd053;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin-left: -8px;
}


}
.slot-nav .nav-tabs .nav-item.show .nav-link img,
.slot-nav .nav-tabs .nav-link.active img {
    filter: brightness(3.5) hue-rotate(157deg);
}
.slot-nav .nav-tabs .nav-link:focus,
.slot-nav .nav-tabs .nav-link:hover {
    background: #232323;
    color: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #ffd65b;
}
.slot-nav .nav-tabs .nav-link:focus img,
.slot-nav .nav-tabs .nav-link:hover img {
    filter: none;
}
.slot-nav .nav-tabs .nav-item {
    border-radius: 0;
    width: 100%;
    text-align: center;
    border: none;
}
.slot-content .nav-tabs {
    background: #121212;
    border: none;
    padding: 10px 20px;
    margin-top: 5px;
    color: #fff;
}
.slot-content .nav-tabs .nav-item.show .nav-link,
.slot-content .nav-tabs .nav-link.active {
    background: #000;
    color: #fff;
    border: none;
}
.slot-content .nav-link {
    padding: 5px 15px;
    border-radius: 10px;
    border: none;
    color: #606060;
}
.slot-content .nav-tabs .nav-link:focus,
.slot-content .nav-tabs .nav-link:hover {
    border: none;
    background: #000;
    color: #fff;
}
.slot-bg {
    background: #0b0b0b;
}
.slot-content {
    padding-bottom: 10px;
}
.jackpot-pool {
    background: #121212;
    margin-top: 10px;
    margin-bottom: 10px;
}
.jac-kpot {
    background: #121212;
    height: 120px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jac-kpot a:hover img {
    opacity: .8;
}
.slot-text {
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    padding-top: 20px;
    margin-left: 25px;
    color: #fede9a;
}
.slotList {
    display: flex;
    flex-wrap: wrap;
    background: #262626;
    padding: 20px 0;
    max-width: 100%;
    justify-content: center;
}
.slotList img {
    width: 100%;
}
.slotList>div .btnGroup {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 10px 0 0;
    display: flex;
}
.slotBox {
    background: #484647;
    width: 17%;
    margin: 20px;
}
.slotDesc {
    padding: 10px;
}
.btnGroup a,
.btnGroup button {
    padding: 5px 0;
    border-radius: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 5px;
}
.txt-game {
    color: #e3b448;
    text-align: center;
}
.btn-game-play {
    background: #e3b448;
    color: #000;
    border: 1px solid #e3b448;
}
.btn-game-play:hover {
    background: #363233;
    color: #e3b448;
    border: 1px solid #e3b448;
}
.btn-game-try:hover {
    background: #e3b448;
    color: #000;
    border: 1px solid #e3b448;
}
.btn-game-try {
    background: #363233;
    color: #e3b448;
    border: 1px solid #e3b448;
}

/** Promotion **/
#details {
    color: #fff;
}
#details .modal-content {
    border: 1px solid #e3b448;
    background: #fff;
}
#details .modal-header {
    border: none;
}
#details .close {
    color: #ffffff;
    text-shadow: none;
}
.promo-sec {
    background: url("../images/Promotion/promotion-bg.jpg")no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding: 75px 0;
}
.mix {
    display: none;
}
.filter-menu-bar {
    text-align: center;
}
.pmbox {
    width: 190px;
    height: 45px;
    text-align: center;
    font-size: 13px;
    padding: 12px 10px;
    margin: 0 5px;
    cursor: pointer;
    color: #a98054;
    border: 1px solid #d2b16e;
}
.pmbox:hover,
.pmbox.active {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #000;
}
.promo-content {
    text-align: center;
    margin: 15px 0;
}
.pmbox {
    display: inline-block;
}
.promo-box {
    background: #fff;
    max-width: 500px;
    border: 1px solid #d6a361;
    margin: 10px;
}
.promo-content-box {}
.promo-img img {
    max-width: 100%;
}
.promo-inner-box {
    padding: 10px 30px;
}
.promo-title {
    color: #fbab00;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    font-size: 16px;
}
.promo-subtitle {
    font-size: 11px;
    color: #000;
    font-weight: 700;
    margin-bottom: 17px;
    text-align: left;
}
.promo-content-title {
    text-transform: uppercase;
    color: #000;
    text-align: left;
    font-weight: 600;
    margin-bottom: 13px;
}
.promo-content-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
    color: #000;
    width: 80%;
    font-weight: 600;
    font-size: 10px;
}
.sub-1,
.sub-2 {
    text-align: left;
}
.promo-btn-group {
    display: flex;
    justify-content: space-around;
    width: 70%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 10px;
}
.btn-promo-details {
    border-radius: 25px;
    padding: 5px 30px;
    background: #a9904e;
    font-weight: 600;
    color: #fff;
    font-size: 12px;
}
.btn-promo-details:hover {
    text-decoration: none;
    color: #000;
}
.btn-promo-join {
    border-radius: 25px;
    padding: 5px 20px;
    background: #b68946;
    font-weight: 600;
    color: #fff;
    font-size: 12px;
}
.btn-promo-join:hover {
    text-decoration: none;
    color: #000;
}

/* RANKING */
.ranking-bg {
    background: #171717 url(../images/common/ranking/bg-ranking.png)center top no-repeat;
    min-height: 1700px;
    background-size: 100%;
}
.ranking {
    position: absolute;
    left: 0;
    width: 100%;
    top: 80%;
}
.ranking-box {
    background: url(../images/common/ranking/table-bg.png) no-repeat top center;
    min-height: 1050px;
    background-size: contain;
}
.ranking-nav {
    padding-top: 40px;
}
.ranking-nav .nav-tabs {
    display: flex;
    grid-template-columns: repeat(6, 1fr);
    border: none;
    justify-content: center;
}
.ranking-nav .nav-tabs .nav-item.show .nav-link,
.ranking-nav .nav-tabs .nav-link.active {
    background: none;
    border: none;
    border-radius: 0;
}
.ranking-nav .nav-tabs .nav-item {
    width: 16%;
    text-align: center;
    background: url(../images/common/ranking/menu-tab.png)no-repeat center;
    background-size: cover;
    padding: 5px;
    margin-left: -52px;
}
.ranking-nav .nav-tabs .nav-item .nav-link {
    color: #fff;
    border: none;
}
.ranking-nav .nav-tabs .nav-link:focus,
.ranking-nav .nav-tabs .nav-link:hover {
    border: none;
}
.ranking-title {
    color: #f9a006;
    font-size: 28px;
    text-align: center;
    margin-top: 25px;
    font-weight: 700;
}
.ranking-subtitle {
    color: #f9a006;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
}
.ranking-section {
    width: 80%;
    margin: 0 auto;
}
.ranking-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #5b150d;
    border-radius: 20px;
    color: #fff;
    width: 38%;
    margin: 0 auto;
    margin-top: 15px;
    height: 36px;
}
.rank-col-1 {
    color: #fff;
}
.rank-col-2 {
    padding: 0px 30px;
    color: #fff;
}
.rank-col-3 {
    color: #fff;
}
.rank-col-1:hover,
.rank-col-2:hover,
.rank-col-3:hover {
    color: #000;
    text-decoration: none;
}
.rank-col-1 span {
    border-right: 1px solid #fff;
    padding: 0px 30px;
}
.rank-col-2 span {}
.rank-col-3 span {
    border-left: 1px solid #fff;
    padding: 0px 30px;
}
.ranking-list {
    width: 31%;
    margin: 25px auto;
    text-align: center;
    margin-bottom: 0;
}
.rank-row {
    display: grid;
    grid-template-columns: 25% 75%;
}
.rank-row img {
    margin: 0 auto;
}
.rank-1 span,
.rank-2 span,
.rank-3 span {
    padding: 20px 40px;
    border-bottom: 1px solid #000;
}
.rank-row span {
    padding: 13px 10px;
    border-bottom: 1px solid #000;
}
.rank-row div {
    text-align: center;
    place-self: center;
}
.btn-more-details {
    background: url(../images/common/ranking/btn-ranking.png)no-repeat center;
    text-align: center;
    height: 51px;
    display: block;
    max-width: 145px;
    margin: 25px auto;
    color: #000;
    line-height: 51px;
}
.btn-more-details:hover {
    text-decoration: none;
    filter: drop-shadow(0px 0px 10px rgb(255, 218, 95));
    transition: all 0.5s;
    color: #000;
}
.ranking-top {
    text-align: center;
    position: absolute;
    width: 30%;
    top: 189px;
    left: 36.6%;
    margin: 0 auto;
}
.ranking-top span {
    display: block;
}
.ranking-top-title {
    font-size: 22px;
    font-weight: 500;
}
.ranking-center-title {
    font-size: 37px;
    font-weight: 800;
    margin-top: 17px;
    color: #ffc600;
    text-shadow: 1px 1px 9px #000;
}
.ranking-bottom-title {
    font-size: 22px;
    color: #ffc600;
    margin-top: 19px;
}

/* INFO CENTER */
.info-center {
    padding-top: 50px;
    padding-bottom: 50px;
}
.info-wrapper {
    border: 1px solid #7f6610;
    padding: 20px 49px;
}
.info-wrapper h3 {
    border-bottom: 2px solid #ffc600;
    width: 35%;
    padding: 10px;
    margin-bottom: 30px;
}
button.btn-tnc {
    background: #ffd05e;
    width: 100%;
    text-align: left;
    font-size: 15px;
    padding: 7px 15px;
    color: #000;
    font-weight: 600;
    border: 1px solid #7f6610;
    border-radius: 5px;
}
button.btn-tnc.collapsed {
    background: #131313;
    color: #fff;
    font-weight: 400;
}
button.btn-tnc:focus {
    outline: none;
}
.tnc-card {
    margin-bottom: 10px;
}
.tnc-body {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}
.tnc-body ol {
    padding-left: 15px;
}
.tnc-body ol li {
    padding-bottom: 8px;
}

/* AFTER LOGIN */
.btn-balance {
    border: 1px solid #ffd65b;
    border-radius: 20px;
    background: none;
    color: #ffd65b;
    padding: 5px 20px;
    font-size: 13px;
}
.btn-balance:hover {
    color: #000;
    background: #fed24f;
}
.balance-col .dropdown-item {
    display: block;
    width: 100%;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
}
.dropdown-menu-balance {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    /* float: left; */
    
    min-width: 250px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    border: 1px solid #ffd65b;
    list-style: none;
    background-color: #171717;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu-balance .clearfix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: #ffd65b;
    padding: 5px;
}
.dropdown-menu-balance .clearfix:hover {
    background: #91919185;
    cursor: pointer;
}
.balance-col .dropdown-menu a {
    padding: 7px 15px !important;
    color: #fff !important;
    cursor: pointer;
}
.balance-col .dropdown-menu a:hover {
    padding: 7px 15px !important;
    color: #000000 !important;
}
.balance-col .remaining {
    text-align: center;
}
.header-af-right {
    width: 70%;
}
.login_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #858585;
    grid-column-gap: 5px;
}
.profile_main_title {
    color: #6a8cb0;
}
.profile_main_bg {
    background-color: #e2e2e2;
    padding: 20px;
}
.bank_details_content {
    display: flex;
    align-items: center;
}
.deposit_btn {
    background: linear-gradient(to bottom, #f1e767 0%, #805a23 0%, #c28b2b 15%, #eaca7e 35%, #c28b2b 54%, #eec95b 83%, #c28b2b 100%);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.deposit_btn a {
    color: #000;
}
.logout_btn {
    background: linear-gradient(to bottom, #b60000 0%, #5a0500 100%, #f1e767 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.btmtools_after {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6d6d6d;
    font-size: 12px;
    padding: 5px 10px 0;
    float: right;
}
.log-group a {
    color: #6d6d6d;
}
.three_dot {
    font-size: 10px;
}
.msg_head {
    font-size: 20px;
    color: #cd9c41;
}
.about-us-header,
.contact-us-header {
    background: #efefef;
    padding: 5px 0 5px 15px;
    font-weight: bold;
    font-size: 18px;
}
.contact-us-header_inner {
    margin: 50px 0;
}
.contact_dotted {
    border-right: 1px dotted;
}
.about-us-p {
    padding: 10px;
}
.function {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.afterlogin_bg {
    background: url("../images/afterlogin/bg.jpg")no-repeat top center;
    padding: 80px 0;
    display: -webkit-box;
}
.profilebox {
    background-color: #ffffff;
    height: 89px;
    padding: 14px;
    margin-bottom: 20px;
}
.profileinfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.profile_icon {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 0 10px;
}
.wallet_custom {
    border-left: 1px dotted #505050;
    padding-left: 20px;
}
.profile_rank {
    color: #cd9c41;
}
.wallet_bal {
    color: #cd9c41;
}
.sidepanel {
    margin: 0;
    padding: 0;
    width: 17%;
    float: left;
    border-bottom: none;
}
.sidepanel ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
}
.sidepanel ul li {
    margin-bottom: -1px;
}
.sidepanel ul li a {
    display: flex;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    margin: 0px;
    line-height: initial;
    align-items: center;
    justify-content: left;
    word-break: break-all;
    padding: 10px;
    color: #fff;
    padding: 16px;
    background: #171717;
    border: 1px solid #ffd65b;
}
.sidepanel ul li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.sidepanel ul li.active a {
    background: #232323;
    color: #ffd65b;
}
.sidepanel_icon_white {
    display: none;
}
.sidepanel ul li.active a .sidepanel_icon_white {
    display: block;
    filter: invert(1);
}
.sidepanel ul li.active a .sidepanel_icon_color {
    display: none;
}
.sidepanel ul li a img {
    margin-right: 5px;
    width: 24px;
}
.sidepanel_content {
    display: block;
    margin-left: 20%;
    border-radius: 10px;
    background: #0f0f0f;
    color: #ffffff;
    border: 1px solid #ffd65b;
    min-height: 300px;
}
.sidepanel_header {
    padding: 20px;
    color: #ffffff;
    border-bottom: 1px solid #ffd65b;
}
.setting_text {
    color: #cd9c41;
}
.title_text {
    display: flex;
    padding-left: 50px;
    align-items: center;
}
.title_text02 {
    display: flex;
    padding-left: 50px;
    align-items: unset;
}
.nav-pills.afterlogin .nav-link.active,
.nav-pills.afterlogin .show>.nav-link {
    color: #fff;
    background-color: #ffffff;
    border: 1px solid #ecc659;
    background-image: url(../images/afterlogin/deposit/tContent_depositContent_largeActive.png);
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 8px 0px;
}
.nav-pills.afterlogin .nav-link {
    color: #fff;
    background-color: #ffffff;
    padding: 0;
    margin: 8px 0px;
    border: 1px solid #bbbbbb;
}
.ori_img {
    display: none;
}
.nav-pills.afterlogin .nav-link.active .ori_img {
    display: block;
}
.nav-pills.afterlogin .nav-link.active .grey_img {
    display: none;
}
.bank_select {
    display: flex;
    justify-content: left;
    width: 500px;
    font-size: 12px;
}
.bank_select_inner {
    display: flex;
    color: #858585;
    text-align: center;
    align-items: center;
    margin-right: 10px;
}
.bank_select_img {
    border: 1px solid #858585;
    border-radius: 5px;
    padding: 0px;
    margin: 8px;
    margin-left: 0;
}
.nav-pills.afterlogin_bank .nav-link.active,
.nav-pills.afterlogin_bank .show>.nav-link {
    color: #fff;
    background-color: #ffffff00;
    background-image: url(../images/afterlogin/deposit/tContent_depositContent_smallActive.png);
    background-position: 1% 56%;
    background-repeat: no-repeat;
    padding: 0;
}
.nav-pills.afterlogin_bank .nav-link {
    padding: 0;
}
.nav-pills.afterlogin_bank .nav-link.active .bank_select_inner {
    color: #cd9c41;
}
.nav-pills.afterlogin_bank .nav-link.active .bank_select_inner .bank_select_img {
    border: 1px solid #ecc659;
}
.ori_img {
    display: none;
}
.nav-pills.afterlogin_bank .nav-link.active .ori_img {
    display: block;
}
.nav-pills.afterlogin_bank .nav-link.active .grey_img {
    display: none;
}
.inputDeposit {
    border: 1px solid silver;
    background-color: #fff;
    color: #999;
    border-radius: 4px;
    display: flex;
    align-items: center;
    height: 40px;
    width: 300px;
}
.maxLimit {
    color: red;
}
.depositBtn {
    width: 80px;
    height: 40px;
    background-image: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -moz-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -ms-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: -o-linear-gradient(top, #f4f3f3, #e6e6e6);
    background-image: linear-gradient(top, #f4f3f3, #e6e6e6);
    -webkit-transition: background-color .2s ease-out;
    -moz-transition: background-color .2s ease-out;
    -ms-transition: background-color .2s ease-out;
    -o-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    background-clip: padding-box;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid silver;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #858585;
    font-size: 14px;
}
.submit_btn {
    margin-top: 10px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    background: -moz-linear-gradient(top, #0062c9 0%, #003679 102%);
    background: linear-gradient(to bottom, #f1e767 0%, #805a23 0%, #c28b2b 15%, #eaca7e 35%, #c28b2b 54%, #eec95b 83%, #c28b2b 100%);
    color: #000;
    cursor: pointer;
    font-size: inherit;
    border: none;
}
.upload_btn {
    margin-top: 10px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    background: #0062c9;
    background: -moz-linear-gradient(top, #f4f3f3 0%, #e6e6e6 102%);
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    background: linear-gradient(to bottom, #f4f3f3 0%, #e6e6e6 102%);
    color: #858585;
    cursor: pointer;
    font-size: inherit;
    border: 1px solid #e6e6e6;
}
.bank_details_copy {
    background: linear-gradient(to bottom, #f1e767 0%, #805a23 0%, #c28b2b 15%, #eaca7e 35%, #c28b2b 54%, #eec95b 83%, #c28b2b 100%);
    color: black;
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid silver;
    width: 250px;
    height: 30px;
    justify-content: center;
}
.tab-pane-bank {
    margin-left: auto;
    margin-right: 0;
}
.important-notice {
    background: #eeeeee;
    padding: 20px 20px 20px 20px;
    margin: 20px;
    font-size: 12px;
    height: fit-content;
}
.important-notice-title {
    color: #000000;
}
.important-notice-content {
    color: #858585;
}
.important-notice-content ol {
    padding: 0;
}
.exchangeIcon {
    color: #999;
    display: flex;
    align-items: center;
}
.weekly {
    background: #E2E2E2;
    padding: 10px;
    margin-left: auto;
    margin-right: 0;
    color: #000;
    display: flex;
    border-radius: 5px;
}
.text_title_transfer {
    color: #bfbfbf;
}
.transfer_game_main {
    font-size: 12px;
}
.transfer_box {
    display: flex;
    border: 1px solid #e2e2e2;
    background-color: #fff;
    color: #000000;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.transfer_box_sec {
    color: #000000;
    padding: 0 2px;
    background-color: #E2E2E2;
    display: flex;
    min-height: 27px;
    align-items: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.transfer_btn {
    height: 22px;
    width: 64px;
    border: 1px solid #cd9c41;
    color: #cd9c41;
    background: none;
    border-radius: 5px;
}
.transfer_btn:hover {
    background: #cd9c41;
    color: #fff;
}
.text-blue {
    color: #cd9c41;
}
.withdrawal table {
    border-collapse: collapse;
    width: 100%;
    color: #000000;
}
.withdrawal table th {
    border: 1px solid #d5d5d5;
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
    color: #000000;
    background-color: rgba(129, 157, 187, 0.15);
}
.withdrawal table td {
    text-align: left;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #d5d5d5;
    background-color: #ffffff;
}
.withdrawal table td:first-child {
    text-align: right;
}
.history_main {
    display: flex;
    align-items: center;
}
.history_btn {
    border: none;
    padding: 5px;
    background-color: transparent;
    color: #858585;
    margin: 0 5px;
}
.history_btn.active {
    border: 1px solid #cd9c41;
    border-radius: 4px;
    color: #cd9c41;
    background: white;
    padding-left: 18px;
    padding-right: 18px;
    align-items: center;
}
.history_table table {
    width: 100%;
    color: #000;
    text-align: center;
}
.history_table table tr:first-child {
    background-color: rgba(129, 157, 187, 0.15);
}
.history_table table tr td {
    padding: 15px 0;
    border-bottom: 1px solid #d0d0d0;
    min-width: 200px;
}
.history_table table tr td i {
    font-size: 20px;
}
.history_table table tr th {
    padding: 8px;
}
.history_to {
    color: #000;
    display: flex;
    align-items: center;
}
.form-control.date_custom {
    padding: 0 10px;
}
.inbox_msg_text {
    color: #cd9c41;
    cursor: pointer;
}
#inbox_msg {
    color: #fff;
}
#inbox_msg .modal-content {
    border: 1px solid #e3b448;
    background: rgb(255 255 255);
    color: #000;
}
#inbox_msg .modal-header {
    border: none;
}
#inbox_msg .close {
    color: #e3b448;
    text-shadow: none;
}

/*profile*/
.profile_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #858585;
    grid-column-gap: 5px;
}
.profile_main_title {
    color: #6a8cb0;
}
.profile_main_bg {
    background-color: #e2e2e2;
    padding: 20px;
}
.bank_details_content {
    display: flex;
    align-items: center;
}
.deposit_btn {
    background: #ffd65b;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.deposit_btn a {
    color: #000;
}
.logout_btn {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 20px;
    width: 100px;
    height: 30px;
    font-size: 13px;
}
.btmtools_after {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffd65b;
    font-size: 12px;
    padding: 5px 10px 0;
    float: right;
}
.log-group a {
    color: #ffd65b;
}
.three_dot {
    font-size: 10px;
}
.about-us-header,
.contact-us-header {
    background: #efefef;
    padding: 5px 0 5px 15px;
    font-weight: bold;
    font-size: 18px;
}
.contact-us-header_inner {
    margin: 50px 0;
}
.contact_dotted {
    border-right: 1px dotted;
}
.about-us-p {
    padding: 10px;
}
.afterlogin-panel-header {
    background: #ffd65b;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffd65b;
    color: #000;
}
.sidepanel ul li a i {
    margin-right: 10px;
}
.icon-icon32px_deposit {
    position: relative;
}
.inside-title {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    align-items: center;
    justify-content: space-between;
}
.inside-title i {
    font-size: 30px;
}
.inside-title span {
    font-size: 18px;
    font-weight: 700;
    margin: 0 20px;
}
.icon-friend {
    background: #ffd65b;
    padding: 10px;
    border-radius: 5px;
    font-size: 24px;
    color: #000;
    text-align: center;
    display: flex;
    align-items: center;
}
.stepBar {
    background: #ffc10729;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 30px;
    position: relative;
    margin: 50px;
}
.stepBar .stepLine {
    background: #ffd65b;
    position: absolute;
    height: 100%;
    border-radius: 30px;
}
.stepBar .stepLine~div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}
.stepBar .stepLine~div.active span {
    color: #ffd65b;
}
.stepBar .stepLine~div span:first-child {
    margin-top: -40px;
}
.stepBar .stepLine~div span:last-child {
    margin-top: 40px;
}
.stepBar .stepLine~div span {
    position: absolute;
    font-size: 12px;
    color: #666;
}
.stepBar .stepLine~div.active:after {
    background: #ffd65b;
}
.stepBar .stepLine~div:after {
    content: "";
    width: 20px;
    height: 8px;
    background: #ffd65b;
    border-radius: 20px;
}
.subModuleList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 70px 40px;
    margin-top: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.subModuleList .subModule {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: rgba(33, 33, 33, .7);
    border-radius: 15px;
    overflow: hidden;
}
.subModuleList .subModule .subModuleTitle {
    background: #ffd65b;
    padding: 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
}
.subModuleList .subModule .subModuleBody {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.subModuleList .subModule {
    margin-left: 10%;
}
.subModuleList .subModule .subModuleBody ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}
.subModuleList .subModule .subModuleBody ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 10px 30px 10px;
    width: calc(50% - 20px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 76px;
}
.subModuleList .subModule .subModuleBody ul li a {
    border-radius: 30px;
    border: 1px solid #1e85ec;
    padding: 5px;
    text-align: center;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% - 10px);
    background: #fff;
    overflow: hidden;
}
.subModuleList .subModule .subModuleBody ul li a img {
    width: 100%;
    display: block;
}
.subModuleList .subModule .subModuleBody ul li a i {
    font-size: 20px;
    color: #000;
}
.subModuleList .subModule .subModuleBody ul li span {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}
.subModuleList .subModule .subModuleTitle div span {
    text-align: center;
    display: block;
}
.subModuleList .subModule .subModuleTitle div span:last-child {
    color: rgb(145, 145, 145);
    font-size: 12px;
}
.walletModule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 15px 0 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.walletModule>.walletType .walletBalanceModule {
    width: 47%;
    margin-right: 10px;
    float: left;
    margin-top: 10px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: none;
}
.walletModule .walletBalanceModule {
    background: #232323;
    border-radius: 10px;
    padding: 25px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: calc(50% - 40px);
    position: relative;
}
.walletType {
    width: 100%;
}
.icon-spinner11 {
    background: none;
    border: none;
    color: #fff;
}
.walletModule .icon-icon32px_Main-Wallet {
    color: #ffd65b;
}
.walletModule .icon-icon32px_Sportsbook-Wallet {
    color: #ffd65b;
}
.btn-restore {
    background: #ffd65b;
    color: #000;
    border: none;
    width: 100%;
}
.transferModule .inputBox-blue,
.transferModule .inputBox-org {
    width: calc(100% / 2 - 60px);
    padding: 10px 20px;
    margin: 0;
    z-index: 2;
    display: block;
}
.walletTransfer .inputBox,
.walletTransfer .inputBox-blue,
.walletTransfer .inputBox-org,
.walletTransfer .inputBox-white {
    float: left;
    width: calc(100% - 161px);
    margin-right: 10px;
}
.inputBox-org {
    background: 0 0;
    border: 1px solid #ffd65b;
    color: #ffd65b;
}
.transferModule .inputBox-blue,
.transferModule .inputBox-org {
    width: calc(100% / 2 - 60px);
    padding: 10px 20px;
    margin: 0;
    z-index: 2;
    display: block;
}
.inputBox-blue {
    border: 1px solid #1e85ec;
}
.inputBox,
.inputBox-blue,
.inputBox-org,
.inputBox-white {
    width: calc(100% - 22px);
    border-radius: 20px;
    position: relative;
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 10px;
    z-index: 1;
}
.walletTransfer {
    width: 100%;
    background: #232323;
    padding: 25px;
    border-radius: 10px;
}
.inputModuleRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    margin-top: 43px;
}
.walletTransfer .inputBox,
.walletTransfer .inputBox-blue,
.walletTransfer .inputBox-org,
.walletTransfer .inputBox-white {
    float: left;
    width: calc(100% - 161px);
    margin-right: 10px;
}
.inputBox-white {
    background: #fff;
}
.btnGroup a.btn-check,
.btnGroup a.orange,
.btnGroup button.btn-check,
.btnGroup button.orange {
    background: #ffd65b;
    color: #000;
    border: none;
}
.btnGroup a,
.btnGroup button {
    padding: 10px;
    border-radius: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 5px;
}
.inputBox-white input {
    background: none;
    width: 100%;
    border: none;
}
.walletTransferBox {
    width: 100%;
    display: grid;
}
.walletTransferBox span {
    display: block;
    margin-left: 10px;
    margin-bottom: 10px;
}
.walletBalanceModule i {
    margin-right: 10px;
}
.addBank .addBankName.noBank {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    cursor: pointer;
    min-height: 55px;
}
.addBank .addBankName:hover {
    background: #ffd65b;
    color: #000;
}
.addBank .addBankName {
    width: 100%;
    border: 1px solid #ffd65b;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    margin-right: 10px;
}
.addBank {
    width: calc(100% / 3);
}
.addBank+div.subModuleList .subModuleBody {
    height: calc(100% - 40px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
.addBank+div.subModuleList .subModuleBody>div.calculation {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.addBank+div.subModuleList .subModuleBody>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.calculation {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
}
.calculation>div:nth-child(odd) {
    background: #333;
    flex: 10;
    height: 94px;
}
.calculation>div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    border-radius: 10px;
    word-break: break-all;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.calculation>div div:first-child {
    color: #ffd65b;
    word-break: break-word;
}
.calculation>div span {
    color: #c99f53;
    margin-left: 5px;
}
input[type=date].form-control {
    background: white;
    border: 1px solid #ffd65b;
    color: #000000;
    border-radius: 20px;
    width: 95%;
}
.breadcrumb {
    background: #232323;
    padding: 15px;
    width: 100%;
    border-radius: 36px;
    color: #ffd65b;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.statement {
    margin-top: 15px;
    width: 100%;
}
.statement_date {
    width: 30% !important;
}
.statement>div:last-child {
    border-radius: 0 0 10px 10px;
}
.statement>div:first-child {
    background: #134dae;
    border-radius: 10px 10px 0 0;
}
.statement>div:nth-child(odd) {
    background: #ffd65b;
}
.statement>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
}
.statement>div:first-child div {
    border-color: transparent;
    color: #000;
    line-height: unset;
}
.statement>div div {
    border-right: 1px solid #b2b2b2;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 5px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: capitalize;
    min-height: 50px;
    word-break: break-all;
}
.profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 700px;
    margin: 60px auto 60px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.profile>div:nth-child(odd) {
    margin-right: 20px;
}
.profile>div:nth-child(even) {
    margin-left: 20px;
}
.profile>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    line-height: 35px;
}
.profile>div div:first-child {
    color: #ffd65b;
}
.profile>div div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.accountName {
    color: #ffd65b;
}
.accountName span {
    color: #fff;
    margin-left: 10px;
}
.changePassWord {
    width: 80%;
    margin: 5% auto;
}
.password-text {
    color: #cc9b41;
    width: 30%;
}
.inbox-table {
    margin-top: 30px;
}
.inbox-table table {
    margin: 0 auto;
    width: 80%;
}
.inbox-table table th {
    border: 1px solid #ffd65b;
    padding: 10px;
    text-align: center;
    background: #ffd65b;
    color: #000;
}
.inbox-table table td {
    border: 1px solid #ffd65b;
    padding: 5px;
    text-align: center;
}

/* LANGUAGE */
.languageToggle {
    cursor: pointer;
}
.languageToggle img {
    max-width: 29px;
    border-radius: 50%;
}
.languageToggle i {
    font-size: 10px;
    vertical-align: sub;
    margin-left: 5px;
    color: #fff;
}
.lang-btn {
    border: none;
    padding: none;
    background: none;
}
.dropdown-menu.language {
    padding: 0;
    background: rgba(0, 0, 0, 0.7);
    min-width: auto;
    border: none;
    left: 2px !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f1c977;
    border-radius: 0;
}
.dropdown-toggle::after {
    display: none;
}
#inbox_msg {
    color: #000;
}

/*download*/
.downloadTab {
    padding: 20px 0;
}
.downloadTab .nav-pills .nav-link {
    background: -webkit-linear-gradient(top, #f4f3f3, #e6e6e6);
    margin-bottom: 5px;
    height: 50px;
    color: #a98054;
    border: 1px solid #d2b16e;
    align-items: center;
    border-radius: 0;
    background: none;
    display: flex;
}
.downloadTab .nav-pills .nav-link.active,
.downloadTab .nav-pills .nav-link:hover {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #000;
    color: #000;
}
.downloadbody {
    text-align: center;
    margin-bottom: 35px;
}
.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 150px;
}
.ndl-btn {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #001c3c;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
}
.ndl-btn:hover,
.ndl-btn:focus {
    color: #000000;
}
.adl-btn {
    background: linear-gradient(to bottom, #ffffff 0%, #d4d4d4 100%);
    color: #001c3c;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 55%;
}
.adl-btn:hover,
.adl-btn:focus {
    color: #406794;
}
.dl {
    max-width: 600px;
    margin: auto;
}
.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}
.dl table th {
    border: 1px solid #d2b16e;
    text-align: center;
    padding: 8px;
    background-color: rgb(174 129 65);
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}
.dl table td {
    text-align: left;
    padding: 8px;
    background: none;
    border: 1px solid #d2b16e;
    color: #ffffff;
}
.dl table td .ndl-btn {
    margin: 0 auto;
}
.dl .username_custom {
    color: #d2b16e;
}
.downloadboxContent {
    padding: 15px;
    border: 1px solid #d2b16e;
    background: rgba(129, 157, 187, 0.15);
}
.downloadbox img {
    max-width: 150px;
}
.dropdown-item {
    padding: 5px;
}
.input-voucher {
    margin-right: 10px;
}

/*downloadEND*/

/*** Promotion Modal ***/
.modal-dialog.modal-promo {
    max-width: 1000px;
    background: #fff;
    min-height: 616px;
}
#details button.close {
    margin-top: -23px;
    color: #000;
    opacity: 1;
}
.promo-body {
    padding: 30px;
    color: #000;
}
.top-bar-promo {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    border-bottom: none;
    height: 40px;
    margin: -30px -30px 0 -30px;
}
.promo-body h3 {
    font-size: 24px;
    color: #f15b5c;
    padding: 13px 0 8px 0;
    border-bottom: 1px dotted #3293b4;
}
.exp-promo-box {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #000;
    padding: 11px 15px;
    text-align: center;
}
.point-promo {
    padding: 15px 0;
}
.promo-general-table {
    margin-bottom: 25px;
}
.promo-general-table th {
    background: #3293b4;
    color: #fff;
    text-align: center;
    padding: 7px 0;
}
.promo-general-table td {
    padding: 7px 0;
    border: 1px solid #fff;
}
.promo-general-table tr:nth-child(even) {
    background: #e9f1f4
}
.promo-general-table tr:nth-child(odd) {
    background: #deeaee
}
.rules-box {
    text-align: center;
    padding-top: 10px;
}
.rules-btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    font-size: 15px;
    box-shadow: inset 0px 1px 4px 0px rgba(255, 255, 255, 0.77);
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 38px;
    border-radius: 6px;
    margin: auto 5px;
}
.rules-btn:hover {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.33);
    color: #000;
}
.rules-btn:focus {
    color: #000;
}
.promo-body h4 {
    font-size: 19px;
    color: #f15b5c;
}
.rollth {
    border: 1px solid #fff;
}

/* DEPOSIT CONTENT */

/******************AF******************/
.deposit-content {
    max-width: 92%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.nav-top>li.active>a img {
    filter: brightness(0) invert(1);
}
.nav.nav-top>li>a p {
    padding: 5px 0px 0px 0px;
}
.nav-top>li.active>a img {
    filter: brightness(0) invert(1);
}
.nav-top2>li.active>a img {
    filter: brightness(0) invert(1);
}
.nav.nav-top>li>a p {
    padding: 5px 0px 0px 0px;
    font-size: 10px;
    text-transform: uppercase;
}
.form-page {
    margin: auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.form-page label {
    margin: 0px 5px;
    display: inline-block;
}
.image-choice [type=radio] {
    position: absolute;
    opacity: 0;
    border-radius: 300px;
}
.image-choice [type=radio]+img {
    cursor: pointer;
    border: 1px solid #31b1f8;
    border-radius: 6px;
    padding: 8px;
    max-width: 100%;
}
.image-choice [type=radio]:checked+img {
    border-radius: 5px;
    padding: 8px;
    border: none;
    filter: grayscale(0);
    color: #ffffff;
    background: linear-gradient(to bottom, #6dfefd 0%, #465dcd 100%);
}
.image-choice [type=radio]:checked~p:after {
    color: #ff731f !important;
}
.image-choice [type=radio]:checked~p {
    color: #ffffff;
}
.image-choice [type=radio]:checked~p {
    color: #00becb;
}
.bank-ul ul li a {
    text-align: center;
    background: #232323;
    color: #fff;
    padding: 10px 30px;
    margin: 0px 15px;
    border: 1px solid #ff7923;
    border-radius: 5px;
}
.bank-ul ul li {
    list-style: none;
    display: block;
}
.bank-ul ul {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0px;
}
.bank-ul {
    display: block;
    margin-bottom: 40px;
    margin-top: 10px;
}
.col-2 {
    font-weight: bold;
    width: 20%;
    float: left;
}
.bnk-flg {}
.bank-ul ul li a.active {
    background: #ff7923;
    border: 1px solid #fff;
}
.bank-ul ul li a:hover {
    background: #ff7923;
    border: 1px solid #fff;
}
.bnk-flg p {
    padding-top: 5px;
    margin: 0px;
    text-align: center;
}
.btn-all {
    background: #ff7923;
    text-align: center;
    margin-right: 11px;
    margin-bottom: 5px;
    color: #fff;
    border: none;
}
.bank-tab ul li {
    text-align: center;
    list-style: none;
}
.bank-tab ul {
    justify-content: center;
    margin: 0px;
    padding: 0px;
    display: flex;
}
.bank-tab ul li a {
    background: #434343;
    margin: 5px;
    padding: 7px 5px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    display: block;
}
.bank-tab {
    margin-top: 20px;
}
.bank-tab ul li a.active {
    background: #ff7923;
    color: #fff;
}
#menumini {
    background-image: url(../images/common/menu-mini.png);
    position: relative;
}
#menumega {
    background-image: url(../images/common/mobile-menu-slot-mega.png);
}
#menumini img {
    position: absolute !important;
    right: 25px !important;
    z-index: 1 !important;
    width: 35px !important;
    top: 17px !important;
    left: auto !important;
}
.btn-top3 {
    display: flex;
    margin-bottom: 20px;
    margin-top: 10px;
}
.btn-top3 a {
    display: flex;
    padding: 5px 12px;
    border-radius: 5px;
    background: #171717;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    width: 50%;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    justify-content: center;
    align-items: center;
}
.btn-top3 a.active {
    background: #1e1e1e;
    color: #ffd65b;
    border-bottom: 3px solid #ffd65b;
}
.btn-top3 a:hover {
    background: #1e1e1e;
    color: #ffd65b;
    border-bottom: 3px solid #ffd65b;
}
.form-group label {
    color: #fff;
    text-transform: uppercase;
}
.form-group {
    margin-bottom: 1.2em;
}
.form-group label {
    color: #ffffff;
    width: 100%;
}
input.form-control {
    width: 48%;
    border-radius: 5px;
    padding: 10px 25px;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
}
input.form-control {
    background: #ffffff;
}
.box-amount ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 10 px;
    padding-left: 0;
}
.btn-bank {
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    width: 100%;
    border: none;
    background: #171717;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    height: 55px;
}
.btn-bank img {
    max-width: 100px;
}
.btn-bank.active {
    filter: grayscale(0);
    background: #1e1e1e;
    color: #ffd65b;
    border-bottom: 3px solid #ffd65b;
}
.btn-bank:hover {
    background: #1e1e1e;
    color: #ffd65b;
    border-bottom: 3px solid #ffd65b;
}
.box-amount ul li:first-child {
    margin-left: 0px;
}
.box-amount ul li {
    margin-left: 7px;
}
input.form-control {
    width: 100%;
    border-radius: 0;
    padding: 10px 25px;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
    border: none;
    color: #d40505;
    border-bottom: 3px solid #ffd65b;
    background: none;
}
.box-amount2 ul li:first-child {
    margin-left: 0px;
}
.box-amount2 ul li {}
.box-amount2 ul {
    display: grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-left: 0;
}
.depo-1 {
    background: #31b1f8 url(../images/prov/prov-1.png)no-repeat center;
}
.depo-2 {
    background: #31b1f8 url(../images/prov/prov-2.png)no-repeat center;
}
.depo-3 {
    background: #31b1f8 url(../images/prov/prov-3.png)no-repeat center;
}
.depo-4 {
    background: #31b1f8 url(../images/prov/prov-4.png)no-repeat center;
}
.btn-amt {
    padding: 9px 0px;
    border-radius: 0;
    font-size: 14px;
    color: #ffffff;
    background: #171717;
    width: 100%;
    border: none;
    border-bottom: 2px solid transparent;
}
.box-amount3 ul {
    align-items: center;
    align-content: stretch;
    padding-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 0;
}
.box-amount3 ul li {
    margin-top: 0px;
    width: 100%;
}
.box-amount3 ul li:first-child {
    margin-left: 0px;
}
.box-amount3 ul li:nth-child(4n+1) {
    margin-left: 0px;
}
.btn-amt:hover {
    background: #1e1e1e;
    color: #ffd65b;
    border-bottom: 2px solid #ffd65b;
}
.btn-amt.active {
    background: #687dad;
    color: #fff;
}
.af-date {
    display: flex;
}
.af-date .form-control {
    width: 45%;
    border-radius: 0;
    padding: 10px 25px;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
    margin-right: 10px;
    background: #171717;
    color: #ffd65b;
    border-bottom: 2px solid #ffd65b;
}
.af-date .date-2 {
    width: 30%;
    border-radius: 0;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
    margin-right: 10px;
    border: none;
    border-bottom: 3px solid #ffd65b;
}
.af-date .date-3 {
    width: 30%;
    border-radius: 0;
    padding: 10px 25px;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
    border: none;
    margin-right: 0px;
    border-bottom: 3px solid #ffd65b;
}
select.form-control {
    width: 100%;
    border-radius: 0;
    padding: 10px 25px;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
    border: none;
    border-bottom: 3px solid #ffd65b;
    background: #121212;
}
.upload-file {
    display: flex;
    position: relative;
}
.custom-file-input {
    position: absolute;
    z-index: 2;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.btn-file {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #fff;
    border: 1px solid #ffd65b;
    color: #000;
    padding: 5px 20px;
    height: 40px;
    top: 6px;
    font-weight: 700;
    position: relative;
    margin-left: 10px;
    border-radius: 5px;
    border: none;
}
.btn-submt {
    width: 50%;
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 19px;
    padding: 7px 25px;
    display: block;
    margin: 0px auto;
}
.btn-submt:hover {
    background: linear-gradient(to right, #d6ac5c 0%, #9d6f35 100%);
    border: none;
    color: #000000;
}
.dropdown-menu ul li:first-child {
    margin-top: 10px;
}
.dropdown-menu ul li {
    display: inline-block;
    list-style: none;
    width: 100%;
    padding: 0px 10px;
    cursor: pointer;
}
.prov-name {
    margin-left: 0px;
    font-size: 13px;
    float: left;
    padding-top: 3px;
}
.btn-bank2 {
    padding: 6px 0px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    border: none;
    width: 100%;
    height: 55px;
}
.box-amount2 ul li:nth-child(3n+1) {}