:root {
    --main-color: #0081E4;
    --main-color-hover: #1c96f3;
    --bgmain-color: #fff;
    --text-content-color: #3194e0;
    --font-regular: "line_seed_sans_thregular", sans-serif;
    --font-thin: "line_seed_sans_ththin", sans-serif;
    --font-bold: "line_seed_sans_thbold", sans-serif;
    --font-exbold: "line_seed_sans_thextrabold", sans-serif;
    --font-hebold: "line_seed_sans_thheavy", sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--main-color);
}

a:hover {
    color: var(--main-color-hover);
}

body {
    background-color: var(--bgmain-color);
    position: relative;
    color: var(--text-content-color);
    font-family: var(--font-regular);
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 60px;
}

body::after {
    content: "";
    /* background: linear-gradient(20deg, rgba(0, 129, 228, 0.00) 52.76%, #0081E4 96.11%); */
    position: absolute;
    width: 100%;
    height: 50vh;
    top: 0;
    left: 0;
    z-index: -1;
}

header {
    background: var(--Linear, linear-gradient(90deg, #37003c 0%, #1f0022 100%));
    box-shadow: 0px 5px 7.3px 0px rgba(0, 0, 0, 0.58);
    position: fixed;
    width: 100%;
    z-index: 2;
    top: 0;
}

.navHeader {
    display: flex;
    padding: 14px 0;
    justify-content: space-between;
    align-items: center;
}

.colorNav-icon {
    fill: var(--main-color);
}

.logo {
    height: 42px;
    width: auto;
    margin: 0 0 0 10px;
}

.navCenter {
    flex: 1;
}

.navTopCenter {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.navTopCenter li a {
    display: block;
    padding: 0 12px;
    color: #fff;
}

.navTopCenter li a:hover {
    color: var(--main-color);
}

.navTopCenter li a.active {
    color: var(--main-color);
    font-family: var(--font-bold);
}

.navRight {
    display: flex;
    align-items: center;
}

.btnIcon {
    border-radius: 8px;
    background: var(--Linear, linear-gradient(180deg, #69708C 0%, #2A2D39 78%, #0E111B 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 6px 0px #4F5E73 inset;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btnIcon:hover {
    background: var(--Linear, linear-gradient(180deg, #787f9a 0%, #3a3d49 78%, #1c202c 100%));
}

.btnMain {
    border-radius: 8px;
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 5px 0px rgba(0, 129, 228, 0.18), 0px 0px 6px 0px rgba(0, 129, 228, 0.85) inset;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffe4cb;
    font-size: 16px;
    padding: 0 18px;
    overflow: hidden;
    position: relative;
}

.btnMain:hover {
    color: #fff;
}

.btnMain::after {
    content: url("/assets/ez/images/btn-shadow.svg");
    position: absolute;
    left: -100px;
    top: -100px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btnMain:hover::after {
    opacity: 1;
    left: -36px;
    top: -36px;
}

.btnMain::before {
    content: url("/assets/ez/images/btn-shadow.svg");
    position: absolute;
    right: -100px;
    bottom: -100px;
    opacity: 0;
    transition: all 0.7s ease;
}

.btnMain:hover::before {
    opacity: 1;
    right: -46px;
    bottom: -46px;
}

.overlaybg,
.overlaybgModal {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #000000bd;
    z-index: -99;
    opacity: 0;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
}

.overlaybg.show,
.overlaybgModal.show {
    z-index: 99;
    opacity: 1;
}

.bodyfixed {
    position: fixed;
    width: 100%;
}

.contentMenuLeft {
    display: none;
}

.contentMenuLeft.show {
    z-index: 999;
    position: absolute;
    display: block;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0);
}

.changeStyle {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.changeStyle li a {
    display: flex;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.changeStyle li a.selected::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    background-color: #ffffff4d;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #fff;
}

.orange {
    background-color: #E16A2A;
}

.green {
    background-color: #11C550;
}

.blue {
    background-color: #0081E4;
}

.purple {
    background-color: #8417CC;
}

.pink {
    background-color: #E2007C;
}

.sectionBtn {
    margin-top: 30px;
    display: flex;
}

.flex-1 {
    flex: 1;
}

.btnDeposit {
    border-radius: 8px;
    background: linear-gradient(180deg, #39C663 0%, #2EA852 49.5%, #147D33 100%);
    box-shadow: 0px -4px 5px 0px rgba(42, 225, 109, 0.18), 0px 0px 6px 0px rgba(42, 225, 109, 0.85) inset;
    display: flex;
    align-items: center;
    padding: 5px;
    margin-right: 10px;
    color: #fff;
    justify-content: center;
    transition: all 0.2s ease;
}

.btnDeposit:hover {
    color: #C3FFD8;
    box-shadow: 0px 6px 16px 0px rgba(42, 225, 109, 0.52), 0px 0px 6px 0px rgba(42, 225, 109, 0.85) inset;
}

.iconbtn {
    margin-right: 10px;
}

.detailBtn h5 {
    margin-bottom: 0;
    font-family: var(--font-bold);
}


.btnWithdraw {
    border-radius: 8px;
    background: var(--Linear, linear-gradient(180deg, #FF8E51 0%, #E16A2A 49.5%, #943C0D 100%));
    box-shadow: 0px -4px 5px 0px rgba(255, 110, 0, 0.18), 0px 0px 6px 0px rgba(255, 151, 53, 0.85) inset;
    display: flex;
    align-items: center;
    padding: 10px;
    margin-left: 5px;
    color: #fff;
    justify-content: center;
    transition: all 0.2s ease;
}

.btnWithdraw:hover {
    color: #ffdbc3;
    box-shadow: 0px 6px 16px 0px rgba(255, 110, 0, 0.62), 0px 0px 6px 0px rgba(255, 151, 53, 0.85) inset;
}

.linkNav {
    border-radius: 7px;
    opacity: 0.9;
    background: url(/assets/ez/images/bg-linknav.jpg) no-repeat;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 12px 0px #2A2A2A inset;
    display: block;
    position: relative;
    margin-bottom: 16px;
    border: 1px solid #292929;
}

.linkNav:hover {
    border: 1px solid #3d3d3d;
}

.linkNav.linkPromotion {
    padding: 20px 20px 20px 136px;
}

.linkNav.linkShare {
    padding: 20px 136px 20px 20px;
}

.sectionLink {
    margin-top: 30px;
}

.detailPro {
    color: var(--text-content-color);
}

.detailPro h4 {
    margin-bottom: 3px;
    background: linear-gradient(180deg, #59B7FF 0%, #0081E4 49.5%, #003055 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-bold);
}

.linkNav.linkPromotion .imgPro {
    position: absolute;
    left: 0;
    top: -20px;
    transition: all 0.2s ease;
}

.linkNav:hover.linkPromotion .imgPro {
    top: -30px;
}

.linkNav.linkShare .imgPro {
    position: absolute;
    right: 0;
    top: -20px;
    transition: all 0.2s ease;
}

.linkNav:hover.linkShare .imgPro {
    top: -30px;
}

.copyRightNav {
    margin-top: 30px;
    opacity: 0.5;
    text-align: center;
}

.slideImg {
    overflow: hidden;
    width: 310px;
    height: 180px;
    border-radius: 16px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    display: block;
}

.slideImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sliderPromotion {
    margin-top: 30px;
    margin-bottom: 30px;
}

.slick-slide {
    margin: 0 6px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: flex;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    width: 35px;
    height: 4px;
    margin: 0 4px;
    background-color: #ffffff42;
    border-radius: 10px;
    display: block;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #3b3b3c;
    border-radius: 10px;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
}

.slick-dots li.slick-active {
    background-color: var(--main-color);
}

.tabMainGame {
    margin-top: 40px;
}

.mainTitleText {
    background: linear-gradient(180deg, #59B7FF 0%, #0081E4 49.5%, #003055 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-exbold);
    text-align: center;
}

.tabNav {
    margin-top: 40px;
    margin-bottom: 40px;
}

.tabContent .tabbody {
    display: none;
}

.tabContent .tabbody.active {
    display: block;
}

.tabNav a {
    cursor: pointer;
}

.tabNav a.active {
    font-weight: bold;
}

.btnTab {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #303030;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 8px 0px rgba(133, 133, 133, 0.25) inset;
    justify-content: center;
    font-size: 16px;
    color: var(--text-content-color);
    padding: 8px;
    overflow: hidden;
    position: relative;
}

.btnTab:hover {
    border: 1px solid var(--main-color-hover);
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    color: #fff;
}

.btnTab img {
    margin-right: 10px;
}

.btnTab.active {
    border: 1px solid var(--main-color-hover);
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    color: #fff;
}

.btnTab.active::after {
    content: url("/assets/ez/images/btn-shadow.svg");
    position: absolute;
    opacity: 1;
    left: -36px;
    top: -36px;
}

.btnTab.active::before {
    content: url("/assets/ez/images/btn-shadow.svg");
    position: absolute;
    opacity: 1;
    right: -46px;
    bottom: -46px
}

.btnTab::after {
    content: url("/assets/ez/images/btn-shadow.svg");
    position: absolute;
    left: -100px;
    top: -100px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btnTab:hover::after {
    opacity: 1;
    left: -36px;
    top: -36px;
}

.btnTab::before {
    content: url("/assets/ez/images/btn-shadow.svg");
    position: absolute;
    right: -100px;
    bottom: -100px;
    opacity: 0;
    transition: all 0.7s ease;
}

.btnTab:hover::before {
    opacity: 1;
    right: -46px;
    bottom: -46px;
}

.titleInTab {
    background: linear-gradient(270deg, #0081E4 0%, #0060ab 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-exbold);
    display: inline-block;
    margin-bottom: 0;
}


.titleTabTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.gameCard {
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    z-index: 1;
    transition: all 0.2s ease;
}

.gameCard::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #000000c4;
    z-index: 2;
    height: 100%;
    opacity: 0;
    transition: all 0.2s ease;
}

.gameCard:hover::after {
    opacity: 1;
}

.gameCard img {
    border-radius: 8px;
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
    transition: transform 0.3s ease;
}

.gameCard:hover img {
    transform: scale(1.2);
}

.gameCard .playHover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    border-radius: 8px;
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    color: #fff;
    display: block;
    padding: 8px 20px;
    z-index: 3;
    text-align: center;
    width: 80%;
    font-size: 16px;
    opacity: 0;
    transition: transform 0.3s ease;
    border: 1px solid var(--main-color);
}

.gameCard:hover .playHover {
    opacity: 1;
    top: 50%;
    transform: translate(-50%, -50%);
}

.playHover:hover {
    border: 1px solid var(--main-color-hover);
    background: var(--Linear, linear-gradient(180deg, #1690ed 0%, #0070c5 49.5%, #022c4d 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
}

.gameName {
    margin-bottom: 10px;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.titleInTab span {
    font-size: 16px;
    font-family: var(--font-regular);
}

.news {
    background-image: url(/assets/ez/images/bg-news.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 50px 0;
    margin-top: 50px;
    position: relative;
    background-size: cover;
}

.news::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #1b1b1bba; */
    left: 0;
    top: 0;
}

.newsContent {
    position: relative;
    z-index: 1;
}

.newsSubtitle {
    text-align: center;
    font-size: 16px;
    margin: 20px 0;
}

.newsImage {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

.newsImage img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.newsImage:hover img {
    transform: scale(1.2);
}

.newsTitle {
    display: block;
    margin-bottom: 16px;
    margin-top: 5px;
    color: var(--text-content-color);
}

.btnDark {
    border-radius: 8px;
    border: 1px solid #303030;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 8px 0px rgba(133, 133, 133, 0.25) inset;
    text-align: center;
    color: #fff;
    padding: 8px;
}

.btnDark:hover {
    background: var(--Linear, linear-gradient(0deg, #282828 0%, #414141 100%));
}

footer {
    padding: 40px 0;
}

.contentFooter {
    padding: 20px 0;
    text-align: center;
}

.iconBank img {
    margin: 4px 2px;
    opacity: 0.4;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 36px;
    height: 36px;
}

.iconBank img:hover {
    opacity: 1;
}

.navBottom {
    display: none;
}

.secPromotion {
    margin-top: 0;
    background-color: #0000004f;
    padding: 40px 0 30px 0;
}

.topText {
    display: flex;
}

.imgRight {
    overflow: hidden;
    position: relative;
}

.imgRight img {
    max-height: 280px;
}

.login {
    box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px 20px 0px 0px;
    position: fixed;
    z-index: -19;
    transition: all 0.4s ease;
    opacity: 0;
    display: none;
    width: 40%;
    left: 50%;
    bottom: inherit;
    top: 50%;
}

.login.active {
    z-index: 99;
    opacity: 1;
    display: inline-block;
    transform: translate(-50%, -50%);
}

.tabUserModal {
    display: flex;
    cursor: pointer;
    justify-content: center;
}

.bdLeft {
    border-radius: 18px 0px 0px 0px;
}

.bdRight {
    border-radius: 0px 18px 0px 0px;
}

.tabUserModal a {
    padding: 14px 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    flex: 1;
    text-align: center;
    background: linear-gradient(180deg, #282828 0%, #383838 7.5%, #292929 100%);
    font-size: 20px;
    font-family: var(--font-bold);
    color: #5E5E5E;
}

.tabUserModal a.active {
    background: linear-gradient(180deg, #232120 0%, #1C1C1C 7.5%, #1A1A1A 100%);
    color: #fff;
}

.tabUserContent {
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 0 0 20px 20px;
}

.tabUserContent>div {
    display: none;
}

.tabUserContent>div.active {
    display: block;
}

.detailLogin {
    padding: 30px 0;
}

.btnNavBottom {
    border-radius: 8px 8px 8px 8px;
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 12px;
    font-family: var(--font-bold);
    cursor: pointer;
}

.titleInModal {
    background: linear-gradient(180deg, #59B7FF 0%, #0081E4 49.5%, #003055 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-bold);
    text-align: center;
    margin-bottom: 4px;
}

.subTitleModal {
    text-align: center;
    font-size: 16px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: #838383;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid #404040;
    background: #3C3C3C;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25) inset;
}

.form-control::-moz-placeholder {
    color: #838383;
    opacity: 0.5;
}

.form-control::placeholder {
    color: #838383;
    opacity: 0.5;
}

.form-control:focus {
    outline: 0;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid #525252;
    background: #434343;
    box-shadow: 0px 4px 9px 0px rgb(0 0 0 / 31%) inset;
    color: #fff;
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    color: #838383;
    border: 1px solid #404040;
    background: #3C3C3C;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25) inset;
}

.form-select:focus {
    border: 1px solid #525252;
    background: #434343;
    box-shadow: 0px 4px 9px 0px rgb(0 0 0 / 31%) inset;
    color: #fff;
}


.closeModal {
    position: absolute;
    top: -60px;
    right: 8px;
}

.tabRegister .registerStep {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tabRegister .registerStep.active {
    display: block;
    opacity: 1;
}

.detailMoal {
    padding: 30px 0;
}

.textLight {
    text-decoration: underline;
    color: #fff;
}

.otp4,
.pass6 {
    display: flex;
    justify-content: center;
}

input.otp,
input.pass {
    width: 48px;
    margin: 0 3px;
}

input.otp.active,
input.pass.active {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.formInput {
    margin-bottom: 7px;
    position: relative;
}

.creditBox {
    border-radius: 8px;
    border: 1px solid #291F1D;
    background: #000;
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-right: 5px;
}

.creditBox span {
    margin-right: 5px;
}

.boxButtonDash {
    display: flex;
    margin-bottom: 30px;
}


.modalExtra {
    box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    position: fixed;
    z-index: -19;
    transition: all 0.4s ease;
    opacity: 0;
    display: none;
    width: 40%;
    left: 50%;
    bottom: inherit;
    top: 50%;
    background-color: #1A1A1A;
}

.modalExtra.active {
    z-index: 99;
    opacity: 1;
    display: inline-block;
    transform: translate(-50%, -50%);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: #1A1A1A;
    background-clip: padding-box;
    border: none;
    border-radius: 20px;
    outline: 0;
    box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.25);
}

.modal-title {
    font-family: var(--font-bold);
    color: #FFF;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: none;
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
    border-radius: 20px 20px 0px 0px;
    background: linear-gradient(180deg, #282828 0%, #383838 7.5%, #292929 100%);
}

.icoClose {
    position: absolute;
    top: 8px;
    right: 10px;
}

.modal-footer {
    border-top: none;
}

.amountBtn {
    position: absolute;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    top: 12px;
}

.amountBtn.reduce {
    left: 10px;
}

.amountBtn.increase {
    right: 10px;
}

.amountNum {
    border-radius: 6px;
    border: 1px solid #262626;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    padding: 8px;
    color: var(--text-content-color);
}

.amountNum.selected {
    border: 1px solid var(--main-color);
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
}


.lineTextCenter {
    position: relative;
    height: 30px;
}

.lineTextCenter hr.lineLight {
    height: 1px;
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lineTextCenter span {
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    background-color: #1a1a1a;
    z-index: 1;
    position: absolute;
    justify-items: center;
    left: 50%;
    top: 50%;
    padding: 4px 20px;
    transform: translate(-50%, 0);
}

.selectBonus {
    border-radius: 8px;
    border: 1px solid #2C2C2C;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 10px 10px 10px;
    text-align: center;
    line-height: 16px;
    position: relative;
    min-height: 90px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.selectBonus img {
    position: absolute;
    left: 50%;
    top: -16%;
    transform: translate(-50%, -10%);
    transition: all 0.2s ease;
}

.selectBonus:hover {
    color: var(--main-color);
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 3px 4px 4px 0px rgb(0 135 242 / 30%);
}

.selectBonus:hover img {
    top: -22%;
}

.selectBonus.selected {
    color: var(--main-color);
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 3px 4px 4px 0px rgb(0 135 242 / 30%);
}

.imgQr {
    border-radius: 10px;
    margin-bottom: 20px;
}

.boxDetailDeposit {
    border-radius: 20px;
    background: #242424;
    padding: 20px;
    text-align: center;
}

.timeBack {
    font-family: var(--font-bold);
    color: var(--main-color);
}

.amountCredit {
    font-family: var(--font-exbold);
    color: var(--main-color);
}

.textAmount {
    margin-top: 10px;
}

.getBonus {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.getBonus img {
    height: 24px;
    margin-right: 8px;
}

.boxCreditUser {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.boxCreditUser img {
    height: 24px;
    margin-right: 10px;
}

.slideMenuRight {
    position: absolute;
    right: -1000px;
    top: 0;
    z-index: -99;
    opacity: 0;
    width: 90%;
    background-color: #040404;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    box-shadow: 0px -16px 16px 0px rgb(0 0 0 / 73%);
    background-image: url(/assets/ez/images/bg-navright.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    display: none;
}

.slideMenuRight.show {
    right: 0;
    z-index: 99;
    opacity: 1;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    left: inherit;
    width: 30%;
    border-radius: 20px;
}

.slideMenuRight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgb(4 4 4 / 13%) 0%, rgb(4 4 4 / 58%) 36%, rgb(4 4 4 / 88%) 50%);
    z-index: -1;
}

.headerNavMRight {
    padding: 20px;
}

.closeMenuRight {
    position: absolute;
    right: 10px;
}

.userIDNav {
    font-family: var(--font-bold);
    color: var(--main-color);
}

.cardBoxRightNav {
    border-radius: 20px 20px 0px 0;
    background: linear-gradient(180deg, #0081e4 1%, #042d4d 10%, rgba(4, 4, 4, 0.00) 91%);
    box-shadow: 0px -16px 16px 0px rgb(33 150 243 / 31%);
    padding: 20px;
    background-color: #050404;
}

.menuright {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.menuright li a {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--text-content-color);
    padding: 10px;
    margin-bottom: 5px;
}

.menuright li a img {
    margin-right: 15px;
}

.menuright li a:hover,
.menuright li a.active {
    background-color: #000000ce;
    border-radius: 8px;
    color: var(--main-color);
}

.leftRight {
    justify-content: space-between;
}

.btnSignout {
    border-radius: 6px;
    border: 1px solid var(--main-color);
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    color: #fff;
    padding: 4px 10px;
    margin-right: 54px;
}

.boxAccount {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.boxAccount img {
    margin-right: 20px;
}

.boxChangePassword {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.boxChangePassword.open {
    max-height: 300px;
    /* ปรับความสูงตามขนาดของฟอร์ม */
    transition: max-height 0.3s ease-in;
    margin-bottom: 30px;
}

.bgCard {
    border-radius: 14px;
    border: 1px solid #2D2D2D;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%), url(../images/bg-card.jpg) lightgray 50% / cover no-repeat;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.91), 0px 0px 20px 0px #000 inset;
    padding: 20px;
}

.imgBankName {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.imgBankName img {
    margin-right: 20px;
}

.nameBank {
    font-size: 18px;
    color: #fff;
    flex: 1;
}

.BankNum h2 {
    font-family: var(--font-bold);
    color: var(--main-color);
    font-size: 40px;
}

.boxNameAccount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid #333333;
    padding-top: 10px;
}

.boxNameAccount h4 {
    color: #fff;
    font-family: var(--font-bold);
    font-size: 18px;
    margin-bottom: 0;
}

.headerTable {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.icoCalendar {
    position: absolute;
    right: 15px;
    top: 6px;
    font-size: 16px;
    color: #838383;
}

.headerTable h6 {
    font-family: var(--font-bold);
    color: #fff;
    margin-bottom: 0;
}

.boxTransaction {
    min-height: 200px;
    max-height: 500px;
    overflow: scroll;
}

.rowTransaction {
    border-radius: 10px;
    background: #2E2E2E;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rowLeft,
.rowRight {
    display: flex;
    align-items: center;
}

.rowLeft img {
    margin-right: 10px;
}

.detailTran h5 {
    margin-bottom: 0;
    font-family: var(--font-bold);
    color: #fff;
    font-size: 16px;
}

.colorDeposit {
    font-family: var(--font-bold);
    font-size: 16px;
    color: #11C550;
}

.colorCancel {
    font-family: var(--font-bold);
    font-size: 16px;
    color: #838383;
}

.colorWithdraw {
    font-family: var(--font-bold);
    font-size: 16px;
    color: #FF5656;
}

.status {
    border-radius: 4px;
    color: #fff;
    padding: 1px 8px;
    display: inline-block;
    text-align: center;
    width: 60px;
}

.status.success {
    background-color: #11C550;
}

.status.cancel {
    background-color: #FF5656;
}

.boxLinkRefer {
    border-radius: 14px;
    border: 1px solid #2E2E2E;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    margin-top: 30px;
}

.btnCopy-sm {
    position: absolute;
    right: 8px;
    top: 6px;
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.headerReferal {
    padding-bottom: 30px;
    min-height: 300px;
    background-image: url(/assets/ez/images/bg-head-page-3.jpg);
    background-repeat: no-repeat;
    background-position: center 50%;
    background-size: cover;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.headerReferal::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background-color: #000000b8; */
    z-index: -2;
}

.tabTitleReferal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabTitleReferal a {
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--text-content-color);
    margin: 0 2px;
}

.tabTitleReferal a.active {
    color: #fff;
    border-radius: 6px;
    border: 1px solid var(--main-color);
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
}

.contentTabReferal {
    margin-top: 30px;
}

.bodyTabReferal {
    display: none;
}

.bodyTabReferal.active {
    display: block;
}

.boxState {
    border-radius: 14px;
    border: 1px solid #2E2E2E;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    text-align: center;
}

.boxState h4 {
    font-family: var(--font-bold);
    color: var(--main-color);
}

.table> :not(caption)>*>* {
    color: var(--text-content-color);
    background-color: #2E2E2E;
}

.tableStats p {
    margin-bottom: 0;
}

.tableStats h4 {
    font-family: var(--font-bold);
    color: var(--main-color);
}

.textlight-table {
    color: #fff;
    font-size: 16px;
}

.profit-table {
    font-family: var(--font-bold);
    color: var(--main-color);
    font-size: 16px;
}

.btnSM {
    border-radius: 6px;
    border: 1px solid #2E2E2E;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 5px 10px;
    margin: 0 2px;
    color: var(--text-content-color);
}

.btnSM.active {
    border: 1px solid var(--main-color);
    background: var(--Linear, linear-gradient(180deg, #2FA5FF 0%, #0081E4 49.5%, #023760 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 129, 228, 0.25), 0px 0px 8px 0px rgba(0, 129, 228, 0.51) inset;
    color: #fff;
}

.font-nomal {
    font-size: 13px;
}

.titlePageHeader {
    font-size: 46px;
    font-family: var(--font-exbold);
    padding-top: 60px;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #49afff 49.5%, #005da5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 2px #2ca2ff69;
}

.subPageHeader {
    color: #fff;
    font-size: 22px;
}

.imgHeaderPage {
    position: relative;
}

.imgHeaderPage img {
    position: absolute;
    right: 0;
    width: 312px;
    z-index: -1;
    top: 20px;
}

.backPage {
    display: flex;
    color: #fff;
    align-items: center;
}

.backPage i {
    margin-right: 10px;
}

.newsTitleDetail {
    font-family: var(--font-bold);
    margin-top: 20px;
    color: #fff;
}

.imgNews-lg {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.imgNews-lg img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.newBodyContent {
    margin-top: 30px;
    margin-bottom: 30px;
}

.img2Col {
    display: flex;
    justify-content: center;
}

.img2Col .img {
    overflow: hidden;
    margin: 0 10px;
}

.img2Col img {
    border-radius: 16px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.top0 {
    top: -40px !important;
}

.cardPromo {
    border-radius: 10px;
    border: 1px solid #363636;
    background: var(--Linear, linear-gradient(0deg, #171717 0%, #323232 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 100%;
    padding: 20px;
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #fff;
    display: block;
}

.cardPromo:hover {
    border: 1px solid #4b4b4b;
}

.cardPromo img {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translate(-50%, 0);
    transition: all 0.2s ease;
}

.cardPromo h4 {
    font-family: var(--font-bold);
    color: var(--main-color);
    padding-top: 120px;
    transition: all 0.2s ease;
}

.cardPromo:hover h4 {
    color: var(--text-content-color);
}

.cardPromo:hover img {
    top: -60px;
}

.contentPromo {
    margin-top: 50px;
}

.cardPromo p {
    margin-bottom: 0;
}

.headTitlePromo {
    text-align: center;
    font-size: 16px;
}

.headTitlePromo h4 {
    background: linear-gradient(180deg, #59B7FF 0%, #0081E4 49.5%, #003055 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-bold);
    font-size: 28px;
    margin-top: 10px;
}

.detailPromodal {
    border-radius: 10px;
    border: 1px solid #363636;
    background: linear-gradient(0deg, #094a67 0%, #002849 3.5%, #171717 19.87%, #323232 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 15px;
}

.pageCasino {
    width: 340px !important;
}

.btnSearch {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 28px;
    border-radius: 5px;
    font-size: 13px;
}

.align-item-center {
    align-items: center;
}

.casinoPartner {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 8px;
    border: 1px solid #404040;
    background: #1A1A1A;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.56);
}

.casinoPartner li a {
    display: flex;
    border-bottom: 1px solid #404040;
    align-items: center;
    padding: 10px 5px;
    color: #fff;
}

.casinoPartner li a:hover {
    background-color: var(--main-color);
}

.casinoPartner li:last-child a {
    border-bottom: 0px solid #404040;
    border-radius: 0 0 8px 8px;
}

.casinoPartner li:first-child a {
    border-radius: 8px 8px 0 0;
}

.imgLogoPartner {
    margin-right: 5px;
}

.namePartner {
    overflow: hidden;
}

.pageSport {
    width: 395px !important;
}

.pageLotto {
    width: 324px !important;
}


@media screen and (max-device-width: 480px) {
    .navBottom {
        background: var(--Linear, linear-gradient(90deg, #37003c 0%, #1f0022 100%));
        box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.25);
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 14px 14px 0 0;
        z-index: 9;
    }

}