@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@400;700;900&display=swap");

img {
    width: auto;
    max-width: 100%;
}

img[src=""],
img:not([src]) {
    opacity: 0;
}

img[src="*"] {
    opacity: 1;
}

.pop-in.lazyloaded {
    -webkit-animation: pop-in 0.5s ease-out forwards;
    -moz-animation: pop-in 0.5s ease-out forwards;
    -ms-animation: pop-in 0.5s ease-out forwards;
    -o-animation: pop-in 0.5s ease-out forwards;
    animation: pop-in 0.5s ease-out forwards;

    /* animation: pop-in 0.5s;
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s; */
}

@-webkit-keyframes pop-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pop-in {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scrollFade {
    opacity: 1;
    pointer-events: all;
}

.scrollFade--hidden {
    opacity: 0;
    pointer-events: none;
}

.scrollFade--visible {
    opacity: 1;
    pointer-events: all;
}

.scrollFade--animate {
    transition: opacity 0.5s ease-in-out;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.txt-regular {
    font-weight: 400;
}

.txt-medium {
    font-weight: 500;
}

.txt-bold {
    font-weight: 900;
}

.txt-extrabold {
    font-weight: 900;
}

.txt-yellow {
    color: #ffd800;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-only {
    display: flex;
}

.flex.bwn {
    justify-content: space-between;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 10px;
    text-align: center;
}

.bg {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease-in-out;
}

.bg-auto {
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease-in-out;
}

.hidden {
    display: none;
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.my-20px {
    margin: 20px 0;
}

.mt-20px {
    margin-top: 20px;
}

.mb-20px {
    margin-bottom: 20px;
}

.width-20 {
    width: 20%;
}

.width-30 {
    width: 30%;
}

.width-35 {
    width: 35%;
}

.width-40 {
    width: 40%;
}

.width-60 {
    width: 60%;
}

.width-65 {
    width: 65%;
}

.width-70 {
    width: 70%;
}

.width-80 {
    width: 80%;
}

.width-100 {
    width: 100%;
}

.mwidth-16 {
    max-width: 16%;
}

.mwidth-25 {
    max-width: 25%;
}

.mwidth-33 {
    max-width: 33%;
}

.mwidth-1200 {
    margin: auto;
    max-width: 1200px;
}

/* input:not([type=checkbox]),
input:not([type=checkbox]):focus,
input:not([type=checkbox]):-webkit-autofill,
input:not([type=checkbox]):-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
    box-shadow: 0 0 0px 1000px #3C3C3C inset;
    -webkit-box-shadow: 0 0 0px 1000px #3C3C3C inset;
    -webkit-appearance: none;
}

input.light:not([type=checkbox]),
input.light:not([type=checkbox]):focus,
input.light:not([type=checkbox]):-webkit-autofill,
input.light:not([type=checkbox]):-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
    box-shadow: 0 0 0px 1000px #ffffff inset;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    -webkit-appearance: none;
} */

.form-checkbox {
    width: 50%;
    height: 20px;
}

.form-control {
    border: 1px solid #3c3c3c;
    background-color: #fff;
    color: #646464;
    font-size: unset;
}

.primary-button {
    width: 100%;
    height: 40px;
    background-color: #ffd800;
    color: #1e1e1e;
    border: none;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
}

.secondary-button {
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: 2px solid #ffd800;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
}

body {
    font-family: Overpass;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 14px;
    background: #1e1e1e;
    color: #fff;
}

#main-header {
    position: fixed;
    z-index: 1040;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 150px; */
}

#main-header .headerWrap {
    min-width: 1200px;
}

#main-header.bgFull .headerWrap {
    background: #000;
}

.headerWrap,
.my-custom-nav {
    transition: all 0.3s ease;
}

#main-header .container-fluid {
    margin: auto;
    margin-bottom: -21px !important;
    width: 1200px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95px;
}

.logo img {
    width: 80%;
}

.timezone {
    width: 240px;
    display: inline-block;
    float: left;
}

.date {
    margin-top: 38px;
    margin-right: 7px;
}

div#timeDiv {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.head-er .col-lg-1:nth-child(2) {
    width: 66px;
    display: inline-block;
    float: left;
    margin-right: 15px !important;
}

.mes-s-before {
    margin-top: 37px;
    border-right: dotted #fff 3px;
    height: 21px;
    padding-right: 12px;
    border-left: dotted #fff 3px;
    width: 65px;
}

.mes-s {
    margin-top: 37px;
    border-right: dotted #fff 3px;
    height: 21px;
    padding-right: 5px;
    border-left: dotted #fff 3px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.head-er .col-lg-3.nopadding {
    flex: 0 0 28%;
    max-width: 27%;
}

.head-er .col-lg-1:nth-child(3) {
    padding-top: 29px !important;
    text-align: left !important;
    margin-right: 15px !important;
}

.dropup,
.dropdown {
    position: relative;
}

.lang-drop .dropdown a {
    color: #fff;
    text-decoration: none;
}

.lang-drop .dropdown a img {
    width: 30px;
}

.header-f {
    width: 468px;
    height: 95px;
    display: inline-block;
    float: left;
}

.header-f .col-lg-3.nopadding {
    flex: 0 0 25% !important;
    max-width: 54% !important;
    float: left;
    z-index: 9999;
}

.header-f .col-lg-2.nopadding {
    flex: 0 0 2.666667%;
    max-width: 99.666667%;
}

.frm-log {
    overflow: hidden;
    margin-top: 29px;
}

.frm-log .form-group {
    float: left;
    width: 48%;
}

.frm-log .form-group:nth-child(1) {
    margin-right: 5px;
}

.frm-log .form-control {
    border-radius: 0;
    height: 30px;
    margin-top: 3px;
    background-color: #e6e7e9;
    font-size: 14px;
    transition: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-appearance: none;
}

p.fpass {
    margin-top: 3px;
}

p.fpass a {
    font-size: 12px;
    font-weight: 400;
    color: #bcbcbc;
}

ul.btn-member {
    display: flex;
    margin-top: 30px;
    padding-left: 10px;
}

.btn-member li {
    display: inline;
}

.loginbtn,
.ewallatbtn {
    height: 32px;
    min-width: 80px;
    padding: 0 5px;
    color: #1e1e1e;
    background-color: #ffd800;
    font-size: 14px;
    font-weight: 900;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.registerbtn,
.logoutbtn {
    height: 32px;
    min-width: 100px;
    padding: 0 5px;
    color: #fff;
    background-color: #3c3c3c;
    font-size: 14px;
    font-weight: 900;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

p.ad-log {
    display: flex;
    align-items: center;
    height: 32px;
    padding-right: 10px;
    color: #ffd800;
    font-size: 20px;
    font-weight: 900;
    border-right: dotted #fff 3px;
    overflow: visible;
}

#forg-pass {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    z-index: 1050;
}

.forg-pass-box {
    position: relative;
    width: 350px;
    margin: auto;
    margin-top: 30vh;
    color: #000;
    background-color: #fff;
}

.forg-pass-header {
    padding: 14px;
    background-color: #ffd800;
    color: #000;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.forg-pass-body {
    padding: 30px 30px 30px;
    font-size: 18px;
    font-weight: 500;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
}

#forg-pass #submitButton {
    margin-top: 10px;
    padding: 4px 40px;
    background: #ffd800;
    font-weight: 900;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
}

.forg-pass-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: white;
    cursor: pointer;
}

.forg-pass-close i {
    color: #102226;
    font-size: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: inherit;
}

#forgetpassModal {
    color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#forgetpassModal .modal-dialog {
    width: 350px;
}

#forgetpassModal .modal-content {
    border-radius: 0;
    margin: 50% 0;
}

#forgetpassModal .modal-header {
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #1e1e1e;
    background-color: #ffd800;
    font-size: 18px;
    font-weight: 900;
    border-radius: 0;
}

#forgetpassModal .form-group {
    display: flex;
    height: 45px;
    padding-left: 50px;
    margin-left: 5px;
    margin-right: 10px;
    background-position-x: left;
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease-in-out;
    text-align: left;
}

#forgetpassModal .uss-er {
    background-image: url(../images/home/username-icon.png);
}

#forgetpassModal .email {
    background-image: url(../images/home/email-icon.png);
}

#forgetpassModal .form-group span.required {
    margin-bottom: 3vw;
    color: #ff000a;
}

#forgetpassModal form .form-group input {
    padding-left: 0.75rem;
    font-weight: 900;
    background: none;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    -webkit-box-shadow: none;
    transition: none;
}

#forgetpassModal form .form-group input::placeholder {
    color: #646464;
    opacity: 1;
}

#forgetpassModal .input-error-msg {
    padding-left: 60px;
    margin-top: -2rem;
    color: red;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
}

#forgetpassModal .btn-submit-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    height: 40px;
    width: 60%;
    color: #1e1e1e;
    background-color: #ffd800;
    font-size: 16px;
    font-weight: 900;
    border: 0;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

#forgetpassModal .contact-live-chat-link {
    width: 80%;
    margin: auto;
}

#forgetpassModal .contact-livechat-icn {
    background-image: url(../images/home/24-icon.png);
    background-size: 100%;
    width: 60px;
    height: 60px;
}

#forgetpassModal .modal-content .close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    border-radius: 40px;
    background-color: #fff;
    cursor: pointer;
}

#forgetpassModal .modal-content .close-btn i {
    color: #1e1e1e;
    font-size: 26px;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: inherit;
}

div#login-dp.modal {
    position: absolute;
    height: 550px;
    top: 70px;
    padding-top: 5px;
    z-index: 9999;
}

.ann {
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 541px;
    height: 26px;
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-topleft: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 26px;
    background: #3c3c3c;
    -webkit-background: #3c3c3c;
    -moz-background: #3c3c3c;
    -ms-background: #3c3c3c;
    z-index: 1;
    cursor: pointer;
}

.marquee {
    overflow: hidden;
    width: 531px;
}

@-webkit-keyframes marqueeAnimation {
    100% {
        margin-left: -2058px;
    }
}

.titlepay {
    font-size: 26px;
    font-weight: 900;
    color: #000;
}

.my-custom-nav.sticky-top {
    width: 100%;
    min-width: 1200px;
    background: rgba(255, 216, 0);
    position: fixed;
    margin-top: 90px;
}

.bgFull .my-custom-nav.sticky-top {
    background: #ffd800;
}

.nav-bar {
    width: 1300px;
    margin: 0 auto;
}

.nav-container {
    margin: 0 auto;
}

nav.nav-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 62px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.nav-list li {
    display: inline-block;
    width: auto !important;
    margin: 0;
    height: 100%;
    vertical-align: middle;
}

.nav-list li.icbtn02 {
    float: none;
    width: 11%;
    display: block;
}

.nav-list li a {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
}

.nav-list li a.active,
.nav-list li a:hover {
    color: #646464;
    text-decoration: none;
}

.nav-home::before {
    width: 62px;
    height: 62px;
    display: inline-block;
    content: "";
    background-image: url(../images/home/nav-home.png);
    background-size: 62px 62px;
    background-repeat: no-repeat;
    margin-right: 3px;
}

.nav-list li .nav-home.active::before,
.nav-list li:hover .nav-home::before {
    background-image: url(../images/home/nav-home.png);
}

.mobile-app-nav-icon {
    width: 62px;
    height: 62px;
    background-image: url(../images/home/nav-app.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.nav-list li a.active .mobile-app-nav-icon,
.nav-list li a:hover .mobile-app-nav-icon {
    background-image: url(../images/home/nav-app-active.png);
}

.nav-tab-hover {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    top: 62px;
    left: 0px;
    width: 100vw;
    padding: 30px calc((100vw - 1100px) / 2);
    background-color: #3c3c3c;
}

.icbtn02:hover .nav-tab-hover {
    display: flex;
}

.nav-event-hot {
    position: absolute;
    width: 40px;
    height: 20px;
    top: 4px;
    color: #000;
    background: url(../images/home/Hot-Icon.gif) no-repeat;
    background-size: contain;
    font-size: 10px;
    line-height: 12px;
    margin-left: 10px;
}

.nav-event-hotOth {
    position: absolute;
    width: 40px;
    height: 20px;
    top: 4px;
    color: #000;
    background: url(../images/home/Hot-IconOth.gif) no-repeat;
    background-size: contain;
    font-size: 10px;
    line-height: 12px;
    margin-left: 10px;
}

.nav-event-live {
    position: absolute;
    width: 40px;
    height: 15px;
    top: 4px;
    color: #000;
    background: url(../images/home/Live-Icon.gif) no-repeat;
    background-size: contain;
    font-size: 10px;
    line-height: 12px;
    margin-left: 10px;
}

.nav-event-liveOth {
    position: absolute;
    width: 40px;
    height: 20px;
    top: 4px;
    color: #000;
    background: url(../images/home/Live-IconOth.gif) no-repeat;
    background-size: contain;
    font-size: 10px;
    line-height: 12px;
    margin-left: 10px;
}

.nav-event-liveViet {
    position: absolute;
    width: 40px;
    height: 20px;
    top: 4px;
    color: #000;
    background: url(../images/home/Live-IconViet.gif) no-repeat;
    background-size: contain;
    font-size: 10px;
    line-height: 12px;
    margin-left: 10px;
}

.nav-tab-hover>div {
    position: relative;
    width: calc(100% / 6);
    padding: 0px 10px;
}

.nav-tab-hover>div.inactive {
    opacity: 0.5;
    transition: opacity 0.8s;
}

.nav-tab-hover img {
    width: 100%;
    cursor: pointer;
}

.nav-tab-hover .game-hot {
    position: absolute;
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

#popAnnContentPopup {
    position: absolute;
    top: 0;
    display: none;
    height: 100vh;
    width: 100vw;
    color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popAnnContent {
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 740px;
    color: #000;
    background-color: rgb(204, 204, 204) !important;
    z-index: 1032;
    border: none;
}

.popAnnContent-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    border-radius: 40px;
    background-color: #fff;
    cursor: pointer;
}

.popAnnContent-close>i {
    color: #1e1e1e;
    font-size: 26px;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: inherit;
}

#region_language_modal {
    color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#region_language_modal .modal-body {
    margin: 0;
    padding: 0;
}

.region-select-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 12px;
    color: #000;
    background-color: #ffd800;
    font-size: 18px;
    font-weight: 900;
}

.region-select-text {
    width: 100%;
    padding: 10px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 900;
}

.region-select-country {
    display: flex;
    align-items: center;
}

.region-select-country-icon {
    margin: 10px 0;
    width: 80px;
    color: #000;
    font-size: 11px;
    text-align: center;
}

.region-select-country-icon>img {
    width: 70px;
}

.region-select-lang {
    display: flex;
    align-items: center;
}

.region-select-lang>a {
    margin: 0 20px;
    color: #000;
    font-weight: 900;
}

.region-select-lang>a.active {
    color: #ffd800;
    font-weight: 900;
}

.region-select-dash {
    height: 30px;
    border-left: 1.8px dashed #000;
}

.region-select-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    border-radius: 40px;
    background-color: #fff;
    cursor: pointer;
}

.region-select-close>i {
    color: #1e1e1e;
    font-size: 26px;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: inherit;
}

section#main-content {
    margin: 152px auto 0;
    transition: padding-bottom 0.3s ease-in;
}

section .container-fluid {
    width: 1200px;
    margin: 0 auto;
}

.slides-home {
    background: #000;
    margin-top: -152px;
}

.sliderHome {
    width: 100%;
    display: inline-block;
}

.sliderHome li {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 100%;
    min-height: 720px;
    cursor: pointer;
}

.slides-home .bx-viewport {
    height: 669px !important;
}

.s-page .bx-wrapper img {
    max-width: 100%;
    display: block;
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: 0.5s ease;
}

.s-page .bx-wrapper img:hover {
    -webkit-filter: grayscale(0);
    filter: none;
    transition: 0.5s ease;
}

.process-bar {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
}

.arrow-steps .step {
    color: #000;
    cursor: default;
    margin: 0 3px;
    padding: 10px 10px 10px 80px;
    width: 32%;
    height: 80px;
    float: left;
    position: relative;
    background-color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.arrow-steps .step:hover {
    background-color: #4d4d4d;
    text-decoration: none;
}

.arrow-steps .step:hover::after {
    border-left: 18px solid #4d4d4d;
}

.arrow-steps .step:first-child:before {
    border: none;
}

a.step:nth-child(1) {
    background-image: url(../images/home/number-1.png);
    background-repeat: no-repeat;
    background-position: 28px 20px;
}

a.step:nth-child(2) {
    background-image: url(../images/home/number-2.png);
    background-repeat: no-repeat;
    background-position: 28px 20px;
}

a.step:nth-child(3) {
    background-image: url(../images/home/number-3.png);
    background-repeat: no-repeat;
    background-position: 28px 20px;
}

.arrow-steps .step div {
    position: relative;
    vertical-align: center;
}

.arrow-steps .step.done div:before {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.5s;
    -moz-transition: opacity 0.3s ease 0.5s;
    -ms-transition: opacity 0.3s ease 0.5s;
    transition: opacity 0.3s ease 0.5s;
}

.arrow-steps .step div:before {
    content: "";
    position: absolute;
}

.arrow-steps .step .step-title {
    margin-bottom: 0;
    font-weight: 900;
    font-size: 18px;
    padding: 10px 0 0;
    color: #ffd800;
}

.arrow-steps .step .step-text {
    margin-top: 0;
    font-size: 12px;
    color: #fff;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
    content: " ";
    position: absolute;
    top: 0;
    right: -17px;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 18px solid #000;
    z-index: 2;
    transition: border-color 0.2s ease;
}

.arrow-steps .step:before {
    right: auto;
    left: 0;
    border-left: 17px solid #000;
    z-index: 0;
}

.contentWrapper {
    padding: 24px 0;
}

.homeNodeWrap {
    width: 100%;
    display: inline-block;
}

.homeNode1 {
    width: 660px;
    display: inline-block;
    float: left;
    height: 340px;
    position: relative;
}

.block_title {
    position: absolute;
    top: 0;
    color: #fff;
    padding-top: 11px;
    padding-left: 47px;
    background-image: url(../images/home/arrwcle.png);
    background-repeat: no-repeat;
    background-position: 14px 14px;
    padding-bottom: 11px;
    font-size: 18px;
}

.homeNode1 .hover-none p {
    position: absolute;
    bottom: 12px;
    text-align: center;
    width: 100%;
    font-size: 18px;
    color: #fff;
    line-height: 24px;
}

.left-img-hov {}

.first-hov .hover-block {
    display: block;
}

.hover-block {
    display: none;
    padding: 0;
    margin: 0;
    background: rgba(5, 10, 11, 0.35);
    width: 100%;
    top: -529px;
}

.hover-block>a {
    display: inline-block;
    float: left;
}

.first-hov .hover-none {
    display: none;
}

.left-img-hov .hover-block a img {
    transition: all 0.5s ease;
    width: 220px;
    height: 170px;
}

.homeNode2 {
    width: 520px;
    display: inline-block;
    float: right;
    height: 340px;
    position: relative;
}

.bgnode2 {
    background: url(../images/home/homenode3.jpg) no-repeat center center;
}

.bgnode2 .nav-tabs {
    margin-top: 40px;
    margin-bottom: 10px;
    margin-left: 18px;
    border-bottom: 0 solid #ddd;
}

.bgnode2 .nav-link {
    padding: 5px 13px;
    font-size: 13px;
}

.bgnode2 li a {
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 18px !important;
}

.bgnode2 .nav-tabs .nav-link {
    border: 0 solid transparent;
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.nav-tabs .nav-link.active {
    color: #ffd800;
    background-color: transparent;
    border: 0;
    padding-left: 0;
    padding-right: 0;
    font-weight: 700;
    padding-bottom: 0;
    margin-right: 22px;
    font-weight: 900;
    background: 0 0 !important;
}

.nav-tabs .nav-link.active:after {
    content: "";
    display: block;
    border-bottom: 1px solid #ffd800;
    width: 103px;
    margin: 0 auto;
}

.bx-wrapper {
    -moz-box-shadow: 0 0 5px #ccc !important;
    -webkit-box-shadow: 0 0 5px #ccc !important;
    box-shadow: 0 0 5px transparent !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    margin-top: 0;
    margin-bottom: 50px !important;
}

.bx-viewport {
    height: 224px !important;
}

.slotNodeWrap {
    width: 518px !important;
    text-align: center;
}

.bx-clone {
    display: none;
}

.slotNode {
    width: 450px;
    display: inline-block;
    background: rgba(60, 60, 60, 0.5);
    padding: 8px;
    text-align: left;
    height: 110px;
    margin-bottom: 6px;
}

.slotNodeImg {
    width: 108px;
    display: inline-block;
    float: left;
    text-align: center;
}

.bx-wrapper img {
    margin: 0 auto;
    max-width: 85% !important;
}

.slotNodeContent {
    width: calc(100% - 116px);
    float: left;
    display: inline-block;
    padding: 0 0 0 8px;
}

.slotNodeContent h3 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 4px;
}

.slotNodeStarTxt {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.slotNodeStarWrap {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    margin: 0 0 8px;
}

.slotNodeStarLi {
    margin: 0 3px 0 0;
    width: 11px;
    height: 11px;
    display: inline-block;
    background: url(../images/home/3.png) no-repeat;
    cursor: pointer;
}

.slotNodeStarLi.active {
    background: url(../images/home/star_active.png) no-repeat;
}

.slotNodeAction {
    text-align: right;
}

.slotNodeAction a {
    display: inline-block;
    margin: 0 0 0 4px;
    cursor: pointer;
}

.slotNodeAction a img {
    max-width: none !important;
}

.homeNode3 {
    width: 660px;
    display: inline-block;
    float: left;
    height: 300px;
    position: relative;
}

.sportbook {
    background: url(../images/home/slides-bg_v2.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

.sportbook .bx-wrapper {
    margin-top: 20px;
}

.col3 {
    width: 218px;
}

.ptop45 {
    padding-top: 45px;
}

.ptop45 img {
    height: 100px;
}

.ptop45 h6 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    margin-top: 11px;
    font-size: 17px;
}

.ptop45 p {
    font-weight: 500;
    color: #fff;
}

img.btn-bet {
    margin-top: 32px;
    margin-bottom: 16px;
}

p.link-btn {
    position: absolute;
    top: 0;
    color: #fff;
    padding-top: 11px;
    padding-left: 47px;
    background-image: url(../images/home/arrwcle.png);
    background-repeat: no-repeat;
    background-position: 14px 14px;
    padding-bottom: 11px;
    font-size: 18px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #828280 !important;
}

.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #ffd800 !important;
}

.ambassador-slider .bx-pager>.bx-pager-item a {
    width: 15px;
    height: 15px;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.homeNode4 {
    width: 520px;
    display: inline-block;
    float: right;
    height: 300px;
    position: relative;
}

.homeProWrap {
    width: 100%;
    display: inline-block;
}

.homePro {
    position: relative;
    float: left;
    overflow: hidden;
}

.homeProWrap .homePro:nth-child(2) {
    float: right;
}

.homePro img {
    transition: all 0.3s ease 0s;
}

.icon-menu {
    background-image: url(../images/burger-menu.png);
    background-position: center;
    background-size: 25px 25px;
    background-repeat: no-repeat;
    width: 45px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
    position: absolute;
}

#side-bar-indicator {
    position: absolute;
    left: 32px;
    top: 12px;
    width: 10px;
    height: 10px;
    font-size: 10px;
    background: #e52b06;
    border-radius: 100%;
    text-align: center;
    z-index: 9;
}

.main-logo {
    background-image: url(../images/we88-home-logo_v3.png);
    width: calc(8 / 3 * 53px);
    height: 53px;
    margin: auto;
    background-position-x: left;
}

.header-profile {
    position: absolute;
    right: 10px;
}

.header-profile img {
    width: 35px;
}

#profile-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    background: #e52b06;
    border-radius: 100%;
    text-align: center;
    z-index: 9;
}

#main-content .carousel-inner img {
    width: 75%;
    margin: auto;
}

#main-content #homeCarousel .carousel-inner img {
    width: 100%;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #a2a3a8;
    opacity: 0.75;
}

.carousel-indicators .active {
    background-color: #ffd800;
}

.control-nav {
    display: flex;
    text-align: center;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    margin-top: -1px;
}

.control-nav .login-btn,
.control-nav .register-btn {
    font-weight: 900;
    font-size: 1.1rem;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.control-nav .login-btn {
    background-color: #3c3c3c;
    color: #fff;
}

.control-nav .login-btn i {
    margin-right: 6px;
    font-size: 1.2rem;
}

.control-nav .register-btn {
    background-color: #ffd800;
    color: #1e1e1e;
}

.control-nav>div {
    padding: 5px 15px;
    text-align: left;
}

.control-nav-loggedin {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    margin-top: -1px;
    background-color: #3c3c3c;
}

.control-nav-loggedin .left-col {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #3c3c3c;
    padding: 0 20px;
}

.control-nav-loggedin .right-col {
    width: 60%;
    height: 100%;
    position: relative;
    background-color: #ffd800;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 5px 0px 5px 14px;
}

.control-nav-loggedin .balance-text {
    font-weight: 400;
    font-size: 0.625rem;
    color: #fff;
    text-transform: uppercase;
}

.control-nav-loggedin .balance-amount {
    font-weight: 900;
    font-size: 1.25rem;
    color: #ffd800;
    text-align: left;
}

.control-nav-loggedin .refresh-wrap {
    position: absolute;
    z-index: 1;
    right: -20px;
    top: 20%;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.control-nav-loggedin .refresh-wrap img {
    width: 22px;
    height: 25px;
}

.control-nav-loggedin .wallet-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    height: 60px;
    padding: 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    color: #1e1e1e;
}

.control-nav-loggedin .wallet-btn img {
    height: 25px;
    width: 25px;
    margin-bottom: 8px;
}

.control-nav-loggedin .wallet-btn:last-child {
    margin-right: 0;
}

.back-navbar-container {
    background-color: #ffd800;
    height: 60px;
    align-content: center;
    justify-content: space-between;
    position: relative;
    display: flex;
}

.back-navbar-container .back-button {
    color: #000000;
    position: absolute;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 25px;
    height: 25px;
    margin: auto 10px;
}

.back-navbar-container .back-button i {
    font-size: 1.5rem;
}

.back-navbar-container .title {
    font-weight: 900;
    font-size: 20px;
    color: #000000;
    align-self: center;
    padding: 0 4px;
    margin: auto;
}

.input-wrap {
    margin-bottom: 1.1rem;
}

.input-inner-wrap.warning .custom-dropdown__trigger,
.input-inner-wrap.warning .dropdown-selector,
.input-inner-wrap.warning .input-group,
.input-inner-wrap.warning>input,
.input-inner-wrap.warning>#atmReceipt {
    border: 2px solid red;
}

.input-warning {
    display: none;
    color: red;
    font-size: 0.65rem;
    margin-top: 4px;
}

.input-warning.show {
    display: block;
}

.input-inner-wrap .input-title {
    font-weight: 900;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 5px;
}

.input-inner-wrap .input-group {
    background: white;
    border-radius: 10px;
}

.input-inner-wrap .input-group .input-group-append {
    margin: 5px;
}

.input-inner-wrap .input-field {
    height: 45px;
    width: 100%;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    padding: 12px;
    text-align: left;
    font-size: 15px;
    background: #fff;
    color: #000000;
    cursor: pointer;
    outline: none;
    border: none;
}

.input-inner-wrap .input-field:read-only {
    opacity: 0.5;
}

.input-inner-wrap .dropdown-selector {
    height: auto;
    width: 100%;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    padding: 12px;
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    background: #fff;
    color: #000000;
    cursor: pointer;
    outline: none;
}

.input-inner-wrap select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.option-switcher {
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    display: flex;
    margin-top: 15px;
}

.option-switcher>div {
    width: 50%;
    background-color: #1e1e1e;
    padding: 10px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.option-switcher>div:first-child {
    border-top-left-radius: 8px;
}

.option-switcher>div:last-child {
    border-top-right-radius: 8px;
}

.option-switcher>div.active {
    opacity: 1;
    background-color: #ffd800;
    color: #1e1e1e;
    font-weight: 900;
}

.option-switcher>div .tick {
    display: none;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    border-bottom: 26px solid #646464;
    border-left: 26px solid transparent;
}

.option-switcher>div .tick i {
    position: absolute;
    top: 11px;
    right: 1px;
    font-size: 12px;
}

.option-switcher>div.active .tick {
    display: flex;
    color: #fff;
}

/* footer css */
#main-footer-license {
    position: relative;
    margin-top: 20px;
    padding: 0 0 30px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    background-color: #000;
    z-index: 999;
}

#main-footer-license>div>div {
    padding: 30px 0px;
    border-top: 1px dashed #fff;
}

#main-footer-license>div>div>div {
    height: 100%;
}

#main-footer-license>div .sitemap-row {
    padding: 30px 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#main-footer-license>div .sitemap-row>div {
    width: 20%;
    height: 150px;
    padding: 0 30px;
}

#main-footer-license>div .sitemap-row a {
    text-decoration: none;
}

.sitemap-title {
    margin-bottom: 5px;
    color: #ffd800;
    font-weight: 900;
}

#main-footer-license>div a {
    color: #fff !important;
}

.contact-wrap span {
    width: 80px;
    position: relative;
    float: left;
}

.footer-left-border {
    border-left: 1px dashed #fff;
}

#main-footer-license>div .game-license-img img {
    width: 100%;
    height: auto;
}

#main-footer-license>div .ambassador-img {
    text-align: center;
}

#main-footer-license>div .ambassador-img img {
    width: 100%;
    height: auto;
}

#main-footer-license>div img.certification-icon {
    height: 46px;
    margin-right: 20px;
    object-fit: contain;
}

#main-footer-license>div img.payment-icon {
    margin-top: 5px;
    height: 35px;
    object-fit: contain;
}

#main-footer-license>div .ambassador-btn {
    width: fit-content;
    padding: 5px 15px;
    color: #fff;
    border: 1px solid #ffd800;
    cursor: pointer;
}

#main-footer-license>div .ambassador-title {
    font-size: 20px;
}

#main-footer-license>div .resp-game-img img {
    margin-right: 10px;
    width: 70px;
    height: auto;
}

#main-footer-license>div img.EeziePay:hover {
    content: url(../images/footer/EeziePay-hover.png);
}

#main-footer-license>div img.Help2Pay:hover {
    content: url(../images/footer/Help2Pay-hover.png);
}

#main-footer-license>div img.ThaiQR:hover {
    content: url(../images/footer/ThaiQR-hover.png);
}

#main-footer-license>div img.Truepay:hover {
    content: url(../images/footer/Truepay-hover.png);
}

#main-footer-license>div img.DuitNow:hover {
    content: url(../images/footer/DuitNow-hover.png);
}

#main-footer-license>div img.tng:hover {
    content: url(../images/footer/tng-hover.png);
}

#main-footer-license>div img.zalo:hover {
    content: url(../images/footer/zalo-hover.png);
}

#main-footer-license>div img.momo:hover {
    content: url(../images/footer/momo-hover.png);
}

#main-footer-license>div img.viettel:hover {
    content: url(../images/footer/viettel-hover.png);
}

#main-footer-license>div img.payment-icon:hover:nth-child(1) {
    content: url(../images/footer/payment-1-hover.png);
}

#main-footer-license>div img.payment-icon:hover:nth-child(2) {
    content: url(../images/footer/payment-2-hover.png);
}

#main-footer-license>div img.payment-icon:hover:nth-child(3) {
    content: url(../images/footer/payment-3-hover.png);
}

#main-footer-license>div img.payment-icon:hover:nth-child(4) {
    content: url(../images/footer/payment-7-hover.png);
}

#main-footer-license>div .resp-game-desc a {
    color: #ffd800 !important;
    text-decoration: underline;
}

#main-footer-license>div img.resp-game-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

#main-footer-license>div img.resp-game-icon:hover:nth-child(1) {
    content: url(../images/footer/responsible-1-hover.png);
}

#main-footer-license>div img.resp-game-icon:hover:nth-child(2) {
    content: url(../images/footer/responsible-2.png);
}

#main-footer-license>div img.resp-game-icon:hover:nth-child(3) {
    content: url(../images/footer/responsible-3.png);
}

#main-footer-license>div img.social-icon {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

#main-footer-license>div img.social-icon:hover:nth-child(1) {
    content: url(../images/footer/connect-1-hover.png);
}

#main-footer-license>div img.social-icon:hover:nth-child(2) {
    content: url(../images/footer/connect-2-hover.png);
}

#main-footer-license>div img.social-icon:hover:nth-child(3) {
    content: url(../images/footer/connect-3-hover.png);
}

#main-footer-license>div img.social-icon:not(:last-child),
#main-footer-license>div img.resp-game-icon:not(:last-child) {
    margin-right: 12px;
}

.bottom-content-sec1 {
    position: relative;
    padding-top: 30px;
    margin-bottom: -20px;
    background-color: #000;
}

.bottom-content-sec1 .container-fluid {
    width: 1200px;
    margin: 0 auto;
}

.bottom-content-sec1 .content-title {
    color: #ffd800;
    font-size: 16px;
    font-weight: 900;
}

.bottom-content-sec1 .content-text {
    margin-bottom: 20px;
    color: #9b9fa0;
    font-size: 12px;
}

.bottom-content-sec1 .content-text a {
    color: #ffd800;
    font-weight: 900;
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}

.bottom-content-sec1 .content-text h4,
.bottom-content-sec1 .content-text h5 {
    font-size: 12px;
}

.bottom-content-sec1 .content-text ol,
.bottom-content-sec1 .content-text ul {
    padding-inline-start: 15px;
}

.bottom-content-sec1 .content-text li {
    margin-bottom: 5px;
}

.bottom-content-sec1 .content-text b {
    font-weight: 900;
}

/* end footer css */

/* Modal css */
.modal-content {
    border-radius: 15px;
    margin: 30% 0;
}

.modal-header {
    font-size: 1.3rem;
    color: #1e1e1e;
    background-color: #ffd800;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    font-weight: 900;
}

.modal-header .modal-title {
    font-weight: 900;
}

.modal-body {
    color: #000;
    margin: 20px 0;
}

.modal-body .form-control {
    background: #e5e6e7;
}

.modal-body .form-control::-moz-placeholder {
    color: blue;
    opacity: 1;
}

.modal-body .form-control:-ms-input-placeholder {
    color: blue;
}

.modal-body .form-control::-webkit-input-placeholder {
    color: blue;
}

.modal-body>.form-group {
    margin-bottom: 2rem;
}

.modal-content .close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #ffffff;
    cursor: pointer;
}

.modal-content .close-btn i {
    color: #1e1e1e;
    font-size: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: inherit;
}

/* End of Modal css */

/* modal style */
.custom-modal.show {
    display: flex !important;
    position: fixed !important;
}

.custom-modal .modal-dialog {
    margin: auto;
}

.custom-modal .modal-content {
    width: 600px;
}

.custom-modal .modal-header {
    background-color: #ffd800;
    color: #fff;
    position: relative;
    text-align: center;
    border: 0;
}

.custom-modal .modal-body {
    padding: 20px 0;
    background-color: #fff;
    color: #000;
    margin: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.custom-modal .brand-logo {
    margin: 0 auto;
    color: #000;
    font-weight: 900;
    font-size: 46px;
    line-height: 50px;
}

.custom-modal .modal-close-btn {
    position: absolute;
    color: #102226;
    background-color: #ffffff !important;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    opacity: 1 !important;
    border-radius: 100%;
}

.custom-modal .modal-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0px;
    cursor: pointer;
}

.custom-modal .primary-btn {
    font-weight: 900;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 45px;
    background-color: #ffd800;
    width: 50%;
    margin: auto;
    border: none;
}

.custom-modal .secondary-btn {
    font-weight: 900;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 45px;
    background-color: #1e1e1e;
    color: #fff;
    width: 50%;
    margin: auto;
}

/* modal style */

@media screen and (max-width: 991px) and (min-width: 268px) {
    section .container-fluid {
        width: 100%;
        min-width: 800px;
    }

    #forg-pass .modal-dialog {
        margin-right: 208px;
    }

    .slides-slcasino {
        min-height: 32vh;
    }

    .jcpt-dgt {
        width: 683px;
    }

    .menu-list-side ul.nav.nav-tabs {
        right: 36px !important;
    }

    .modal-dialog {
        max-width: 880px;
        margin: 60px auto;
    }

    header .container-fluid {}

    .container-fluid {
        width: 1400px;
        max-width: 1400px;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.333333%;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        width: 220px;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .navbar-toggleable-md .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: 100%;
    }

    .navbar-toggleable-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-light .navbar-toggler {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .modal-dialog {
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .contact-wrap {
        display: flex;
        justify-content: center;
    }

    .contact-wrap span {
        width: unset;
    }

    #main-footer-license>div .sitemap-row>div {
        height: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-left-border {
        border-left: none;
    }

    #main-footer-license>div>div>div {
        padding: 20px;
    }
}

@media (max-width: 350px) {
    .back-navbar-container .back-button {
        font-size: 12px;
    }

    .back-navbar-container .back-button i {
        font-size: 1.2rem;
    }

    .back-navbar-container .title {
        font-size: 15px;
    }

    .control-nav-loggedin .balance-amount {
        font-size: 1.1rem;
    }

    .control-nav-loggedin .refresh-wrap {
        height: 30px;
        width: 30px;
        top: 30%;
        right: -15px;
    }

    .control-nav-loggedin .refresh-wrap img {
        width: 16px;
        height: 19px;
    }
}

@-moz-document url-prefix() {
    .trans-icon:nth-child(1):hover::before {
        left: 19.8%;
    }

    .trans-icon:nth-child(2):hover::before {
        left: 37.8%;
    }

    .trans-icon:nth-child(3):hover::before {
        left: 55.8%;
    }

    .trans-icon:nth-child(4):hover::before {
        left: 19.8%;
    }

    .trans-icon:nth-child(5):hover::before {
        left: 37.8%;
    }

    .trans-icon:nth-child(6):hover::before {
        left: 55.8%;
    }

    .trans-icon:nth-child(7):hover::before {
        left: 19.8%;
    }

    .trans-icon:nth-child(8):hover::before {
        left: 37.8%;
    }

    .trans-icon:nth-child(9):hover::before {
        left: 55.8%;
    }

    .trans-icon:nth-child(10):hover::before {
        left: 19.8%;
    }

    .header-f .col-lg-3.nopadding {
        flex: 0 0 25% !important;
        max-width: 58% !important;
        float: left;
        z-index: 9999;
    }

    .header-f .col-lg-2.nopadding {
        flex: 0 0 2.666667%;
        max-width: 98.666667%;
    }

    .head-er .col-lg-4 {
        margin-right: 8px !important;
        flex: 0 0 31.333%;
        max-width: 28.333%;
    }
}

.txtupper {
    text-transform: uppercase;
}

.general_err {
    color: red;
    font-size: 13px;
    margin: 0 auto;
    font-weight: 700;
    text-align: left;
}

.general_err label {
    color: red;
    vertical-align: top;
}

label.error,
.err {
    color: red;
    font-size: 12px;
    text-align: left;
}

#line-box-TH,
#line-box-ID {
    height: 0;
    margin: 0;
    border: 0 none;
    padding: 0;
    position: fixed;
    right: 0;
    top: 28%;
    z-index: 998;
}

.side-pop-up input:before {
    position: absolute;
    right: 0px;
    cursor: pointer;
}

.side-pop-up input:checked:before {
    top: -83px;
}

input#line-box-TH:before {
    content: url("../images/home/sidebar-line-hide-v3.png?v=1");
}

input#line-box-TH:checked:before {
    content: url("../images/home/sidebar-line-show-v3.png");
}

input#line-box-ID:before {
    content: url("../images/home/sidebar-telegram-hide.png");
}

input#line-box-ID:checked:before {
    content: url("../images/home/sidebar-telegram-show.png");
}

.close-pop {
    position: fixed;
    right: 50px;
    top: 26%;
    z-index: 999;
    cursor: pointer;
}

.close-pop>img {
    width: 47px;
    height: 47px;
}

input#line-box-TH:checked~.close-pop {
    right: 130px;
}

input#line-box-ID:checked~.close-pop {
    right: 137px;
}

/* START OF Fix fasttrack shoutout popup */
#fasttrack-crm {
    position: relative !important;
}

#fasttrack-crm .selected-message .bottom-info {
    display: none !important;
}

#fasttrack-crm .cta-button {
    background-color: #FFD800 !important;
    color: #000000 !important;
}

#fasttrack-crm .notification-small .show-message-button {
    background-color: #FFD800 !important;
    color: #000000 !important;
}

#fasttrack-crm .notification-small .image-wrapper img {
    width: 100px;
    height: auto;
    display: block;
    margin-right: 10px;
    max-width: unset !important;
}

.nav-tab-hover .game-event {
    position: absolute;
    width: 45px;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.logoutbtn-icon {
    color: #FFD800;
    font-size: 30px !important;
    line-height: 33px !important;
    margin-left: 8px;
    cursor: pointer;
}

.referbtn {
    height: 32px;
    min-width: 120px;
    padding: 0 12px;
    color: #FFD800;
    background-color: #000;
    font-size: 14px;
    font-weight: 900;
    border: 2px solid #FFD800;
    border-radius: 5px;
    cursor: pointer;
}

#refer-btn-indicator {
    position: absolute;
    right: -5px;
    top: -5px;
    width: 12px;
    height: 12px;
    font-size: 10px;
    background: #E52B06;
    border-radius: 100%;
}

#main-recent-play {
    display: none;
}

.recent-play-title {
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 500;
}

#recent-play-row {
    position: relative;
}

.recent-play-prev,
.recent-play-next {
    position: absolute;
    top: 30%;
    left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    cursor: pointer;
}

.recent-play-next {
    left: unset;
    right: -20px;
}

.recent-play-container {
    display: flex;
    overflow-x: hidden;
}

.recent-play-item {
    /* min-width: calc(100% / 7 - 13px); */
    min-width: 158px;
    margin-right: 15px;
    background-color: #676767;
    cursor: pointer;
}

.recent-play-item:last-child {
    margin-right: 0;
}

.recent-play-img>img {
    width: 100%;
    max-height: 158px;
    object-fit: cover;
    height: 17vh;
}

.recent-play-name {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    color: #1E1E1E;
    background-color: #D5D5D5;
    font-size: 12px;
    text-align: center;
    height: 60px;
}

.image-container {
    position: relative;
    width: 240px;
    height: 300px;
}

.image-container .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-container .qr-android {
    position: absolute;
    top: 70px;
    left: 30px;
    width: 165px;
    height: 152px;
    z-index: 2;
}

.image-container .qr-ios {
    position: absolute;
    top: 45px;
    left: 30px;
    width: 165px;
    height: 152px;
    z-index: 2;
}