@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,700,900"); @import url("https://fonts.googleapis.com/css?family=Anton:300,400,700,900"); :root {
    --bg-color: #fff;
    --bg-color1: #fff;
    --bg-color2: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
    --bg-color3: #ffffff9a;
    --bg-color4: #fff;
    --bg-color5: #d4d4d4;
    --text-color: #ae2522;
    --text-color1: #fff;
    --text-color2: #888888;
    --text-color3: #ae2522;
    --main-color: #ae2522;
    --main-color2: linear-gradient(180deg, rgba(179,23,30,1) 0%, rgba(109,6,16,1) 100%);
    --text-main: #ae2522;
    --text-gray: #9a9a9a;
    --text-head: #ffffff;
    --text-amout: #ae2522;
    --border-color: #fff;
    --input-border: rgba(31, 31, 31, .1);
    --btn-2: #fff;
    --btn-3: linear-gradient(180deg, rgba(179,23,30,1) 0%, rgba(109,6,16,1) 100%);
    --box-shadow: 0 3px 0.6px 0 rgba(17, 8, 8, 0.1);
    --box-shadow1: 0px 0px 4px 1px #ddd;
    --footer-color: #212121;
}

.theme-light {
    --bg-color: #fff;
    --bg-color1: #fff;
    --bg-color2: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
    --bg-color3: #ffffff9a;
    --bg-color4: #fff;
    --bg-color5: #d4d4d4;
    --text-color: #ae2522;
    --text-color1: #fff;
    --text-color2: #888888;
    --text-color3: #ae2522;
    --main-color: #ae2522;
    --main-color2: linear-gradient(180deg, rgba(179,23,30,1) 0%, rgba(109,6,16,1) 100%);
    --text-main: #ae2522;
    --text-gray: #9a9a9a;
    --text-head: #ffffff;
    --text-amout: #ae2522;
    --border-color: #fff;
    --input-border: rgba(31, 31, 31, .1);
    --btn-2: #fff;
    --btn-3: linear-gradient(180deg, rgba(179,23,30,1) 0%, rgba(109,6,16,1) 100%);
    --box-shadow: 0 3px 0.6px 0 rgba(17, 8, 8, 0.1);
    --box-shadow1: 0px 0px 4px 1px #ddd;
    --footer-color: #212121;
}

.theme-dark {
    --bg-color: #2c2c2c;
    --bg-color1: #fff;
    --bg-color2: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
    --bg-color3: #ffffffb8;
    --bg-color4: #181818;
    --bg-color5: #d4d4d4;
    --text-color: #ae2522;
    --text-color1: #fff;
    --text-color3: #ffffff;
    --main-color2: linear-gradient(180deg, rgba(179,23,30,1) 0%, rgba(109,6,16,1) 100%);
    --main-color: #ae2522;
    --text-gray: #9a9a9a;
    --text-main: #ae2522;
    --text-head: #ffffff;
    --text-amout: #ffffff;
    --border-color: #3f3f3f;
    --input-border: rgba(31, 31, 31, .1);
    --btn-2: #fff;
    --btn-3: linear-gradient(180deg, rgba(179,23,30,1) 0%, rgba(109,6,16,1) 100%);
    --box-shadow: 0 3px 0.6px 0 rgba(17, 8, 8, 0.1);
    --box-shadow1: 0px 0px 4px 1px #777777;
    --footer-color: #212121;
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.2;
    font-size: 15px;
    color: var(--text-color);
    background: var(--bg-color);
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
}

a:hover, a:focus, button:focus, button:hover {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], input::placeholder, textarea, select {
    color: var(--text-gray);
    width: 100%;
}

input:focus, input:active {
    outline: none !important;
    box-shadow: none !important;
}

::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 5px;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}

@font-face {
    font-family: casanova;
    src: url("../fonts/Casanova-Scotia.otf") format("opentype");
}

.body_background {
    background: url("../images/index/bg.png") center top / auto no-repeat;
}

.body_background_spec {
    padding-bottom: 30px;
}

.body_background_afterlogin {
    padding-bottom: 30px;
    padding-top: 30px;
}

.t-header {
    height: 120px;
    position: relative;
}

.header-web {
    height: 120px;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 3;
    box-shadow: var(--box-shadow);
    background: var(--bg-color);
}

.top-header {
    background: var(--bg-color);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-lang button img, .top-lang .dropdown-menu img {
    max-width: 35px;
}

.top-lang button {
    color: var(--text-main);
    background: none;
    border: none;
    padding: 10px 20px;
}

.top-lang button:focus, .top-lang button:active {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    outline: none !important;
}

.top-lang .dropdown-menu {
    padding: 0px;
    border-color: transparent;
}

.top-lang .dropdown-item {
    color: var(--text-color);
    border-right: .976px solid var(--border-color);
    background: var(--bg-color);
    backdrop-filter: blur(9.7561px);
    padding: 10px 20px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-btn {
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 13px;
    padding: 10px 30px;
    color: var(--text-color);
    font-weight: 600;
}

.login-btn:hover {
    filter: brightness(1.1);
}

.reg-btn {
    background: var(--btn-3);
    border: 2px solid #ae2522;
    border-radius: 13px;
    padding: 10px 30px;
    color: var(--text-color1);
    font-weight: 600;
}

.reg-btn:hover {
    filter: brightness(1.1);
}

.chat-btn {
    background: var(--bg-color2);
    border-radius: 50px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    height: 40px;
    width: 40px;
    text-align: center;
    padding: 10px;
}

.header-menu {
    display: grid;
    grid-template-columns: 20% 75%;
    align-items: center;
    margin: auto;
    justify-content: center;
    max-width: 1400px;
    background: var(--main-color2);
}

.header-menu_bg {
    background: var(--main-color2);
}

.logo {
    text-align: center;
}

.header-swiper .swiper-slide {
    text-align: center;
    padding: 10px 0px;
    width: 100%;
}

.header-swiper .swiper-slide img {
    max-width: 30px;
    filter: brightness(0) invert(1);
}

.header-swiper .swiper-slide:hover, .header-swiper .swiper-slide.active {
    background: var(--main-color);
    cursor: pointer;
}

.header-swiper .swiper-slide:hover img, .header-swiper .swiper-slide.active img {
    filter: brightness(0) invert(1);
}

.header-swiper .swiper-slide span {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-head);
}

.header-swiper .swiper-slide:hover span, .header-swiper .swiper-slide.active span {
    color: rgb(255, 255, 255);
}

.swiper-container {
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0px;
    z-index: 1;
}

.swiper-button-next.slideNext-header {
    background-image: none;
    font-size: 20px;
    color: var(--text-gray);
    position: relative;
    margin: 0px;
    padding: 0px 20px;
}

.swiper-button-prev.slidePrev-header {
    background-image: none;
    font-size: 20px;
    color: var(--text-gray);
    position: relative;
    margin: 0px;
    padding: 0px 20px;
}

.swiper-button-next.slideNext-header::after, .swiper-button-prev.slidePrev-header::after {
    content: "";
}

.header-swiper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-theme {
    position: relative;
}

.color-icon {
    font-size: 20px;
    transition: 0.2s;
    cursor: pointer;
    background: var(--bg-color2);
    border-radius: 50px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    height: 40px;
    width: 40px;
    text-align: center;
    padding: 10px;
}

.color-theme:hover .color-icon {
    color: rgb(0, 0, 0);
}

.themeSwitcher {
    position: absolute;
    top: 42px;
    margin: auto;
    background: var(--bg-color);
    list-style: none;
    padding: 10px;
    display: none;
    cursor: pointer;
    z-index: 3;
}

.themeSwitcher.active {
    display: block;
}

.colors {
    font-size: 25px;
    cursor: pointer;
}

li#theme-light {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(151, 151, 151)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-red {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(162, 0, 0)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-purple {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(56, 0, 162)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-black {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(0, 0, 0)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-blue {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(0, 158, 255)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-orange {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(255, 135, 0)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-pink {
    background: -webkit-linear-gradient(top, rgb(243, 247, 250), rgb(238, 0, 255)) text;
    -webkit-text-fill-color: transparent;
}

li#theme-dark {
    background: -webkit-linear-gradient(top, rgb(18, 18, 18), rgb(113, 113, 113)) text;
    -webkit-text-fill-color: transparent;
}

.header-mobile {
    display: none;
}

.header-m-wrap {
    display: flex;
    align-items: center;
    transition: top 0.5s;
    justify-content: space-between;
    padding: 10px;
    background: var(--bg-color);
}

.header-m-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-m-left i {
    color: var(--text-gray);
    font-size: 22px;
    margin-right: 10px;
}

.header-m-left img {
    max-width: 120px;
}

.header-m-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.m-log-btn {
    color: var(--main-color);
}

.m-reg-btn {
    color: var(--text-gray);
}

.mobile-menu {
    display: flex;
    width: 100%;
    overflow: auto;
    color: rgb(255, 255, 255);
    background: var(--main-color2);
}

.mobile-menu a {
    color: #ffffff7d;
    padding: 5px 10px;
    white-space: nowrap;
}

.mobile-menu a.active {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: transparent;
}

.announce-bar {
    background: var(--bg-color1);
    box-shadow: var(--box-shadow);
    color: var(--text-main);
    padding: 10px;
}

.announce-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0px auto;
    position: relative;
}

.ann-icon {
    color: var(--main-color);
}

.ann-bar {
    width: 100%;
    padding-left: 35px;
    padding-top: 3px;
}

.search-game {
    width: 286px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-top: 20px;
}

.search-form {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    color: inherit;
}

.search-btn {
    display: block;
    position: absolute;
    flex-shrink: 0;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-gray);
}

.search-input {
    width: 100%;
    height: 44px;
    padding: 0px 20px 0px 50px;
    transition: 0.2s;
    border-radius: 10px;
    border: unset;
    background: var(--bg-color1);
    box-shadow: var(--box-shadow1);
    color: var(--text-gray);
}

.search-input::placeholder {
    color: var(--text-gray);
}

.home-game {
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-radius: 5px;
    border: unset;
    background: var(--bg-color3);
    box-shadow: var(--box-shadow1);
    padding: 25px;
    margin: 20px 0px 0px;
}

.home-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.home-title-icon {
    width: 53px;
    height: 53px;
    flex-shrink: 0;
}

.home-title-icon > img {
    width: 100%;
}

.home-title-text {
    font-size: 48px;
    font-family: Anton, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text-main);
}

.home-title-more {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    text-transform: capitalize;
    gap: 5px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin-left: auto;
}

.home-title-more:hover {
    color: var(--main-color);
}

.game-list-wrapper .game-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0px, 1fr));
    gap: 25px;
}

.game-list-item {
    max-width: 100%;
    position: relative;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
}

.game-list-item:hover .game-img > img {
    transform: scale(1.1);
}

.game-list-item:hover .action-wrap {
    opacity: 1;
    visibility: visible;
}

.game-list-item:hover .action-wrap::after {
    top: 150%;
    visibility: visible;
    transition: 0.7s 0.3s;
}

.game-list-item:hover .action-btn {
    transition: 0.3s 0.1s;
    transform: scale(1);
}

.game-list-item .game-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.game-list-item .game-img, .game-list-item .game-img > img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.game-list-item .game-img > img {
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    transition: 0.5s;
}

.game-list-item .action-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: opacity 0.2s;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(1.5px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    z-index: 1;
    visibility: hidden;
    overflow: hidden;
}

.game-list-item .action-wrap::after {
    content: "";
    display: block;
    width: 200%;
    height: 150px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    position: absolute;
    top: -150%;
    transform: rotate(-15deg);
    visibility: hidden;
    pointer-events: none;
}

.game-list-item .start-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    text-transform: capitalize;
    padding: 0px 24px;
    min-width: 110px;
    height: 37px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    background: var(--main-color);
}

.game-list-item .start-btn.active, .game-list-item .start-btn:not(.disabled):hover {
    filter: brightness(1.05);
}

.game-list-item .free-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    text-transform: capitalize;
    padding: 0px 24px;
    min-width: 96px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
}

.game-list-item .free-btn.active, .game-list-item .free-btn:not(.disabled):hover {
    filter: brightness(1.05);
}

.game-list-item .action-btn {
    transform: scale(0.5);
    min-width: unset;
    padding: unset;
    width: 140px;
    height: 42px;
    flex-shrink: 0;
    font-size: 12px;
}

.game-list-item .love {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    z-index: 1;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    border-radius: 999px;
    background: rgb(255, 255, 255);
    color: var(--main-color);
}

.game-list-item .game-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 42px;
    height: 42px;
    border-radius: 0px 0px 9px;
    background: rgba(35, 86, 228, 0.8);
    padding: 6px;
    flex-shrink: 0;
    z-index: 1;
}

.game-list-item .game-logo-wrap > img {
    width: 100%;
    height: 100%;
}

.game-list-item .game-logo {
    width: 86px;
    height: 43px;
    object-fit: contain;
}

.game-list-item .game-info {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    padding: 0px 10px;
    background: var(--bg-color2);
    box-shadow: var(--box-shadow);
    border-radius: 0px 0px 10px 10px;
}

.game-list-item .game-name-container {
    width: 100%;
}

.game-list-item .game-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    line-height: 1.3;
    word-break: break-all;
}

.game-list-item .game-tag {
    position: absolute;
    top: -1px;
    left: -8px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    background: rgb(255, 0, 0);
    color: var(--text-color1);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    z-index: 1;
}

.game-tag::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 3px;
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgb(255, 0, 0);
}

.game-list-item .game-tag > img {
    width: 43px;
    height: 31px;
    flex-shrink: 0;
}

.t-footer {
    background: var(--footer-color);
    padding: 20px 0px 30px;
}

.footer-link {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.footer-link a {
    color: var(--text-gray);
    padding: 0px 10px;
}

.footer-link a:hover {
    color: var(--main-color);
}

.footer-divider {
    width: 100%;
    height: 2px;
    border: 1px solid #000;
    display: inline-block;
    margin: 15px 0px;
    box-shadow: 1px 1px #ffffff30;
}

.footer-prov {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    padding: 20px 0px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0px;
    font-size: 12px;
    color: var(--text-gray);
}

.footer-license {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
}

.footer-license img {
    max-width: 120px;
    flex-shrink: 0;
}

.footer-copyright {
    white-space: nowrap;
}

.footer-line {
    color: var(--text-gray);
}

.mobile-footer {
    display: none;
    width: 100%;
    bottom: 0.27rem;
    position: fixed;
    z-index: 10;
}

.m-footer-bg {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: var(--bg-color);
    border-radius: 50px;
    backdrop-filter: blur(0.28rem);
    margin: 0px 0.3rem auto;
    box-shadow: 1px 1px 2px 1px #00000047;
}

.m-footer-bg a {
    padding: 10px;
    color: var(--text-gray);
    font-size: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}
.m-footer-bg i{
    font-size: 19px;
}

.m-footer-bg a.active {
    color: var(--main-color);
}

.m-footer-bg a.active::after {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--main-color);
}

.right-bar {
    z-index: 2;
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    border-radius: 6px 0px 0px 6px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    box-shadow: var(--box-shadow);
    font-size: 12px;
    font-weight: 400;
}

.right-bar .right-container {
    width: 80px;
    padding: 25px 0px;
}

.right-bar .right-container, .right-bar .right-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    transition: 0.2s;
}

.right-bar .right-item {
    justify-content: center;
    cursor: pointer;
    user-select: none;
    text-transform: capitalize;
    position: relative;
}

.right-bar .right-item:hover {
    filter: brightness(1.05);
}

.right-bar .right-item:hover .right-float-bg {
    visibility: visible;
    opacity: 1;
}

.right-bar .right-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.modal-login .btn-close {
    position: absolute;
    top: -25px;
    right: -35px;
    background: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    padding: 8px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    transition: 0.2s;
}

.modal-login .btn-close:hover {
    transform: rotate(90deg);
}

.modal-login .modal-content {
    background: var(--bg-color4);
    border: 2px solid var(--main-color);
}

.login-title {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
}

.login-form h2 {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
}

.login-form-box {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.login-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    top: 49%;
    transform: translateY(-50%);
    left: 18px;
    transition: 0.2s;
    z-index: 1;
}

.login-form-box input {
    padding: 15px 15px 15px 45px;
    border-radius: 5px;
    border: 1px solid var(--input-border);
    background: var(--bg-color1);
}

.registrationPassIcon {
    position: absolute;
    right: 10px;
    top: 36%;
    max-width: 20px;
    color: var(--text-color);
    cursor: pointer;
}

.login-form-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px 20px;
    font-size: 12px;
    color: var(--text-color);
}

.remember-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remember-item .remPass_box {
    position: relative;
}

.remember-item .remPass_box .remPass_checkbox {
    width: 20px;
    height: 20px;
    display: block;
    border: none;
    outline: none;
    position: relative;
    background-color: transparent;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
}

.remember-item .remPass_box.checked .checked-bg {
    border-color: var(--main-color);
    background: var(--main-color);
}

.remember-item .remPass_box.checked .gougou {
    opacity: 1;
}

.remember-item .remPass_box .checked-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid rgb(31, 31, 31);
    cursor: pointer;
    transition: 0.15s linear;
    opacity: 1;
}

.remember-item .remPass_box .gougou {
    border-width: 0px 2px 2px 0px;
    width: 5px;
    height: 10px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -60%;
    rotate: 45deg;
    display: inline-block;
    opacity: 0;
    scale: 0.9;
}

.login-checkbox {
    position: relative;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 20px;
    width: 20px;
    color: rgb(97, 97, 97);
}

.login-checkbox::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 20px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(97, 108, 118);
    border-radius: 2px;
    box-shadow: none;
}

.login-checkbox:checked::after {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 0px;
    top: 0px;
    text-align: center;
    font-size: 10px;
    height: 20px;
    width: 20px;
    content: "";
    font-family: FontAwesome;
    background-color: var(--main-color);
    border: 1px solid rgb(97, 108, 118);
    color: rgb(255, 255, 255);
}

.forget-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--main-color);
}

.forget-btn:hover {
    filter: brightness(1.05);
}

.login-modal-btn {
    background: var(--main-color);
    display: block;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 15px 0px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
}

.login-modal-btn:hover {
    filter: brightness(1.05);
}

.firebase-login {
    flex-direction: column;
    gap: 16px;
    color: rgb(135, 135, 135);
    font-size: 12px;
}

.firebase-login, .firebase-login .tips {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0px 0px;
}

.firebase-login .tips {
    gap: 10px;
    color: currentcolor;
}

.firebase-login .tips::after, .firebase-login .tips::before {
    content: "";
    flex: 1 1 0%;
    height: 1px;
    background: rgb(229, 231, 235);
}

.firebase-login .tips::after {
    transform: rotateY(180deg);
}

.firebase-login .firebase-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.firebase-login .firebase-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    text-transform: capitalize;
}

.firebase-login .firebase-item.facebook {
    border-radius: 5px;
    border: 1px solid rgb(215, 215, 215);
    padding: 10px 15px;
    font-size: 20px;
    color: rgb(9, 102, 222);
}

.login-reg-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    color: var(--text-color);
}

.login-reg-wrap a {
    color: var(--main-color);
}

.login-reg-wrap a:hover {
    filter: brightness(1.05);
}

.login-acc {
    text-align: center;
    color: var(--main-color);
    padding: 10px 0px;
    cursor: pointer;
}

.login-acc:hover {
    color: var(--text-gray);
}

.login-code {
    position: absolute;
    right: 10px;
    top: 28%;
    max-width: 100px;
    color: var(--text-color);
}

.select-box {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
}

.select-box input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
}

.select-box input[type="tel"] {
    border-radius: 0px 5px 5px 0px;
    background: var(--bg-color1);
}

.select-box input[type="tel"]:focus {
    outline: transparent !important;
}

.selected-option {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-option div {
    position: relative;
    width: 9rem;
    text-align: center;
    cursor: pointer;
    padding: 15px 5px 15px 35px;
    border-radius: 5px 0px 0px 5px;
    background-color: var(--bg-color1);
    color: var(--text-color);
}

.selected-option div::after {
    position: absolute;
    content: "";
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    transition: 0.2s;
}

.selected-option div.active::after {
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    top: 4rem;
    width: 100%;
    background: var(--bg-color1);
    border-radius: 0.5rem;
    display: none;
}

.select-box .options.active {
    display: block;
    z-index: 2;
}

.select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.1rem;
    width: 0px;
    height: 0px;
    border-width: 0.6rem;
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-image: initial;
    border-bottom-color: var(--text-color);
}

input.search-box {
    background-color: var(--bg-color1);
    color: var(--text-color);
    border-radius: 0.5rem 0.5rem 0px 0px;
    padding: 15px 10px;
    border: 1px solid var(--input-border);
}

.select-box ol {
    list-style: none;
    max-height: 23rem;
    overflow: overlay;
    padding: 0px;
    border: 1px solid var(--input-border);
}

.select-box ol li {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background: var(--bg-color1);
    color: var(--text-color);
}

.select-box ol li:hover {
    background: var(--bg-color);
}

.select-box ol li .country-name {
    margin-left: 0.4rem;
}

.sms-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    cursor: pointer;
    text-transform: capitalize;
    position: absolute;
    right: 5px;
    bottom: 10px;
    padding: 0px 10px;
    min-width: 90px;
    height: 30px;
    font-size: 12px;
    background: var(--main-color);
    border-radius: 5px;
    color: rgb(255, 255, 255);
}

.terms-tip {
    cursor: pointer;
    color: var(--main-color);
    text-decoration: underline;
}

.otp-field {
    display: flex;
    padding: 10px 0px;
    justify-content: space-between;
}

.otp-field input {
    width: 55px;
    font-size: 32px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid var(--main-color);
    background: var(--bg-color);
    font-weight: bold;
    color: var(--text-color);
    outline: none;
    transition: 0.1s;
}

.otp-field input:focus {
    border: 2px solid var(--main-color);
    box-shadow: 0 0 2px 2px var(--main-color);
}

.congrats-form {
    text-align: center;
}

.congrats-form h5 {
    text-align: center;
    color: var(--text-color);
    font-weight: bold;
}

.congrats-form i {
    text-align: center;
    display: block;
    margin: 0px auto 10px;
    font-size: 130px;
    color: var(--main-color);
}

.side-menu .modal-dialog {
    margin-left: 0px !important;
    margin-top: 0px !important;
}

.modal.left.fade .modal-dialog {
    left: -320px;
    transition: 0.3s;
}

.modal.left.fade.in .modal-dialog {
    left: 0px;
}

.modal.left .modal-dialog {
    /* position: fixed; */
    margin: auto;
    width: 250px;
    height: 100%;
    transform: translate3d(0%, 0px, 0px);
}

.modal.left .modal-content {
    height: 100%;
    background: var(--bg-color);
    backdrop-filter: blur(0.3rem);
    border-right: 1px solid var(--main-color);
    border-radius: 0px;
}

.modal.left.fade.show .modal-dialog {
    left: 0px;
}

.modal.left .modal-body {
    background: var(--bg-color);
    backdrop-filter: blur(0.3rem);
    border-right: 1px solid var(--main-color);
    border-radius: 0px;
}

.side-menu-wrap {
    position: relative;
    overflow: auto;
}

.side-menu-close {
    position: absolute;
    left: 10px;
    top: 10px;
}

.side-menu-close i {
    color: var(--text-gray);
    font-size: 30px;
    cursor: pointer;
}

.side-member {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 60px 15px 25px;
}
.side-login-btn{
    
color: var(--text-color3);
}
.side-divider {
    width: 85%;
    height: 2px;
    border: 1px solid var(--text-gray);
    display: inline-block;
    margin: 0px 15px 15px;
}

.side-menu-box {
    display: grid;
    grid-template-columns: 10% 90%;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    margin-bottom: 25px;
    color: var(--text-color3);
    font-size: 15px;
}

.side-menu-box i {
    color: var(--text-color3);
}

.side-menu-box.active, .side-menu-box.active i {
    color: var(--text-color3);
}

.side-lang-btn .accordion-item, .side-lang-btn .accordion-item .accordion-button {
    background: transparent;
    font-size: 15px;
    color: var(--text-color3);
}

.side-lang-btn .accordion-button img, .lang-list img {
    max-width: 30px;
}

.side-lang-btn .accordion-button {
    display: flex;
    gap: 10px;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.lang-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    color: var(--text-color);
}

.home-title.prod {
    padding-top: 50px;
}

.prod-tab .nav {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.prod-tab .nav-pills .nav-link {
    background: rgb(243, 246, 251);
    box-shadow: var(--box-shadow1);
    border: 1px solid rgb(255, 255, 255);
}

.prod-tab .nav-pills .nav-link img {
    max-width: 120px;
}

.prod-tab .nav-pills .nav-link.active, .prod-tab .nav-pills .show > .nav-link {
    background: var(--main-color);
}

.game-tab .nav {
    align-items: center;
}

.game-tab .nav-pills .nav-link {
    color: var(--text-color);
    border-radius: 20px;
}

.game-tab .nav-pills .nav-link.active, .game-tab .nav-pills .show > .nav-link {
    background: var(--main-color);
    color: rgb(255, 255, 255);
}

.search-game.prod {
    padding-top: 0px;
}

.prod-search-input {
    border: 1px solid var(--text-gray);
    width: 100%;
    height: 44px;
    padding: 0px 20px 0px 50px;
    transition: 0.2s;
    border-radius: 30px;
    background: var(--bg-color1);
    color: var(--text-gray);
}

.mix {
    display: none;
}

.filter-menu-bar {
    margin: 20px 0px;
    background-color: transparent;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    gap: 10px;
    align-self: center;
}

.pmbox {
    background: var(--bg-color1);
    box-shadow: var(--box-shadow1);
    border: 1px solid var(--text-color1);
    color: var(--text-gray);
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
    border-radius: 10px;
}

.pmbox.active {
    color: var(--text-color1);
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.promo-container .active-promo-img, .promo-container .active-promo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.promo-container .active-promo-img img {
    border-radius: 26px 26px 0px 0px;
    width: 100%;
}

.promo-container .active-promo-info {
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: 60px;
    padding: 0px 20px;
}

.promo-container .active-promo-left {
    flex: 1 1 0%;
    width: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

.promo-container .info-content, .promo-container .info-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.5;
    width: 100%;
}

.promo-container .info-title {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.promo-container {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 30px;
}

.pm-boxer {
    display: block;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    max-width: 100%;
    height: auto;
    align-content: center;
    margin: 10px;
    color: var(--text-color);
    border-radius: 26px;
    box-shadow: var(--box-shadow1);
    background: var(--bg-color1);
}

.pm-boxer_inner {
    display: grid;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-top: 10px;
}

.pm-boxer_inner_sec {
    display: flex;
    align-items: flex-end;
}

.promo-modal .modal-content {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    border: transparent;
}

.promo-modal .btn-close {
    position: absolute;
    top: -25px;
    right: -35px;
    background: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    padding: 8px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    transition: 0.2s;
}

.promo-modal .btn-close:hover {
    transform: rotate(90deg);
}

.promo-modal .modal-header {
    background: var(--main-color);
    color: rgb(255, 255, 255);
}

table.promo-table {
    margin-bottom: 10px;
    font-size: 15px;
}

table.promo-table tr th {
    background: var(--main-color);
    padding: 8px;
    border: 1px solid var(--main-color);
    font-size: 13px;
    text-align: center;
    color: #fff;
}

table.promo-table tr td {
    border: 1px solid var(--main-color);
    font-size: 12px;
    text-align: center;
    padding: 7px;
}

.info-bg {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    background: var(--bg-color3);
    box-shadow: var(--box-shadow1);
    padding: 25px;
    margin: 20px 0px 30px;
}

.info-menu {
    display: flex;
    gap: 10px;
}

.info-menu a {
    background: var(--bg-color1);
    box-shadow: var(--box-shadow1);
    border: 1px solid var(--text-color1);
    color: var(--text-gray);
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
    border-radius: 10px;
    align-content: center;
}

.info-menu a.active, .info-menu a:hover {
    color: var(--text-color1);
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.info-title {
    font-size: 28px;
    color: var(--main-color);
    font-weight: bold;
    padding-bottom: 10px;
}

.info-wrapper h5 {
    color: var(--main-color);
}

.info-wrapper h6 {
    color: var(--main-color);
}

.info-wrapper tr td {
    color: var(--text-color);
    border: 1px solid var(--text-gray);
    padding: 8px;
}
.info-wrapper tr td.bank_spec{
    
padding: 0;
    
color: #fff;
}
.bnk-td {
    background: var(--main-color);
    padding: 6px;
}

.tnc-card {
    margin-bottom: 5px;
}

button.btn-tnc {
    background: var(--main-color);
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: var(--text-color1);
    border: none;
    border-radius: 5px;
    position: relative;
}

button.btn-tnc.collapsed {
    background: var(--main-color);
    color: var(--text-color1);
}

.tnc-body {
    background: var(--bg-color);
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
    color: var(--text-color3);
}

.contact-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.contact-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-wrap-in {
    position: absolute;
    margin-top: 37px;
    color: var(--text-color1);
}

.contact-wrap-in p {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-wrap-in span {
    font-size: 18px;
}

.blog-item {
    padding: 15px 25px;
    border: 1px solid var(--text-gray);
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-date {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 15px;
}

.btm-mr {
    display: flex;
    justify-content: end;
    margin-top: 15px;
}

.btn-more {
    color: var(--text-color1);
    background: var(--main-color);
    border-radius: 5px;
    padding: 5px 10px;
    border: none;
}

.btn-back {
    background: rgb(255, 0, 0);
    border: none;
    color: var(--text-color1);
    border-radius: 5px;
    padding: 3px 20px;
}

.blog-content {
    padding: 20px 0px;
}

.blog-content table tr th {
    padding: 10px;
    text-align: center;
    border: 1px solid var(--text-gray);
}

.blog-content table tr td {
    padding: 10px;
    text-align: center;
    border: 1px solid var(--text-gray);
}

.blog-content h4 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--main-color);
}

.blog-content h5 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.al-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 0px 10px;
    color: var(--text-amout);
}

.al-profile {
    color: var(--text-color);
}

.al-profile img {
    max-width: 35px;
}

.al-name {
    color: var(--text-color);
    padding: 10px;
    text-align: center;
}

.al-name img {
    max-width: 30px;
}

.al-hdr-vip {
    display: flex;
    gap: 5px;
    align-items: center;
}

.al-hdr-vip img {
    max-width: 25px;
}

.al-balance {
    cursor: pointer;
}

.dropdown-menu.al-hdr-list {
    background: var(--bg-color1);
    font-size: 13px;
}

ul.al-hdr-list a {
    padding: 10px 15px;
    display: grid;
    grid-template-columns: 10% 90%;
    gap: 10px;
    align-items: center;
    color: var(--text-color);
}

.al-hdr-inbox {
    display: flex;
    gap: 5px;
}

.hdr-inbox-num {
    border-radius: 50px;
    text-align: center;
    background: rgb(255, 0, 0);
    animation: 1.5s ease-in-out 0s infinite normal both running heartbeat;
    color: rgb(255, 255, 255);
    height: 15px;
    width: 15px;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        transform-origin: center center;
        animation-timing-function: ease-out;
    }

    10% {
        transform: scale(0.91);
        animation-timing-function: ease-in;
    }

    17% {
        transform: scale(0.98);
        animation-timing-function: ease-out;
    }

    33% {
        transform: scale(0.87);
        animation-timing-function: ease-in;
    }

    45% {
        transform: scale(1);
        animation-timing-function: ease-out;
    }
}

.balance-modal .modal-content {
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    border: transparent;
}

.balance-modal .btn-close {
    position: absolute;
    top: -25px;
    right: -35px;
    background: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    padding: 8px;
    color: rgb(255, 255, 255);
    font-size: 15px;
    transition: 0.2s;
}

.balance-modal .btn-close:hover {
    transform: rotate(90deg);
}

.balance-modal .modal-header {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    display: block;
}

.balance-modal .modal-body {
    padding: 0px;
}

.btn-bln-all {
    display: flex;
    justify-content: space-between;
    color: rgb(255, 255, 255);
    align-items: center;
    border-radius: 10px 10px 0px 0px;
}

.btn-amt {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

button.btnall {
    padding: 5px 20px;
    border-radius: 10px;
    background: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
}

.bln-all {
    padding: 10px;
}

.bln-all ul {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    max-height: 460px;
    margin: 0px;
    padding: 0px 10px;
}

.bln-all ul li {
    margin: 3px 0px;
    border-radius: 5px;
    padding: 5px 15px;
    cursor: pointer;
    list-style: none;
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.bln-in {
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blc-amt {
    display: flex;
    gap: 20px;
}

.btn-out {
    border: none;
    border-radius: 5px;
    background: rgb(72, 221, 48);
    color: rgb(255, 255, 255);
    min-width: 45px;
}

.blc-inout {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-in {
    background: rgb(255, 0, 0);
    border: none;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    min-width: 45px;
    padding: 5px;
}

.acc-card {
    border-radius: 15px;
    background: var(--bg-color3);
    margin: auto;
    box-shadow: var(--box-shadow1);
    max-width: 991px;
}

.acc-header {
    background: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 15px 15px 0px 0px;
    color: rgb(255, 255, 255);
}

.acc-dropdown button {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
}

.acc-dropdown button.dropdown-toggle::after {
    display: none;
}

.acc-dropdown .dropdown-item {
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.acc-body {
    padding: 20px;
}

.acc-title {
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 4%;
}

.acc-wrap {
    display: grid;
    grid-template-columns: 60% 40%;
}

.wallet-info {
    background: var(--bg-color5);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-left: 30px;
    align-self: flex-start;
    position: sticky;
    top: 14%;
}

.wallet-bal {
    font-weight: 600;
    font-size: 20px;
}

.wallet-amt {
    font-size: 25px;
    font-weight: bold;
    color: var(--main-color);
}

.tokens {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.token {
    background: var(--main-color);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px;
    color: var(--text-color1);
    font-weight: 500;
    cursor: pointer;
}

.token:hover {
    filter: brightness(1.1);
}

.wallet-trans {
    background: var(--btn-2);
    border: 2px solid var(--main-color);
    border-radius: 10px;
    padding: 10px;
    color: var(--main-color);
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

.wallet-trans:hover {
    filter: brightness(1.1);
}

.acc-content .nav {
    gap: 5px;
}

.acc-content .nav-pills .nav-link {
    border-radius: 20px;
    color: var(--text-color);
    background: var(--bg-color5);
    padding: 10px 20px;
}

.acc-content .nav-pills .nav-link.active, .acc-content .nav-pills .show > .nav-link {
    background: var(--main-color);
    color: rgb(255, 255, 255);
}

.dep-tab-content {
    padding: 20px 0px;
}

.table-share tr th {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid rgb(99, 99, 99);
}

.table-share tr td {
    padding: 5px;
    border: 1px solid rgb(141 141 141);
    text-align: center;
}

.bank_display {
    width: 82px;
    border-radius: 5px;
    margin-right: 10px;
}

.dep-form {
    margin-bottom: 30px;
    position: relative;
}

.dep-form label {
    font-weight: 600;
}

.dep-form-note {
    color: rgb(255, 0, 0);
    font-style: italic;
    font-size: 12px;
    padding-top: 5px;
}

.bank-amt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 5px;
}

.bank-amt-grid button {
    width: 100%;
    color: rgb(255, 255, 255);
    background: var(--main-color);
    border-radius: 5px;
    padding: 10px;
    border: none;
    font-size: 13px;
    font-weight: 700;
}

.bank-amt-grid button:hover {
    filter: brightness(1.1);
}

.form_bonus_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
}

.text_bonus_amt_top {
    color: var(--main-color);
    font-weight: 500;
}

.text_bonus_amt {
    font-size: 15px;
    font-weight: 700;
}

.dep-submit-btn {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    text-align: center;
}

.dep-submit-btn:hover {
    filter: brightness(1.1);
}

.amt-qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-area {
    border: 1px solid var(--text-gray);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.qr-ttl {
    font-weight: bold;
}

.qr-img {
    margin: 10px 0px;
}

.qr-img img {
    height: 130px;
}

.qr-nm {
    color: var(--main-color);
    font-size: 12px;
}

.qr-info {
    font-size: 12px;
    width: 50%;
}

.atten {
    border: 1px solid var(--text-gray);
    border-radius: 5px;
    padding: 10px;
}

.atten img {
    height: 20px;
}

.dep-copy-btn {
    position: absolute;
    top: 36px;
    right: 10px;
    cursor: pointer;
}

.form-max {
    position: relative;
}

button.btn-max {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
    background: rgb(255, 0, 0);
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.done-content {
    margin: auto;
}

.done-content i {
    text-align: center;
    display: block;
    margin: 0px auto 10px;
    font-size: 130px;
    color: var(--main-color);
}

.done-content h4 {
    text-align: center;
    color: var(--text-color);
    font-weight: bold;
}

.done-content p {
    text-align: center;
    font-size: 12px;
}

.done-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.done-btn {
    background: var(--main-color);
    border-radius: 10px;
    padding: 10px;
    color: var(--text-color1);
    font-weight: 500;
    cursor: pointer;
}

.done-btn:hover {
    filter: brightness(1.1);
}

.point-wrp {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.btn-token {
    background: var(--main-color);
    min-width: 150px;
    padding: 10px;
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    border-radius: 8px;
    align-items: center;
    font-size: 17px;
    color: rgb(255, 255, 255);
}

span.img-point img {
    height: 30px;
}

.add_bank_with_wrap {
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 112px;
    background: var(--bg-color3);
    border-radius: 0.75rem;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: 1px solid var(--main-color);
}

.add_bank_with_wrap:hover {
    color: var(--text-gray);
}

.add_bank_with_wrap i {
    font-size: 24px;
    margin-bottom: 10px;
}

.add_bank_with_wrap p {
    margin-bottom: 0px;
}

.btn-tre {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.btn-max-t {
    color: rgb(255, 255, 255);
    background: rgb(255, 0, 0);
    border: none;
    border-radius: 5px;
    font-size: 12px;
}

.his-date {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    gap: 15px;
}

.pending-content .accordion {
    --bs-accordion-bg: none;
}

.pending-content .accordion-item {
    margin-bottom: 10px;
    border: 2px solid var(--main-color);
    border-radius: 10px;
}

.pending-content .accordion-header button.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color1);
    color: var(--text-color);
    border-radius: 10px;
}

.pending-content .accordion-button::after {
    content: none;
}

.pending-content .accordion-body {
    /* background: var(--bg-color); */
    border-radius: 0px 0px 10px 10px;
}

.pending-content .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-radius: 10px 10px 0px 0px;
}

.pending-content .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.pending-info span {
    display: block;
    line-height: 1.5;
}

.pending-status {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 10px;
}

.pending-status.fail {
    background: rgb(255, 0, 0);
}

.pending-table table {
    /* background: var(--bg-color); */
    font-size: 13px;
}

.pending-table thead tr {
    background: var(--main-color);
}

.pending-table tbody tr td:first-child {
    font-weight: bold;
}

.ref-qr {
    display: block;
    text-align: center;
    margin: 0px auto;
}

.btn-df {
    border: none;
    background: var(--main-color);
    color: rgb(255, 255, 255);
    border-radius: 5px;
}

.btn-rm {
    border: none;
    background: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    border-radius: 5px;
}

.custom-label {
    position: relative;
    width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
    margin: 0px;
    z-index: 1;
}

.custom-input, .custom-checkbox {
    position: absolute;
    width: inherit;
    height: inherit;
    border: 0.5px solid rgb(136, 140, 149);
    border-radius: 3px;
}

.custom-input {
    display: none;
}

.custom-checkbox {
    display: grid;
    place-items: center;
    cursor: pointer;
}

.firstbox {
    border-width: 1.5px;
}

.custom-checkbox::after {
    content: "✔";
    position: absolute;
    font-size: 0.6rem;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.25s, opacity 0.5s;
}

.custom-input:checked ~ .custom-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

.msg-tab-content {
    padding: 20px 0px;
}

.inbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--text-gray);
    padding: 10px 15px 10px 12px;
}

.inbox-row:hover {
    background: var(--bg-color);
}

.msg-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 0px 20px;
}

.inbox-detail {
    width: 75%;
}

.inbox-detail h5 {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
}

.inbox-detail p {
    font-size: 14px;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0px;
}

.inbox-pagination ul {
    justify-content: center;
    padding-top: 15px;
}

.inbox-pagination .page-link {
    background: var(--bg-color1);
    color: var(--text-color);
}

.inbox-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid var(--text-gray);
}

.inbox-back-btn {
    padding-bottom: 10px;
    display: block;
}

.inbox-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    padding-bottom: 5px;
}

.inbox-date {
    font-size: 14px;
    color: var(--text-gray);
}

.inbox-top-right i {
    font-size: 16px;
    cursor: pointer;
}

.inbox-content {
    padding: 20px 0px;
}

.inbox-back-btn:hover, .inbox-top-right i:hover {
    color: var(--main-color);
}

.inbox-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.inbox-text {
    background: var(--text-gray);
    margin: 0px 15px;
    border-radius: 10px;
    padding: 15px;
}

.wrapper {
    margin: 0px auto;
}

.chatMsg {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 80px);
    margin-bottom: 30px;
}

.chatMsg ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.chatMsg ul li {
    position: relative;
    margin-bottom: 15px;
}

.msg, .msg-reply {
    display: block;
    position: relative;
    color: rgb(0, 0, 0);
    border-radius: 5px;
}

.msg::before, .msg-reply::before {
    position: absolute;
    left: -8px;
    top: 0px;
    content: "";
    display: block;
    border-bottom: 15px solid transparent;
}

.msg-date2 {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0px auto;
    color: var(--text-color);
    font-weight: 100;
}

.msg-reply {
    margin-left: inherit;
    background: var(--main-color);
    color: rgb(255, 255, 255);
    padding: 10px;
    font-size: 13px;
}

.msg-reply::before {
    left: inherit;
    right: -9px;
    border-right: inherit;
}

.avatar, .avatar-reply {
    position: absolute;
    left: 0px;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 30px;
}

.avatar img, .avatar-reply img {
    max-width: 30px;
}

.avatar-reply {
    left: inherit;
    right: 0px;
}

.chatBox {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.chatBox .mdi-attachment {
    position: absolute;
    z-index: 2;
    left: 10px;
    font-size: 20px;
    bottom: 15px;
    color: rgb(77, 97, 166);
    cursor: pointer;
}

.chatBox .mdi-send {
    width: 32px;
    height: 32px;
    line-height: 32px;
    position: absolute;
    z-index: 2;
    bottom: 8px;
    right: 10px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background: var(--main-color);
    text-align: center;
    cursor: pointer;
    border-radius: 32px;
}

.chatBox .mdi-send.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.chatBox textarea {
    display: block;
    resize: none;
    width: 100%;
    border-width: 1px 0px 0px;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-top-style: solid;
    border-top-color: rgb(204, 204, 204);
    background: rgb(255, 255, 255);
    padding: 12px 50px 12px 40px;
    position: absolute;
    bottom: 0px;
    min-height: 45px;
    overflow: hidden;
    color: rgb(0, 0, 0);
}

.hiddendiv {
    display: none;
}

.chatBox textarea:focus {
    outline: none;
}

.msg-date {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.msg-content {
    line-height: 18px;
    margin-top: 0px;
    font-size: 13px;
    background: rgb(203, 203, 203);
    padding: 10px;
    border-radius: 5px;
}

.mdi-send::before {
    content: "";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    right: 10px;
}

.acc-vip {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.acc-vip-title {
    font-size: 33px;
    color: var(--main-color);
    font-weight: bold;
    font-style: italic;
    width: 100%;
    margin: 0px;
}

.acc-vip-status {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
}

.vip-amt {
    color: rgb(255, 0, 0);
}

.acc-vip .progress-bar {
    background-color: var(--main-color);
}

.acc-vip .progress {
    height: 10px;
}

.acc-detail {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.acc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.acc-row-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

button.acc-pass-btn {
    background-color: var(--main-color);
    border-radius: 8px;
    color: rgb(255, 255, 255);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    border: none;
}

.downloadbody {
    text-align: center;
    display: flex;
    justify-content: center;
}

.downloadbox {
    text-align: center;
    margin: 0px 5px;
    display: inline-block;
}

.ndl-btn {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: 10px auto auto;
    width: 78%;
}

.ndl-btn:hover, .ndl-btn:focus {
    color: rgb(255, 255, 255);
    background: var(--main-color);
}

.adl-btn {
    background: var(--main-color);
    color: rgb(255, 255, 255);
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: 10px auto auto;
    width: 78%;
}

.adl-btn:hover, .adl-btn:focus {
    color: rgb(255, 255, 255);
    background: var(--main-color);
}

.dl {
    max-width: 500px;
    margin: 10px auto auto;
}

.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

.dl table th {
    border: 1px solid var(--text-gray);
    text-align: center;
    padding: 8px;
    background: var(--main-color);
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 500;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background-color: var(--bg-color);
    border: 1px solid var(--text-gray);
    color: var(--text-color);
}

.dl .username_custom {
    color: var(--main-color);
    font-weight: bold;
}

.web-show {
    display: block;
}

.mobile-show {
    display: none;
}

.more-dropdown {
    position: relative;
  }
  
  .more-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  
  .more-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 1%;
    background: var(--main-color2);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 99;
    border-radius: 4px;
    padding: 10px 0;
  }
  
  .more-content a {
    color: var(--text-head);
    padding: 8px 14px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
  }
  
  .more-content a:hover {
    color: #fff;
    background: var(--main-color2);
  }
  
  .more-content.show {
    display: block;
  }
  .header-wrap {
    position: relative; /* Add this */
  }


.daily-bg {
    position: relative;
}
.bg-daily img {
    display: block;
    margin: 0px auto;
}

.daily-bg ul {
    position: absolute;
    bottom: 55px;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0px auto;
    list-style: none;
    padding: 0;
}

.daily-bg ul li a {
    position: relative;
    display: block;
}
.daily-bg ul li a.claimed .daily-content {
    display: none;
}
.daily-content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.daily-bg ul li a img {
    filter: grayscale(0.8);
}
.daily-bg ul li a.claimed img {
    filter: none;
}
.daily-bg ul li a.active img {
    filter: none;
}

.modal-congrat h5 {
    color: #fde403;
    font-size: 38px;
    color: var(--text-color);
    font-weight: bold;
    text-align: center;
}

.congrat-text {
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.image-wrap img {
    display: block;
    margin: 0px auto;
    position: relative;
}

.color-text1 {
    color: #fde403;
    font-weight: bold;
    color: var(--text-color);
}

.color-text2 {
    color: #edb543;
    font-weight: bold;
}

.img-wrap-top {
    position: absolute !important;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

img.img-wrap {
    height: 80%;
    margin-top: 20px;
}

.tokenredeem {
    display: block;
    margin: 0px auto;
    margin-top: 35px;
    background: #ed1d49;
    border: none;
    z-index: 10;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.token-pt {
    z-index: 10;
}

.image-wrap {
    height: 250px;
    position: relative;
}

.daily-wrap-in {
    background: #232323;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px var(--main-color);
}

.daily_modal .close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: #fff;
    opacity: 1;
    font-size: 47px;
    z-index: 2;
    background-color: transparent;
    border: 0;
}

.daily_modal .modal-body {
    background: none;
}

.daily_modal .modal-content {
    background: none;
    border: none;
}


.mission-bg ul {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.mission-bg ul li a {
    display: block;
    position: relative;
}
.mission-bg ul li a img{
    width: 100%;
}

.ms-wrap {
    position: absolute;
    top: 0px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.ms-ttl {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
}

.ms-amt {
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 10px;
}

.ms-btn {
    position: absolute;
    bottom: -5px;
    margin: auto;
    left: 0;
    right: 0;
}

.mission_modal .modal-content {
    background: #232323;
    color: var(--text-color3);
}

.mission_modal .modal-dialog {
    max-width: 800px;
}

.mission_modal .close {
    position: absolute;
    right: 0px;
    color: #fff;
}

.mission_modal ul, .mission_modal ol {
    padding-left: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #787878;
    font-size: 12px;
}

.mission_modal ul li {
    list-style: circle;
    margin-bottom: 15px;
}

.mission_modal ol li {
    list-style: auto;
    margin-bottom: 10px;
}

.mission_modal .modal-body {
    padding: 20px 30px;
    background: var(--bg-color4);
    border: 2px solid var(--main-color);
}

.mission_modal h4 {
    border-bottom: 1px solid #fff;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.mission_modal table tr td {
}

.mission_modal table tr td, .mission_modal table tr th {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #000;
}

.mission_modal .close {
    color: #c50a0a;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
    border: 0;
}

.clm-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.clm-btn button {
    background: #fde403;
    border-radius: 10px;
    font-size: 12px;
    padding: 10px 14px;
    color: #ffffff;
    font-weight: 600;
    border: none;
    margin: 0 5px;
    background: var(--btn-3);
    border: 2px solid #ae2522;
}

.play2earn {
    padding: 40px;
}

.play2earn-wrapper {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}

.p2e-ttl-1 {
    background: #1b1b1b;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}

.p2e-info-content {
    padding: 10px;
    border-top: none;
    padding-bottom: 0;
    border: 2px solid var(--border-color);
    background: var(--bg-color3);
}

.p2e-amount {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}

.p2e-amount-box {
    width: 100%;
    background: #494949;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.progress-bar {
    width: 100%;
    background-color: #494949;
    border-radius: 25px;
    margin: 10px 0;
}

.progress-bar-fill {
    height: 20px;
    background: linear-gradient(to bottom, rgb(255, 0, 0) 0%, rgba(109,6,16,1) 99%);
    transition: width 0.5s;
    border-radius: 25px;
}

.p2e-btn-group {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.p2e-btn-group a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    text-align: center;
    width: 40%;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px;
    background: var(--btn-3);
}

.p2e-btn-group a:hover {
    background: rgba(109,6,16,1);
    color: #fff!important;
}

.btn-p2e {
    color: #fff6f7;
    font-weight: bold;
}

.sel-form {
    margin-bottom: 10px;
}

.sel-form select {
}

.pse-bnr {
    margin-bottom: 15px;
}
.dataTables_wrapper {
    color: #c50a0a;
}

table.dataTable.compact thead th, table.dataTable.compact thead td {
    background: #7a7a7a;
    color: #fff;
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

.dataTables_length label {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    max-width: 30%;
    color: #c50a0a;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
    border: 1px solid #7a7a7a;
    text-align: center;
    color: #c50a0a;
}

.dataTables_paginate {
    display: flex;
    gap: 10px;
}

.p2e .a.paginate_button {
    color: #000;
    display: block;
}

.p2e a.paginate_button.current {
    color: #fff;
}

.p2e .btn-apply {
    background: linear-gradient(to bottom, rgba(84,63,22,1) 0%,rgba(173,132,57,1) 99%);
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 6px 20px;
}

.dataTables_length label select {
    background: #7a7a7a;
    border: none;
    padding: 8px;
    border-radius: 5px;
    color: #fff;
}

.dataTables_scroll {
    margin-top: 25px;
}

.p2e-table {
    max-width: 1000px !important;
}

.btn-apply {
    font-weight: bold;
    background: var(--btn-3);
    border: 2px solid var(--main-color);
    color: var(--text-color1);
}

.history-play-to-earn {
    margin: 10px 0px;
}

.btn-apply:hover {
    color: #fff;
    background: rgba(109,6,16,1);
}
.vip_modal .close {
    color: #c50a0a;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
    border: 0;
}
.vip_modal .modal-content{
    background: var(--bg-color4);
    border: 2px solid var(--main-color);
}


.wheel_product .wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    height: 880px;
    margin-bottom: -120px;
}

.wheel-wrap .wheel_product_bg {
    width: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    top: auto;
    right: 23.5%;
    bottom: 29%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_frame {
    width: 55.5%;
    position: absolute;
    bottom: 5%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0px auto;
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
}

.wheel-wrap .wheel_product_zeus {
    width: 38%;
    position: absolute;
    left: -0%;
    bottom: 25%;
    z-index: 2;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg)
    }

    80% {
        transform: rotate(1turn)
    }

    to {
        transform: rotate(1turn)
    }
}

.wheel-wrap .wheel_product_arrow {
    width: 9%;
    position: absolute;
    bottom: 45%;
    z-index: 6;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.wheel-wrap .lightning {
    position: absolute;
    width: 28%;
    height: 50%;
    right: 1.3%;
    bottom: 25%;
    mix-blend-mode: lighten;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    right: 23.5%;
    bottom: 32%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.wheel_product.wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 600px;
    margin-bottom: 40px;
    z-index: -1;
}

.slider_title.wheel-ttl {
    color: #e2e7f3;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.wheel-all ul {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
    gap: 20px;
    font-weight: bold;
    list-style: none;
    padding: 0;
}

span.yell-text {
    color: #ffffff;
    font-weight: bold;
}

.whl-btn {
    background: #ae2522;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    gap: 5px;
    color: #fff;
    border: 2px solid #ae2522;
}

a.btn-spin {
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    color: #ffffff;
    border: 2px solid #ae2522;
    background: linear-gradient(180deg, rgba(179, 23, 30, 1) 0%, rgba(109, 6, 16, 1) 100%);
}

.wheel-all .btn-more {
    background: linear-gradient(180deg, rgba(179, 23, 30, 1) 0%, rgba(109, 6, 16, 1) 100%);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    font-size: 15px;
    color: #ffffff;
    border: 2px solid #ae2522;
}

.wheel-bg {
    display: block;
    max-width: 1000px;
    margin: auto;
}

/*Redemption*/
.red-bg{background: #212121 url(../images/reward-redemption/rr-bg.png) no-repeat center top;}



.redemp-title {
    padding-bottom: 15px;
}
.redemption-wrapper {
    text-align: center;
    /* max-width: 1000px; */
    margin: 0 auto;
    /* margin-bottom: 55px; */
    margin-top: 45px;
    display: flex;
    padding-bottom: 55px;
}
.redemp-box {
    position: relative;
    margin: 15px 2px 35px;
    display: inline-block;
    text-transform: uppercase;
}
.redemp-box{
    background: url( "../images/reward-redemption/bg-reward.png")no-repeat;
    background-size: 100%;
    width: 312px;
    height: 226px;
    margin: 0 auto;
    padding: 13px 25px;
    position: relative;
}
.redemp-inner {
    position: relative;
    top: -40px;
}
.prize-credit {
    padding-bottom: 15px;
}
.point-text {
    line-height: 8px;
    color: #c498ff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000;
}
.require-text {
    font-size: 14px;
    font-weight: 100;
    padding: 9px 0;
    color: #fff;
}
.claim-btn-wrap {
    margin-top: -30px;
}
.point-text.top {
    margin-top: -15px;
}
.prize-item {
    margin-top: -40px;
}
.prize-sub {
    font-size: 11px;
    font-weight: 600;
}
.require-text.top {
    min-height: 78px;
}

.bg-daily img {
    display: block;
    margin: 0px auto;
}
.btn-bfr {
    position: absolute;
    bottom: 30%;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0px auto;
    list-style: none;
}
button.btn-dly {
    background: linear-gradient(135deg, #29D765, #FDFC47);
    color: #000;
    border: none;
    padding: 10px 30px;
    /* border: 1px solid #aa284a96; */
    box-shadow: 0px 0px 20px 8px #fde403, 0px 0px 20px 0px #7ff800;
    font-size: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-shadow: 0px 1px 0px white;
}

.max-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* top: -75px; */
}

.top-btn {
    display: flex;
    position: relative;
}

.top-btn-wrap {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pred-btn-point {
    display: flex;
    position: relative;
    align-items: center;
    font-weight: bold;
}
.subtitle-wrap {
    position: relative;
}

.sub-box.redemp {
    position: relative;
    top: 2px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 100;
    justify-content: center;
    margin-bottom: 20px;
}

.top-btn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.red-txt {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    right: -11px;
    color: #ffffff;
}

.pred-btn {
    background: none;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
    justify-content: center;
}

span.red-pnt {
    color: #edc983;
}
.pt-btn {
    font-size: 20px;
}

.red-txt-gd {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: #F5E489;
    background: linear-gradient(to bottom, #F5E489 0%, #D88127 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 20px;
    filter: drop-shadow(2px 2px 0px black);
}
.submit-btn {
    background: none;
    border: none;
    display: block;
    margin: 0px auto;
}


img.img-sh {
    position: absolute;
    z-index: 1;
    left: 0px;
}

img.img-sh2 {z-index: 2;}

.transc-l img {
    display: block;
    margin: 0px auto;
}

.btn-live {
    display: flex;
    align-items: center;
}

.text-trs {
    color: #fde403;
    font-size: 20px;
    line-height: 21px;
}

.fnt-wh {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}


.rep_modal .modal-dialog {
    background: none;
}

.rep_modal .modal-content {
    background: none;
    border: none;
}

.rep_modal .daily-wrap-in {
    box-shadow: none;
    border: none;
    background: url( "../images/reward-redemption/bg-reward.png")no-repeat center top;
    background-size: contain;
    min-width: 312px;
}

.rep_modal img.img-wrap {
    height: 85% !important;
    position: relative;
    top: -78px;
}

.modal-congrat {
    position: relative;
}

.rep_modal .modal-congrat h5 {
    position: absolute;
    top: 57%;
    left: 0;
    right: 0;
    margin: auto;
    color: #c498ff;
    font-size: 28px;
}

.rep_modal .congrat-text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 67px;
}

.rep_modal .color-text1 {
    color: #c498ff;
}

.rep_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
    background: transparent;
    border: none;
}

.reptnc_modal .modal-content {
    background: none;
    padding: 0px;
}

.reptnc_modal .modal_body_view {
    background: #070315;
    border: 1px solid #db9bfc;
    box-shadow: 0px 0px 19px 4px #6b12ae;
    padding: 10px 0px;
    border-radius: 10px;
}

.reptnc_modal .tnc-content ul, .reptnc_modal .tnc-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.reptnc_modal .tnc-content ul li {
    list-style: circle;
}
.reptnc_modal .tnc-content ol li {
    list-style: auto;
}
.reptnc_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
    border: 0;
    background: transparent;
}

.reptnc_modal .modal_body_view h5 {
    color: #db9bfc;
    text-align: center;
    font-weight: bold;
    margin: 0px;
    padding-top: 10px;
}

.reptnc_modal .tnc-content {
    color: #ffffff;
    border-top: 1px solid #db9bfc;
    padding-top: 13px;
    margin: 15px;
    font-size: 12px;
}
.rep_modal .claim-btn-wrap {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin: 0px auto;
    right: 0;
}

/* vip */
.wrapper_inner {
    overflow: hidden;
}
.vip-sec {
    padding: 40px 0;
}
.vip-1 img {
    position: absolute;
    background-size: contain;
    top: 20px;
    right: 45px;
    z-index: -1;
    height: 120px;
}

.vip-non {
    height: 250px;
}

.profile_vip_row.vip-non::after {
    content: none;
}

.lvl-lv ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-transform: uppercase;
    color: #c9d1df;
    font-weight: 500;
    list-style: none;
}

.vip-non .vip-process {
    width: 98%;
    display: flex;
    align-items: self-end;
    position: absolute;
    bottom: 17%;
    left: 0;
    right: 0;
    margin: auto;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.15);
}

.lvl-lv {
    width: 100%;
    margin-bottom: 11px;
}

h3.vip-ttl {
    font-weight: bold;
    font-size: 60px;
    background-image: linear-gradient(179.01deg, rgb(229, 240, 254) 8.85%, rgb(171, 182, 196) 85.43%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    line-height: inherit;
    font-style: italic;
    padding: 0px 14px;
}

.lvl-lv ul li {
    width: 20%;
    text-align: center;
}

.vip-process-bar::after {
    content: "";
    background: url("../images/vip/dot.png");
    height: 20px;
    width: 20px;
    position: absolute;
    right: -2px;
    bottom: -7px;
}

.table_vip_wrap {
    position: relative;
    font-size: 12px;
    background-color: #2d2e35;
    border-radius: 15px;
}

.table_vip_responsive tr:first-child,.table_vip_responsive tr:first-child th.headcol {
    height: 55px;
}

.table_vip_responsive tr td,.table_vip_responsive tr th {
    height: 47px;
}

.table_vip_responsive tr th.headcol {
    display: flex;
    align-items: center;
    margin-top: 0px;
    width: 100%;
    font-weight: 400;
    padding: 10px;
    line-height: 1.3;
    padding-left: 30px;
    border: none;
    color: #fff;
}

table.vip_table tr td {
    border-left: none;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.vip_tncbtn {
    background: transparent;
    width: auto;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: #ed474b;
    border: none;
    border-radius: 10px;
    position: relative;
    border: 1px solid #485463;
    font-weight: 700;
}

.vip_title_b {
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.vip_top_head {
    margin-top: 20px;
    padding: 7px 15px;
    padding: 15px;
}

.table_vip_outwrap {
    padding: 40px 50px;
    background-color: #292929;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

hr.table_hr {
    border-top: 1px solid #5f5f5f;
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 32%;
}

table.vip_table tr {
    padding: 0 10px;
}

table.vip_table tr td span {
    font-size: 15px;
}

.vip-ico img {
    height: 60px;
}

.border_table_cus {
    border-bottom: 1px solid #1d5778;
}

table.vip_table tr.hr_cus_wrap {
    position: relative;
}

.vip_table_head {
    border-radius: 10px;
    background-color: #37393f;
}

table.vip_table {
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

table.vip_table tr.vip_colbackground_cus th,table.vip_table tr.vip_colbackground_cus td {
    background-color: #282930;
}

.head_img {
    margin-right: 7px;
    height: 25px;
}

.table_vip_responsive tr th.headcol.headcol_sub {
    font-weight: 900;
    color: #fff;
    font-size: 13px;
}

.vip_tncbtn {
    background: transparent;
    width: auto;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: #dc3545;
    border: none;
    border-radius: 10px;
    position: relative;
    border: 1px solid #485463;
    font-weight: 700;
}

.promo-ttl {
    background: linear-gradient(90deg, #292929 0%, #2c2e34 100%);
    border-radius: 15px 15px 0px 0px;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
}

.vip-wrap ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0px;
    list-style: none;
    padding: 0;
}

.vip-wrap ul {
}

.vip-lvl {
    display: block;
    margin: auto;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0px 0px 6px #dc3545;
    background: #23262b;
    padding: 8px 50px;
    color: #fff;
}

.vip-txt {
    color: #dc3545;
}

.table_vip_responsive {
    /* overflow-x: scroll; */
    overflow-y: visible;
    padding: 0;
}

.account-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.vip-process-bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    border-radius: 2px;
    background: #0ce5b0;
}

.vip_modal .modal-content {
    /* background: #232323; */
    background: var(--bg-color4);
    color: var(--text-color3);
}

ul.vip-tnc {
    padding-left: 20px;
}

ul.vip-tnc li {
    list-style: circle;
    font-size: 14px;
    margin-bottom: 10px;
}

.vip_modal .modal-dialog {
    max-width: 700px;
}

.vip_modal .close {
    color: #c50a0a;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}

.vip_modal h4 {
    border-bottom: 1px solid #fff;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.profile_vip_row {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    z-index: 0;
    background: linear-gradient(294.54deg, rgba(109,6,16,1) 10.77%, rgb(137 137 137) 108.33%);
    padding: 5px 12px;
    min-height: 85px;
}

/* referral */
.recom_menu_box {
    align-items: center;
    background: #151c26;
    border-radius: 14px;
    display: flex;
    width: 100%;
    padding: 15px;
    grid-gap: 15px;
}

.recom_menu_a {
    display: block;
    padding: 5px;
    border-radius: 5px;
    min-width: 78px;
    text-align: center;
    background-color: transparent;
}

.recom_menu_a.active,.recom_menu_a:hover {
    background-color: #1a55ef;
}

.recom_menu_box_txt {
    font-weight: 600;
    text-transform: uppercase;
}

.bonus_box {
    background: #292929;
    border-radius: 0.75rem;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    margin: 10px auto;
    min-height: 260px;
    padding: 0;
    position: relative;
    width: 100%;
}

.bonus_box_custom {
    grid-template-columns: 275px 1fr;
}

.bonus_left_box {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 0.75rem;
    float: left;
    margin: 10px;
    min-height: 250px;
    position: relative;
}

.copy_overview_inner {
    padding: 10px;
}

.copy_title {
    color: #ae2522;
    font-size: 24px;
    min-height: 68px;
    padding: 10px 10px 0;
    font-weight: 700;
}

.copy_value_title {
    color: #fff;
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.copy_value {
    align-items: center;
    border-radius: 0.25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    height: 34px;
    justify-content: space-between;
    letter-spacing: -.02em;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 0 0 0 0px;
    text-align: left;
}

.copybtn {
    background-color: #ae2522;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    font-size: 15px;
    border-radius: 4px;
    color: #ffffff;
}

.copy_value input {
    height: 34px;
    background-color: #3b3b3b;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
}

.bonus_right_box_top {
    background: #393939;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    min-height: 108px;
    padding: 10px 16px;
    border-radius: 0.75rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bonus_data_block {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.bonus_data_block h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 20px;
    margin-top: 18px;
    text-align: center;
}

.bonus_data_block span {
    line-height: 40px;
    font-weight: 600;
}

.bonus_right_box_bottom {
    background: linear-gradient(95deg,#393939,#101010);
    display: grid;
    justify-items: flex-start;
    margin-bottom: 10px;
    margin-top: 15px;
    min-height: 140px;
    position: relative;
    border-radius: 0.75rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    grid-template-columns: minmax(120px,240px) 90px 2fr;
    align-items: center;
    grid-gap: 30px;
}

.bonus_plan_title {
    align-items: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-style: italic;
    margin: 0 auto;
    padding-left: 30px;
    max-width: 240px;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
}

.bonus_plan_txt {
    min-width: 150px;
    display: flex;
    grid-column-end: auto;
    grid-column-start: auto;
    align-items: center;
    color: #ae2522;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    justify-content: left;
    padding-left: 20px;
    text-align: left;
    font-weight: 700;
    position: relative;
}

.trophy_m {
    display: none;
}

.bonus_plan_txt_tooltit,.bonus_plan_txt_tooltit2 {
    display: none;
    position: absolute;
    font-size: 10px;
    color: #fff;
    width: 260px;
    font-weight: 500;
    top: 33px;
    z-index: 999;
    background-color: #333333;
    padding: 5px;
    border-radius: 10px;
}

.bonus_ques,.bonus_ques2 {
    color: #ae2522;
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
}

.bonus_card_overview_title {
    margin: 0 auto;
    padding: 0;
}

.bonus_card_overview_title h2 {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 700;
}

.bonus_card_overview_inner {
    display: flex;
    color: #fff;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 98px;
    position: relative;
}

.bonus_card_item {
    align-items: center;
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 8px;
    display: flex;
    width: 32%;
}

.bonus_card_item_icon {
    margin: 0 10px;
    position: relative;
    width: 80px;
}

.bonus_card_item_div {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}

.bonus_card_item_title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}

.bonus_card_item_number {
    color: #ae2522;
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 0;
}

.bonus_card_item_people {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
}

.bonus_invite_box_title {
    color: #ae2522;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 700;
}

.bonus_content_box {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
}

.bonus_left_content_box {
    padding: 30px 0 30px 30px;
    width: 45%;
}

.bonus_left_title {
    color: #ae2522;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
}

.bonus_left_text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
}

.bonus_left_money {
    color: #ae2522;
    font-size: 16px;
    font-weight: 900;
}

.bonus_right_content_box {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
}

.bonus_right_content_box img {
    width: 270px;
    padding: 10px;
}

.bonus_invite_list {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 18px 18px 18px 18px;
    margin-top: 24px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 24px;
}

.bonus_table_title {
    color: #ae2522;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
}

.bonus_invite_list .bonus_table_ul {
    display: flex;
    flex-direction: column;
    padding: 0 36px;
}

.bonus_invite_list .bonus_table_ul .bonus_table_li {
    cursor: pointer;
    display: flex;
    width: 100%;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li {
    background: hsla(0,0%,100%,.7);
    border-radius: 8px;
    height: 32px;
    line-height: 32px;
    margin-bottom: 8px;
}

.bonus_table_text {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.bonus_table_invite_nav {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    min-height: 40px;
    text-align: center;
    width: 190px;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(3) {
    background: #f38380;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #e34744;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: #ae2522;
}

.bonus_box .bonus_card_overview {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bonus_card_overview_title h2 {
    color: #ae2522;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.questiontool_wrap {
    position: relative;
}

.bonus_bets_box {
    background-image: linear-gradient(95deg,#393939,#101010);
    border-radius: 8px;
    margin-top: 20px;
    min-height: 620px;
    padding-bottom: 20px;
    width: 100%;
}

.bonus_bets_top {
    display: flex;
    justify-content: space-around;
}

.bonus_bets_top_left {
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    padding-left: 35px;
    width: 49%;
}

.bonus_bets_bgc {
    background-color: hsla(0,0%,100%,.1);
    border-radius: 10px;
    padding: 20px 20px 25px 25px;
    font-weight: 600;
}

.bonus_bets_desc {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.bonus_bets_top_example {
    color: #fff;
    line-height: 26px;
    margin-top: 10px;
    padding-right: 12px;
    width: 100%;
    margin-bottom: 0;
}

.bonus_bets_top_example_title {
    font-size: 16px;
    margin-bottom: 0;
}

.bonus_bets_top_example_desc {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 0;
}

.bonus_bets_top_right {
    align-items: center;
    justify-content: center;
    position: relative;
    width: 49%;
    display: flex;
}

.bonus_card_overview_desc {
    color: #adb6c4;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px auto;
}

.bonus_bets_top_right img {
    width: 75%;
    padding: 10px;
}

.bonus_bets_bottom {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding: 20px;
    flex-wrap: nowrap;
}

.bonus_bets_bottom_box {
    background-color: rgb(41 41 41);
    border-radius: 15px 15px 15px 15px;
    box-sizing: border-box;
    padding: 20px
}

.bonus_bets_bottom_left {
    width: 48%;
}

.bonus_bets_bottom_right {
    width: 48%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bonus_bets_bottom_right h2 {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    height: 30px;
    justify-content: center;
}

.bonus_bets_number {
    position: relative;
    align-items: center;
    color: #ae2522;
    display: flex;
    font-size: 30px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    position: relative;
}

.bonus_bets_number_text {
    color: #adb6c4;
    font-weight: 600;
    height: 30px;
    text-align: center;
    margin-bottom: 0;
}

.bonus_ranking_overview {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    position: relative;
    width: 100%;
}

.bonus_ranking_inner {
    grid-column-gap: 10px;
    color: #fff;
    display: grid;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
}

.bonus_ranking_item {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 0.75rem;
    display: grid;
    min-height: 110px;
    padding: 10px;
}

.bonus_item_title {
    color: #fff;
    font-size: 22px;
    height: 42px;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

.bonus_ranking_data {
    background: linear-gradient(95deg,#393939,#101010);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    margin: 0 auto;
    min-height: 280px;
    width: 100%;
}

.bonus_ranking_level2 {
    padding-top: 80px;
}

.bonus_ranking_level1 {
    padding-top: 20px;
}

.bonus_ranking_level3 {
    padding-top: 80px;
}

.bonus_userinfo_body {
    display: grid;
    font-size: 10px;
    grid-template-rows: 30px 100px 20px 20px;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.bonus_userinfo_ranking_level {
    font-size: 12px;
    padding-top: 15px;
}

.bonus_ranking_level2 .bonus_userinfo_ranking_level {
    background: linear-gradient(180deg,#f39d42,#9ea8ba);
    -webkit-background-clip: text;
    color: transparent;
}

.bonus_userinfo_avatar_bg {
    border: 1px solid #f39d42;
    border-radius: 50%;
    display: block;
    height: 80px;
    margin: 10px auto;
    overflow: hidden;
    padding: 3px;
    position: relative;
    width: 80px;
}

.bonus_userinfo_body .bonus_userinfo_score,.bonus_userinfo_body .bonus_userinfo_username {
    align-items: center;
    color: #fff;
    display: block;
    justify-content: center;
    margin: 10px auto;
    text-align: center;
    transform: scale(.8);
    font-size: 16px;
}

.bonus_userinfo_body .bonus_userinfo_score {
    color: #fde403;
}

.bonus_ranking_lottery {
    grid-gap: 10px;
    display: grid;
    margin: 0 auto;
    min-height: 280px;
    padding: 0 8px;
    width: 100%;
}

.bonus_lottery_item {
    background: linear-gradient(95deg,#393939,#101010);
    border-radius: 0.25rem;
    color: #3f526e;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    font-size: 10px;
    grid-template-columns: minmax(60px,100px) 1fr 100px;
    margin: 0 auto;
    min-height: 50px;
    padding: 0 10px;
    position: relative;
    width: 100%;
}

.bonus_lottery_item div {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 12px 3px;
    text-align: center;
    font-size: 16px;
}

.bonus_username {
    color: #ffffff;
}

.bonus_yellow {
    color: #ae2522;
}

.bonus_footer_overview {
    background: #292929;
    border-radius: 15px;
    display: flex;
    margin-bottom: 30px;
    opacity: 1;
    padding: 15px 15px 15px 24px;
    flex-direction: row;
}

.bonus_footer_left {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 315px;
}

.bonus_footer_right {
    flex: 1 1;
    width: 100%;
    margin-left: 25px;
}

.bonus_footer_right .bonus_footer_right_content {
    background: linear-gradient(95deg,#393939,#101010);
    border-radius: 15px;
    height: 100%;
    opacity: 1;
    padding: 26px 23px 18px 29px;
    width: 100%;
}

.bonus_footer_right_content .bonus_footer_right_text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.bonus_footer_last_text {
    margin-bottom: 0;
}

.bonus_footer_right_href {
    color: #ae2522;
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.announcementpopupimg img {
    /* width: 400px; */
    margin: auto;
    border-radius: 5px;
}

#announcementpopup .carousel-control-prev {
    left: -22px;
}

#announcementpopup .carousel-control-next {
    right: -22px;
}

.announcementmodal.modal {
    z-index: 999999;
}

.announcementmodal .modal-content {
    position: relative;
}

.announcementmodal .close {
    right: 0;
    bottom: -35px;
    color: #000000;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcementmodal.detectannouncementmodal02 .close {
    position: absolute;
    right: 55px;
    top: 20px;

}

.announcementmodal .modal-content {
    background-color: transparent;
    border: none;
}


.announcementmodal .modal-dialog {
    max-width: 500px;
}

.annou-pop {
    border-radius: 20px;
    background: #000;
    padding: 20px;
    color: #fff;
    border: 1px solid #dc3545;
}

.annou-ttle {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #dc3545;
    padding-bottom: 7px;
}

.annou-content {
    padding-top: 25px;
    font-size: 12px;
}

.announcementmodal .modal_close {
    z-index: 10;
    color: #fff;
    opacity: 1;
}

.annou-content img {
    display: block;
    margin: 0px auto;
}

.annou-pop p {
    margin-top: 20px;
    margin-bottom: 0px;
}
.round {
  position: relative;
  margin-right: 10px;
  height: 16px;
}

.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
  margin: 0px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 1px;
  opacity: 0;
  position: absolute;
  top: 3px;
  transform: rotate(-45deg);
  width: 12px;
}

.round input[type="checkbox"] {
  visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
  background-color: #2283f6;
  border-color: #2283f6;
}

.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.cls-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 12px;
    color: #fff;
}










@media only screen and (max-width: 1279px) {
    .info-menu a {
        min-width: auto;
    }
}

@media only screen and (max-width: 1023px) {
}

@media only screen and (max-width: 991px) {
    .web-show {
        display: none;
    }

    .mobile-show {
        display: block;
    }

    .header-web {
        display: none;
    }

    .header-mobile {
        display: block;
        width: 100%;
        position: fixed;
        top: 0px;
        z-index: 3;
        box-shadow: rgba(1, 170, 79, 0.1) 9px 13px 18.6px 0px;
        background: var(--bg-color1);
    }

    .t-header {
        height: 85px;
    }

    .color-icon {
        font-size: 14px;
        height: 25px;
        width: 25px;
        padding: 5px;
    }

    .themeSwitcher {
        top: 30px;
        right: 0px;
    }

    .right-bar .right-container {
        width: auto;
        padding: 5px;
    }

    .right-bar .right-item-icon {
        max-width: 40px;
        max-height: 40px;
    }

    .search-game {
        width: 100%;
    }

    .game-list-wrapper .game-list {
        grid-template-columns: repeat(3, minmax(0px, 1fr));
        gap: 10px;
    }

    .home-title-text {
        font-size: 25px;
    }

    .home-game {
        padding: 10px;
    }

    .announce-bar {
        padding: 5px;
    }

    .ann-bar {
        padding-left: 10px;
    }

    .t-footer {
        padding: 10px 0px;
    }

    .footer-link {
        flex-wrap: wrap;
    }

    .footer-link a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-prov {
        grid-template-columns: repeat(6, 1fr);
    }

    .mobile-footer {
        display: block;
    }

    .home-title.prod {
        padding-top: 20px;
    }

    .prod-tab .nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .prod-tab .nav-pills .nav-link img {
        max-width: 65px;
    }

    .game-tab .nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .game-tab .nav-pills .nav-link {
        padding: 10px;
        white-space: nowrap;
        font-size: 12px;
    }

    ::-webkit-scrollbar-thumb, ::-webkit-scrollbar-track {
        background: transparent;
    }

    .search-game.prod.mobile-show {
        padding-bottom: 20px;
    }

    .filter-menu-bar {
        overflow-x: auto;
        gap: 5px;
    }

    .pmbox {
        background: var(--bg-color);
        min-width: auto;
        white-space: nowrap;
        align-self: center;
        border-radius: 5px;
        margin: 0px;
    }

    .pmbox.active {
        border-radius: 5px;
    }

    .promo-container {
        grid-template-columns: 1fr;
    }

    .info-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding: 10px 3px;
    }

    .info-menu a {
        min-width: auto;
        white-space: nowrap;
        align-self: center;
        border-radius: 5px;
        margin: 0px;
    }

    .contact-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .info-bg {
        padding: 10px;
    }

    .contact-wrap-in span {
        font-size: 16px;
    }

    .blog-item {
        padding: 10px 15px;
    }

    .amt-qr {
        flex-direction: column;
        margin-top: 10px;
    }

    .qr-info {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        position: relative;
    }
    .mission-bg ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .play2earn-wrapper {
        grid-template-columns: repeat(1,1fr);
    }

    .p2e-amount {
        grid-template-columns: repeat(1,1fr);
    }
    .wheel_product.wheel-wrap {
        min-height: 500px;
    }
    .redemption-wrapper {
        display: flex;
        flex-direction: column;
        gap: 86px;
        }
        .rep_modal img.img-wrap {position: relative;}
    
        .rep_modal .congrat-text {
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            bottom: 45px;
            font-size: 14px;
        }
    
        .rep_modal .image-wrap {
            height: auto;
        }
    
        .rep_modal .modal-congrat h5 {
            font-size: 18px;
        }
    
        .rep_modal .close {
            right: 0px;
        }
            button.submit-btn {
            display: block;
            margin: 0px auto;
        }
    
         .claim-btn-wrap {
            position: absolute;
            bottom: 0px;
            left: 0;
            margin: 0px auto;
            right: 0;
        }
        .vip-wrap ul {
            flex-direction: column;
        }
        .vip-non {
            height: 160px;
        }
    
        .vip-1 img {
            height: 140px;
        }
    
        h3.vip-ttl {
            font-size: 7.3vw;
            padding: 0px 0px;
        }
    
        .lvl-lv ul {
            font-size: 12px;
        }
    
        .table_vip_responsive {
            overflow-x: scroll;
            margin-left: 45%;
            overflow-y: visible;
            padding: 0;
        }
    
        .table_vip_responsive tr th.headcol {
            width: 45%;
            padding: 10px;
            font-size: 10px;
            height: 47px;
        }
        .vip-ico img {
        height: 22px;
        }
    
        .table_vip_outwrap {
            padding: 10px;
        }
    
        table.vip_table tr.hr_cus_wrap {
            position: relative;
            display: none;
        }
    
        .headcol {
            position: absolute;
            width: 12em;
            left: 0;
            top: auto;
            border-top-width: 2px;
            margin-top: -1px;
            height: auto;
        }
    
        .headcol_first_mobile {
            background-color: #37393f;
            border-top-left-radius: 10px;
        }
    
        table.vip_table tr td span {
            font-size: 12px;
        }
    
        .vip_table_head.headcol_sec_mobile, table.vip_table.headcol_sec_mobile {
            border-top-left-radius: 0;
        }
    
        .table_vip_responsive tr th.headcol.headcol_sub {
            font-weight: 700;
            color: #fff;
            font-size: 11px;
            line-height: 1;
        }
    
        .fea_grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 25px;
            padding: 20px 0;
        }
    
        .vip_tnc_wrap {
            padding: 7%;
        }
    
        table.vip_table tr td {
            padding: 7px;
            font-size: 10px;
        }

        .bonus_box_custom {
            grid-template-columns: 1fr;
        }
    
        .bonus_right_box_top {
            grid-template-columns: repeat(2,minmax(0,1fr));
            border-top-left-radius: 0.75rem;
            border-bottom-right-radius: 0.75rem;
        }
    
        .trophy_m {
            display: block;
            width: 90px;
            margin: auto;
        }
    
        .trophy_w {
            display: none;
        }
    
        .bonus_right_box_bottom {
            grid-gap: 0;
            border-bottom-right-radius: 0.75rem;
            border-top-right-radius: 0.75rem;
            grid-template-columns: 110px 1fr;
            grid-template-rows: repeat(2,minmax(0,1fr));
            padding: 10px;
        }
    
        .bonus_right_box {
            padding: 10px;
        }
    
        .bonus_card_overview_inner {
            display: grid;
            justify-content: initial;
            grid-gap: 15px;
        }
    
        .bonus_card_item {
            width: 100%;
        }
    
        .bonus_content_box {
            display: grid;
        }
    
        .bonus_left_content_box {
            padding: 30px;
            width: 100%;
        }
    
        .bonus_bets_top {
            display: grid;
        }
    
        .bonus_bets_top_left {
            width: 100%;
            padding: 30px;
        }
    
        .bonus_bets_top_right {
            width: 100%;
        }
    
        .bonus_bets_bottom {
            display: grid;
            grid-gap: 15px;
        }
    
        .bonus_bets_bottom_left {
            width: 100%;
        }
    
        .bonus_bets_bottom_right {
            width: 100%;
        }
    
        .bonus_ranking_inner {
            grid-template-columns: 100%;
            grid-gap: 20px;
        }
    
        .bonus_footer_overview {
            display: grid;
            padding: 15px;
        }
    
        .bonus_footer_right {
            margin-left: 0;
        }
    
        .bonus_footer_left {
            margin: auto;
            padding-bottom: 20px;
        }
        .bonus_bets_number_text{
            margin-bottom: 20px;
        }
        .bonus_ques2{
            
margin-left: 0;
        }
}

@media only screen and (max-width: 767px) {
    .modal-login .btn-close {
        top: 5px;
        right: 5px;
        z-index: 1;
    }

    .promo-modal .btn-close {
        top: -10px;
        right: 0px;
    }

    .balance-modal .btn-close {
        top: -35px;
        right: 0px;
    }

    .acc-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .acc-content .nav {
        gap: 5px;
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
        white-space: nowrap;
    }

    .wallet-info {
        position: initial;
        margin: 0px 0px 30px;
        width: 100%;
    }
    .mission-bg ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .wheel_product.wheel-wrap {
        height: 100%;
        width: 100%;
        margin: 0px auto;
        min-height: 250px;
    }
    .wheel-all ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 550px) {
}

@media only screen and (max-width: 480px) {
    .contact-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .otp-field input {
        width: 100%;
    }

    .bln-all ul {
        padding: 0px;
    }

    .pending-status {
        font-size: 12px;
    }

    .acc-row {
    }
}
