html, body {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

body {
    font-family: "Roboto", sans-serif;
    background: url(../../images/gameplus/background/index-bg.jpg) no-repeat;
    -webkit-tap-highlight-color: rgba(0,0,0,0.2);
    background-color: #000;
    color: #fff;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 1052;
	width: 35px;
    height: 35px;
	display: none;
	background: url(../../images/gameplus/icon/loader.gif) no-repeat;
	background-size: contain;
}

/* Header */
header {
    padding: 5px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background: url(../../images/gameplus/background/header-bg.jpg) repeat-x;
    height: 50px;
    display: flex;
    align-items: center;
    -moz-box-shadow: 0px 3px 7px -4px #ccc;
    -webkit-box-shadow: 0px 3px 7px -4px #ccc;
    box-shadow: 0px 3px 7px -4px #ffae15;
}

.nav-menu-icon {
    background: none;
    border: none;
    display: flex;
    top: 10%;
    left: 8px;
}

.nav-icon {
    width: 25px;
    margin: 0;
}

.nav-icon:after, .nav-icon:before, .nav-icon div {
    background-color: #e7d077;
    border-radius: 3px;
    content: '';
    display: block;
    height: 4px;
    margin: 3px 0;
    transition: all .2s ease-in-out;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left .logo img {
    display: flex;
    max-width: 45px;
    max-height: 45px;
}

.header-center {
    -ms-flex-item-align: center!important;
    align-self: center!important;
}

.header-right {
    right: 2%;
    color: #e7d077;
    font-size: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-right-btn-login {
    color: #e7d077;
    border: 1px solid #c6ac8c;
    background: none;
    border-radius: 20px;
    font-size: 12px;
    min-width: 65px;
    font-weight: 500;
    text-align: center;
    padding: 5px;
    margin-right: 2px;
}

.header-right-btn-login:hover {
    color: #e7d077;
    text-decoration: none;
}

.header-right-btn-register {
    color: #000000;
    border: 1px solid #c6ac8c;
    background: none;
    border-radius: 20px;
    font-size: 12px;
    min-width: 65px;
    font-weight: 500;
    background-image: linear-gradient(to bottom, #f1e767 0%, #e7d277 0%, #cea443 36%, #f5ea96 68%, #cfa43a 100%);
    -webkit-text-shadow: 0px 1px 0px #9a9a9a;
    -moz-text-shadow: 0px 1px 0px #9a9a9a;
    text-shadow: 0px 1px 0px #9a9a9a;
    margin-left: 2px;
    margin-right: 2px;
    text-align: center;
    padding: 5px;
}

.header-right-btn-register:hover {
    color: #000000;
    text-decoration: none;
}

.header-right .dropdown-menu {
    padding: 2px 0;
    margin: 0;
    min-width: 48px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
}

.header-right .dropdown-menu .dropdown-item {
    padding: 7px 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right .current-lang img, .header-right .dropdown-menu .dropdown-item img {
    max-width: 23px;
}

.header-right .current-lang {
    padding: .375rem .75rem;
}

/* Footer */
footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: url(../../images/gameplus/background/header-bg.jpg) repeat-x;
    z-index: 99;
    height: 60px;
}

footer .footer-nav {
    text-align: center;
    padding: 10px 0;
    border-radius: 16px 16px 0 0;
    box-shadow: 0px -3px 5px 0px rgb(0 0 0 / 10%);
    border-top: 1px solid #f5ea96;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

footer .footer-nav ul {
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-nav li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 25%;
}

footer .footer-nav li a {
    color: #ffffff;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
}

footer .footer-nav li a i {
    font-size: 1rem;
}

footer .footer-nav li a.active {
    color: #dac570;
}

footer .footer-nav li a:hover {
    text-decoration: none;
}

#dropdownContactUsWrapper .dropdown-menu {
    padding: 5px 0;
    margin: 0;
    min-width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    top: -5px!important;
}

#dropdownContactUsWrapper .dropdown-menu a {
    padding: .5rem 1rem;
}

#dropdownContactUsWrapper .dropdown-menu a img {
    max-width: 30px;
}

/* Side Menu */
.o-wrapper.menu-active {
    transform: translate(220px,0);
}

.o-wrapper.menu-active::after {
    content: '';
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    box-shadow: inset 5px 0 16px 0px rgb(106 113 142 / 44%);
}

.o-wrapper {
    transition: transform 300ms;
}

.side-menu-wrapper {
    width: 220px;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    overflow: hidden;
    overflow-y: auto;
    background-color: #252525;
    transform: translateX(-220px);
    transition: transform 300ms;
    color: #d8c370;
}

.side-menu-wrapper.active {
    transform: translateX(0);
}

.side-menu-user-wrapper {
    display: flex;
    padding: 20px 20px 5px 20px;
}

.side-menu-user-profile {
    max-width: 60px;
    position: relative;
}

.side-menu-user-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 5px;
}

.side-menu-user-detail div {
    width: 100%;
}

.side-menu-user-profile img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.side-menu-wrapper hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #ceaf8f;
    width: 80%;
}

.side-menu-list-wrapper {
    padding: 0 10px;
}

.side-menu-list-wrapper ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.side-menu-list-wrapper ul li {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.side-menu-list-wrapper ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 12px;
    color: #d8c370;
    text-decoration: none;
}

.side-menu-list-wrapper .side-menu-list-icon {
    border: 1px solid #ecda83;
    border-radius: 34px;
    width: 40px;
    height: 40px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.side-menu-list-wrapper ul li a i {
    font-size: 1rem;
    color: #fff;
}

#languageModal .modal-dialog {
    height: 50%;
}

#languageModal .modal-dialog .modal-content {
    background-color: transparent;
    border: none;
    top: 35%;
}

#languageModal .modal-language-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000bf;
    padding: 10px;
    border: 1px solid #ecda83;
}

#languageModal .modal-language-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    padding: 0px 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

#languageModal .modal-language-wrapper a.active {
    color: #d8c370;
}

#languageModal .modal-language-wrapper a img {
    max-width: 45px;
}

.side-menu-btn-logout-wrapper {
    position: fixed;
    bottom: 18px;
}

.side-menu-btn-logout {
    color: #43475a;
    border: 1px solid #cab769;
    background: none;
    border-radius: 5px;
    font-size: 10px;
    width: 100%;
    font-weight: 500;
    padding: 5px;
    height: auto;
    background: linear-gradient(to bottom, #f1e767 0%, #e7d277 0%, #cea443 36%, #f5ea96 68%, #cfa43a 100%);
    -moz-box-shadow: 0px 3px 7px -4px #ccc;
    -webkit-box-shadow: 0px 3px 7px -4px #ccc;
    box-shadow: 0px 3px 7px -4px #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-menu-btn-logout:hover {
    color: #43475a;
    text-decoration: none;
}

/* Carousel */
.promobanner {
    padding: 15px 10px 20px;
}

#carouselIndicators {
    border: 1px solid #cbb698;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 6px 0px rgb(203 182 152 / 70%);
    -moz-box-shadow: 0px 0px 6px 0px rgb(203, 182, 152, 0.7);
    box-shadow: 0px 0px 6px 0px rgb(203 182 152 / 70%);
    will-change: transform;
    border-radius: 10px;
}

.carousel-inner {
    border-radius: 10px;
}

.carousel-control-next, .carousel-control-prev {
    width: 10%;
}

/* Announcement */
.announcement {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.announcement i {
    margin-left: 15px;
    color: #e7d077;
    font-size: 18px;
}

.announcement .marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 15px;
}

.announcement .js-marquee {
    color: #e7d077;
    font-size: 12px;
    margin-top: 2px;
}

/* Main */
.o-wrapper {
    padding-top: 50px;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    position: relative;
}

main.main-container {
    overflow: auto;
    height: 100%;
}

.main-menu-btn-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #dac570;
    font-size: 12px;
    white-space: nowrap;
}

.main-menu-btn-wrapper a:hover {
    text-decoration: none;
    color: #dac570;
}

.main-menu-btn-wrapper a img {
    width: 30px;
}

.main-menu-info-wrapper {
    display: flex;
    align-items: center;
}

.main-menu-username-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu-username-wrapper span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    width: 100%;
    color: #e7d077;
    padding: 3px 5px;
    word-break: break-word;
}

.main-menu-balance-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
}

.main-menu-balance-wrapper span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    min-width: 103px;
    border: 1px solid #cba98c;
    background: none;
    border-radius: 16px;
    color: #e7d077;
    padding: 2px 5px;
    word-break: break-word;
}

.index-game-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #0000004a;
}

.main-nav {
    padding-right: 5px;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}

.main-nav .nav-link {
    display: flex;
    border-radius: 10px;
    padding: 2px 5px 2px 1px;
    margin-bottom: 9px;
    color: #dac570;
    background: #000000;
    border: 1px solid #c6ac8c;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0px 3px 11px -5px rgb(0 0 0 / 58%);
    align-items: center;
    width: 100%;
}

.main-nav .nav-link.active {
    color: #000;
    background-color: #eddfcb;
    border: 1px solid #bdb09d;
    text-shadow: 0px 4px 4px #907c5d;
    background-image: linear-gradient(to bottom, #f1e767 0%, #e7d277 0%, #cea443 36%, #f5ea96 68%, #cfa43a 100%);
}

.main-nav .nav-link .main-nav-left-icon img {
    padding: 5px;
    max-width: 100%;
}

.main-nav .nav-link .main-nav-left-icon, .main-nav .nav-link .main-nav-right-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-thumb {
    display: block;
}

.main-thumb-long img {
    border-radius: 10px;
}

/* Login */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-title, .register-title {
    font-weight: 700;
    font-size: 20px;
    color: #e7d077;
    text-align: center;
}

#loginForm .form-group .label-login {
    color: #e7d077;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    height: 100%;
}

#loginForm .form-group .form-control, #registerForm .form-group .form-control {
    border: 1px solid #cbb698;
    border-radius: 3px;
    height: 29px;
    font-size: 12px;
}

#loginForm #password {
    position: relative;
    padding-right: 30px;
}

#loginForm #togglePass {
    position: absolute;
    right: 5px;
    top: 8px;
    color: #e7d077;
}

.code-match {
    background-color: #e7d077;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 3px;
}

.btn-login-form, .btn-register-form {
    background: #000;
    color: #ffffff;
    min-width: 150px;
    height: 43px;
    border: 1px solid #f5ea96;
    border-radius: 8px;
}

.btn-login-form:hover, .btn-register-form:hover {
    color: #ffffff;
}

.login-ask-account a {
    font-size: 12px;
}

.login-ask-account a:hover {
    text-decoration: none;
    color: #ffffff;
}

/* Register */
#registerForm .form-group .label-register {
    color: #e7d077;
    font-size: 12px;
    margin-bottom: 0;
}

#registerForm .form-group .form-group-label {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #e7d077;
}

#registerForm .form-group .form-group-field {
    display: flex;
    align-items: center;
}

#registerForm #password, #registerForm #confirm {
    position: relative;
    padding-right: 30px;
}

#registerForm #togglePass, #registerForm #toggleConfirmPass {
    position: absolute;
    right: 5px;
    top: 8px;
    color: #e7d077;
}

#registerForm .text-danger {
    font-size: 12px;
}

.btn-get-code {
    background-color: #e7d077;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 3px;
    height: 29px;
    font-size: 12px;
    white-space: nowrap;
    border: none;
}

.btn-get-code.disabled {
    background-color: grey;
}

.text-alert {
    color: #dc3545;
    font-size: 10px;
}

/* Contact */
.contact-us-wrapper {
    color: #fff;
}

.btn-social {
    text-align: center;
    text-transform: capitalize;
    display: block;
    color: #fff!important;
    border-radius: 1rem;
    position: relative;
    padding: .75rem;
	font-size: .9rem;
}

.btn-telegram-blue {
    background-color: #08c!important
}

.btn-wechat-green {
    background-color: #09b83e!important
}

.btn-line-green {
    background-color: #00c300!important;
}

.btn-mail-yellow {
    background-color: #ff4141!important;
}

.btn-whatsapp-green {
    background-color: #25d366!important
}

.btn-livechat-black, .btn-livechat {
    background-color: #3a3a3a!important
}

.social-icon img {
	width: 30px;
	height: 30px;
}

.social-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-content {
	display: flex;
	align-items: center;
}

.social-content span {
	color: #fff!important;
}

.contact-us-qr-code {
    width: 100%;
    max-height: 300px;
}

/* Slots */
.slots .slots-tab-images {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.slots .slots-tab-images a {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    display: flex;
    flex-direction: column;
    padding: 5px .5rem;
    border-radius: 10px;
}

.slots .slots-tab-images a.active img {
    background-color: #fff;
}

.slots .slots-tab-images a img {
    border-radius: 10px;
    background: rgba(255,255,255, 0.1);
    padding: 0 5px;
}

.slots-three-col {
    margin-top: 5px;
    padding: 0 10px;
}

.slots-three-col ul, .slots-three-col li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.slots-three-col ul {
    display: flex;
    flex-wrap: wrap;
}

.slots-three-col ul li {
    display: flex;
    width: 33.33%;
    padding: 10px 5px;
}

.slots-three-col ul li a {
    width: 100%;
    padding: 0;
    height: auto;
    text-align: center;
    position: relative;
    display: block;
    color: white;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 10px;
}

.slots-three-col ul li a:hover {
    color: white;
}

.slots-three-col ul li a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slots-three-col a img {
    max-width: 100%;
    width: 100%!important;
    border-radius: 10px;
}

/* Modal */
#depoWithdrawAlertModal .modal-content {
    background-color: #000000;
    border: 1px solid #ecda83;
    border-radius: 0;
}

#depoWithdrawAlertModal .modal-content .modal-header button span {
    color: #ecda83;
}

#depoWithdrawAlertModal .modal-content .modal-header .close {
    opacity: .8;
}

#depoWithdrawAlertModal .modal-content .btn-custom {
    background-color: #e7d077;
    color: white;
}

/* Deposit */
#depositWrapperTab {
    margin-bottom: 1rem;
}

#depositWrapperTab .nav-item {
    display: flex;
    justify-content: center;
}

#depositWrapperTab .nav-item a {
    border: 1px solid white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

#depositWrapperTab .nav-item a:hover {
    color: #fff;
}

.tick-check-wrapper {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom: 30px solid #00aeef;
    border-left: 30px solid transparent;
}

.tick-check {
    display: none;
    position: absolute;
    top: 13px;
    right: 2px;
    color: #fff;
    font-size: .8rem;
}

#depositWrapperTab .nav-item a.active {
    border-color: #00aeef;
}

#depositWrapperTab .nav-item a.active .tick-check-wrapper {
    display: block;
}

#depositWrapperTab .nav-item a.active .tick-check {
    display: block;
}

#depositWrapperTab .nav-item a img {
    max-height: 60px;
}

#depositWrapperTab .nav-item a span {
    padding-top: 5px;
}

.amount-tab-wrapper .amount-tab, .paymentTypeSelect {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7rem;
}

.paymentTypeSelect {
    font-size: .8rem;
}

.amount-tab-wrapper .amount-tab span, .paymentTypeSelect span {
    padding: 0.7rem;
    border: 1px solid #fff;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.paymentTypeSelect span {
    padding: .7rem .1rem;
    white-space: nowrap;
}

.amount-tab-wrapper .amount-tab.active span, .paymentTypeSelect.active span {
    border-color: #00aeef;
}

.amount-tab-wrapper .amount-tab.active .tick-check-wrapper, .paymentTypeSelect.active .tick-check-wrapper {
    display: block;
    border-bottom: 25px solid #00aeef;
    border-left: 25px solid transparent;
}

.amount-tab-wrapper .amount-tab.active .tick-check, .paymentTypeSelect.active .tick-check {
    display: block;
    top: 11px;
    right: 2px;
    font-size: .6rem;
}

/* MISC */
.link-text-white {
    color: #ffffff;
}

.link-text-gold {
    color: #e7d077;
}

.element-align-center {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 425px) {

    #registerForm #country_code {
        padding-right: 0px;
    }

}

@media only screen and (max-width: 375px) {

    #registerForm #country_code {
        padding-left: 5px;
    }

    .paymentTypeSelect span {
        font-size: .7rem;
    }

}

@media only screen and (max-width: 330px) {

    .lang-th .header-right-btn-login, .lang-th .header-right-btn-register {
        font-size: 10px;
    }

    .btn-get-code {
        font-size: 10px;
    }

    #registerForm #country_code {
        padding-left: 3px;
    }

}

@media only screen and (min-width: 575px) {

    #dropdownContactUsWrapper .dropdown-menu a img {
        max-width: 50px;
    }

}
.turnover-item label span{
    color:#eee!important;
}