@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    font-size: 14px;
    margin: 0px auto;
    color: #6C7BA8;
    background-color: #EEEEEE;
}

:root {
    --text-color: rgb(255, 255, 255);
    --text-color2: #6C7BA8;
    --bg-color: linear-gradient(to right, #FFBD90 0%, #FFA96E 100%);
    --bg-color2: #EEEEEE;
    --bg-color3: #FFFFFF;
    --bg-color4: #CCD0DB;
    --bg-color5: #FFBC8F;
    --header-color: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 95%) 100%);
    --footer-color: #AFBCD2;
    --border-color: #FFBD8F;
}

a {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover,
a:focus {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #FFBC8F;
}

::-webkit-scrollbar-thumb:hover {
    background: #6C7BA8;
}

input:focus,
select:focus,
button:focus {
    outline: none;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
    color: rgb(102, 102, 102);
    width: 100%;
}

.maincontainer {
    background-color: var(--bg-color2);
}

.header-wrap {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 100;
    background: var(--header-color);
}

.header-wrap .main-header {
    max-width: 100%;
    height: 69px;
    margin: 0px auto;
    padding: 0px 20px 0px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_slider {
    padding-top: 69px;
}

.right-nav {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    width: 180px;
    padding: 12px 0px;
    cursor: pointer;
}

.rightbtn {
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn_share_log {
    width: 120px;
    height: 43px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}

.btn-login {
    position: relative;
    background: #fff;
    border-radius: 10px;
    color: #6C7BA8;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid #FFFFFF;
    box-shadow: 0px 4px 4px #D3D3D3, 0px 42px 107px rgba(187, 229, 0, 0.34), inset 0px 1px 18px #F6F6F6, inset 0px 1px 4px #FFD9E8;
}

.btn-register {
    background: var(--bg-color);
    box-shadow: 0px 7.25px 7.5px rgba(255, 245, 153, 0.3), 0px 5px 7.5px rgba(255, 197, 128, 0.56), inset -1px -1px 5px rgba(255, 255, 255, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.4), inset 2px -2px 5px rgba(255, 255, 255, 0.4);
}

.sidebar-menu {
    background: #fff;
    padding: 20px 30px;
    width: 300px;
    height: 100vh;
    position: fixed;
    right: -300px;
    top: 0px;
    overflow-y: auto;
    z-index: 1000;
    scrollbar-width: none;
}

.sidebar-menu::-webkit-scrollbar {
    display: none;
}

.top-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.btn-join {
    background: linear-gradient(to right, rgb(50, 205, 50), rgb(34, 139, 34));
    color: white;
    border: none;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-color2);
    margin-bottom: 15px;
    border-radius: 10px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.menu-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.menu-item:hover {
    background-color: #CCD0DB;
}

.tournament {
    background: rgb(40, 40, 40);
    color: rgb(255, 255, 255);
    font-weight: bold;
    position: relative;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    margin: 40px 0px 20px;
}

.tournament::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: var(--bg-color);
}

.tournament:hover::before {
    background: linear-gradient(90deg, rgb(203, 152, 1) 0%, rgb(203, 152, 1) 50%, rgb(203, 152, 1) 100%);
}

.game-menu {
    margin-bottom: 20px;
}

.game-menu .menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color2);
    padding: 0px 0px 0px 24%;
    border-radius: 10px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    justify-content: center;
    font-weight: bold;
}

.menu-bg {
    width: 100%;
    height: 40px;
    background-size: auto;
    background-position: center center;
    border-radius: 4px;
    position: relative;
}

.sports.menu-bg {
    background-image: url("../images/sidebar/menu-sports.png");
}

.esports.menu-bg {
    background-image: url("../images/sidebar/menu-esports.png");
}

.casino.menu-bg {
    background-image: url("../images/sidebar/menu-casino.png");
}

.slots.menu-bg {
    background-image: url("../images/sidebar/menu-slots.png");
}

.fishing.menu-bg {
    background-image: url("../images/sidebar/menu-fishing.png");
}

.lottery.menu-bg {
    background-image: url("../images/sidebar/menu-lottery.png");
}

.poker.menu-bg {
    background-image: url("../images/sidebar/menu-poker.png");
}

.bottom-menu {
    padding-top: 15px;
}

.bottom-menu .menu-item {
    padding: 8px 6px;
    color: var(--text-color2);
    font-weight: bold;
    margin-bottom: 5px;
}

.payment-testimonial-container {
    display: flex;
    align-items: center;
    background: #CCD0DB;
    padding: 8px 20px;
    gap: 20px;
    position: relative;
    height: 85px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0px;
    width: calc(100% - 400px);
}

.payment-methods img {
    width: calc(10.3333%);
    height: auto;
    max-height: 30px;
    object-fit: contain;
    transition: 0.3s;
}

.testimonial_wrap {
    width: 350px;
    position: absolute;
    right: 20px;
    top: 0px;
}

.testimonial-swiper {
    border-radius: 0px;
}

.testimonial-content {
    padding: 6px 5px 2px;
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--bg-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.avatar {
    width: 77px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-title h3 {
    margin: 0px;
    font-size: 12px;
    font-weight: bold;
}

.user-info {
    font-size: 11px;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 10.5px;
    line-height: 1.4;
    margin: 3px 0px;
}

.rating {
    color: rgb(255, 215, 0);
    font-size: 12px;
}

.swiper-slide {}

.swiper-slide-active {}

.user_testi_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-nav {
    display: none;
}

.trending-section {
    background-color: var(--bg-color2);
    padding: 40px;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.trending-title {
    color: var(--text-color2);
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
    text-transform: uppercase;
}

.trending-tabs {
    display: flex;
    gap: 15px;
    background: #CCD0DB;
    border-radius: 10px;
    padding: 10px;
}

.trending-tabs .tab-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    position: relative;
}

.trending-tabs .tab-btn:hover {
    color: rgb(255, 255, 255);
}

.trending-tabs .tab-btn.active {
    color: rgb(255, 255, 255);
    background: var(--bg-color4);
    border-radius: 10px;
}

.tab-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.games-grid {
    width: 100%;
    padding: 0px;
}

.game-row {
    display: grid;
    gap: 15px;
    grid-template-areas: "large large large small1 small2 small3" "card1 card2 card3 card4 card5 card6";
}

.game-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.game-card.large {
    grid-area: large;
    justify-content: space-between;
}

.game-card:nth-child(2) {
    grid-area: small1;
}

.game-card:nth-child(3) {
    grid-area: small2;
}

.game-card:nth-child(4) {
    grid-area: small3;
}

.game-card:nth-child(5) {
    grid-area: card1;
}

.game-card:nth-child(6) {
    grid-area: card2;
}

.game-card:nth-child(7) {
    grid-area: card3;
}

.game-card:nth-child(8) {
    grid-area: card4;
}

.game-card:nth-child(9) {
    grid-area: card5;
}

.game-card:nth-child(10) {
    grid-area: card6;
}

.game-card img {
    width: 100%;
    height: 100%;
}

.game-card.large img {
    height: 100%;
}

.game-info {
    padding: 5px 10px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-color);
}

.game-info h3 {
    color: white;
    font-size: 14px;
    margin: 0px 0px 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 95%;
    overflow: hidden;
}

.game-type {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 95%;
    overflow: hidden;
}

.browse-all {
    text-align: center;
    margin-top: 30px;
}

.browse-btn {
    position: relative;
    background: transparent;
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    color: var(--text-color2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    isolation: isolate;
}

.browse-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--bg-color);
    border-radius: 12px;
    z-index: -1;
}

.browse-btn::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: var(--bg-color2);
    border-radius: 10px;
    z-index: -1;
}

.browse-btn:hover::before {
    background: linear-gradient(90deg, rgb(203, 152, 1) 0%, rgb(203, 152, 1) 50%, rgb(203, 152, 1) 100%);
}

.newest-games {
    padding: 40px;
    background: #F9F9F9;
}

.section-title {
    color: var(--text-color2);
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.swiper-slide .game-card {
    width: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.jackpot_bg {
    background: transparent;
}

.jackpot {
    background-image: url("../images/index/bg-jp.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    padding-top: 60px;
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0px auto 20px;
}

.jack-card {
    display: flex;
    flex-direction: column;
    max-width: 536px;
    justify-content: center;
    align-items: center;
    padding: 45px 0px;
    gap: 26px;
}

.jack-card h3 {
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--bg-color) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

.jack-card .number {
    max-width: 442px;
    color: rgb(255, 255, 255);
    background: var(--bg-color);
    width: 100%;
    height: 90px;
    border-radius: 10px;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jackpot-slider {
    position: relative;
    padding: 40px 50px;
    max-width: 1500px;
    margin: 0px auto;
    overflow: hidden;
}

.jackpot-swiper {
    position: relative;
    padding: 0px;
}

.jackpot-game {
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 40px 10px;
    background: #fff;
    border-radius: 10px;
}

.jackpot-game img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    background: var(--bg-color) text;
    -webkit-text-fill-color: transparent;
    border: 0px;
}

.game-name {
    color: var(--text-color2);
    font-size: 14px;
    text-transform: uppercase;
}

.jackpot-swiper .swiper-button-next {
    right: 0px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.jackpot-swiper .swiper-button-prev {
    left: 0px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.jackpot-slider .swiper-button-next,
.jackpot-slider .swiper-button-prev {
    color: var(--text-color2);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.jackpot-slider .swiper-button-next::after,
.jackpot-slider .swiper-button-prev::after {
    content: "";
}

.tournaments {
    background: #fff;
}

.tournaments_slide {}

.tournament-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    border: 0px;
    color: var(--text-color);
}

.tournament-card {
    width: 40%;
}

.tournament-card-box {
    background: var(--text-color2);
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em 10px;
    flex-direction: column;
}

.coming-soon {
    display: inline-block;
    background: rgb(255, 71, 87);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.tournament-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.tournament-time {
    display: flex;
    gap: 5px;
    margin-bottom: 9px;
    color: var(--text-color);
}

.highlight {
    color: var(--bg-color4);
}

.highlightend {
    color: rgb(255, 71, 87);
}

.prize-pool {
    background: #CCD0DB;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    margin-bottom: 9px;
    color: var(--text-color2);
    font-weight: bold;
}

.prize-pool .amount {
    color: var(--text-color2);
    font-weight: bold;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 5px 0px 10px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block .number {
    background: rgb(0, 0, 0);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    color: rgb(255, 255, 255);
}

.time-block .label {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-color);
    text-transform: uppercase;
}

.colon {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: bold;
    margin-top: -28px;
}

.buy-in {
    background: var(--bg-color);
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.buy-in:hover {
    opacity: 0.9;
}

.tournament-image {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.tournament-image img {
    max-height: 400px;
    object-fit: contain;
}

.tournaments_wrap {
    padding: 40px 50px;
    max-width: 1500px;
    margin: 0px auto;
    position: relative;
}

.tournaments_wrap .swiper-button-next {
    right: 0px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.tournaments_wrap .swiper-button-prev {
    left: 0px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.tournaments_wrap .swiper-button-next,
.tournaments_wrap .swiper-button-prev {
    color: rgb(255, 255, 255);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tournaments_wrap .swiper-button-next::after,
.tournaments_wrap .swiper-button-prev::after {
    content: "";
}

.bigwin-section {
    padding: 5em 0px 3em;
}

.bigwin-title {
    color: var(--text-color2);
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.bigwin-swiper {
    position: relative;
}

.bigwin-card {
    padding: 15px;
}

.bigwin-game-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bigwin-game-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.bigwin-details {
    color: rgb(255, 255, 255);
}

.bigwin-game-name {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 0px;
}

.bigwin-player-name {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 0px;
}

.bigwin-amount {
    color: rgb(255, 215, 0);
    font-weight: bold;
    font-size: 14px;
}

.bigwin-section .swiper-button-next {
    right: 0px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.bigwin-section .swiper-button-prev {
    left: 0px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.bigwin-section .swiper-button-next,
.bigwin-section .swiper-button-prev {
    color: rgb(255, 255, 255);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.bigwin-section .swiper-button-next::after,
.bigwin-section .swiper-button-prev::after {
    content: "";
}

.bigwin_bgswiper {
    position: relative;
    padding: 0px 40px;
    max-width: 1500px;
    margin: 0px auto;
}

.bigwin_bgswiper_color {
    background: var(--bg-color);
}

.reg-btn {
    position: relative;
    background: var(--bg-color2);
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    color: var(--text-color2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    isolation: isolate;
    display: ruby-text;
    margin-top: 5em;
}

.reg-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--bg-color);
    border-radius: 12px;
    z-index: -1;
}

.recent_register {
    text-align: center;
}

.footer-nav {
    padding: 15px 0px;
    text-align: center;
    border-bottom: 1px solid #8894B9;
    background: var(--footer-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-color2);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--bg-color4);
}

.separator {
    color: var(--text-color2);
    font-size: 14px;
}

/* .footer_bg_wraper {
    padding-bottom: 80px;
} */

.footer-security {
    background: var(--footer-color);
    padding: 15px 0px;
}

.container_foot {
    margin: 0px auto;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.security-badges {
    display: flex;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--text-color2);
    padding: 10px 21px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    text-align: left;
}

.copyright {
    color: rgb(255, 255, 255);
    font-size: 12px;
    text-align: right;
    max-width: 450px;
}

.terms-link {
    color: var(--bg-color5);
    text-decoration: none;
    transition: color 0.3s;
}

.terms-link:hover {
    color: var(--text-color2);
}

.content-section {
    background: var(--footer-color);
    color: rgb(255, 255, 255);
    padding: 30px 20px 50px;
    margin: 0px auto;
}

.content-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 17px;
}

.content-subtitle {
    font-size: 13px;
    color: rgb(255, 255, 255);
    margin-bottom: 14px;
}

.content-wrapper {
    position: relative;
}

.content-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-color);
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s;
}

.content-text.expanded {
    max-height: 2000px;
}

.read-more-dots {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 6px 10px;
    cursor: pointer;
    background: var(--text-color2);
    position: absolute;
    bottom: -38px;
    left: 0px;
    right: 0px;
    transition: transform 0.3s;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}

.read-more-dots.expanded {
    transform: rotate(180deg);
    bottom: -40px;
    background: linear-gradient(to top, transparent, var(--text-color2) 40%);
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--text-color);
    border-radius: 50%;
    transition: background 0.3s;
}

.read-more-dots:hover .dot {
    background: rgb(255, 255, 255);
}

.burger_icon {
    width: 32px;
    cursor: pointer;
}

.trending-tabs select:focus-visible {
    outline: none;
}

.cancel_sidebar {
    display: none;
    justify-content: flex-end;
    padding: 10px;
    width: 40px;
    margin-left: auto;
    margin-bottom: 10px;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(200deg) brightness(95%) contrast(85%);
}

.footer_wrapper {
    width: 100%;
    position: fixed;
    bottom: 0px;
    display: flex;
    z-index: 98;
    background: var(--bg-color);
    border-radius: 12px 12px 0px 0px;
    overflow: hidden;
}

.footer_stickywrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.footer_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 7px 0px 3px;
}

.footer_item.active {
    background: rgba(255, 255, 255, 0.1);
}

.footer_item i {
    font-size: 24px;
    color: rgb(255, 255, 255);
}

.footer_item span {
    font-size: 15px;
    color: rgb(255, 255, 255);
}

.inner_body .burger_icon {
    font-size: 32px;
    display: flex;
    justify-content: center;
    margin: auto;
    color: var(--text-color2);
}

.inner_body .header-wrap {
    background: var(--header-color);
    position: fixed;
}

.innercontainer {
    max-width: 1300px;
    margin: 0px auto;
    padding: 0px 15px 25px;
}

.body_inner_bg {
    background: var(--bg-color2);
    min-height: 500px;
    padding-top: 69px;
    background-size: auto;
    background-position: top right;
}

.page_title_top {
    padding: 10px 0px;
}

.page_title_top h3 {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    /* background: var(--bg-color) text;
    -webkit-text-fill-color: transparent; */
    color: var(--text-color2);
    margin-bottom: 0px;
    width: fit-content;
}

.page_product_wrap {
    background-color: var(--bg-color3);
    padding: 20px;
    border-radius: 8px;
}

.page_product_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.page_product_item {
    position: relative;
}

.game-preview__hover {
    background-color: rgb(204, 208, 219, 0.8);
    position: absolute;
    inset: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 19px 10px 13px;
    transition: opacity 0.1s ease-in-out;
    perspective: 1000px;
    transform: translateZ(1px);
    border-radius: 0px;
}

.game-preview__btn-play {
    background: var(--bg-color);
    border-radius: 10px;
    opacity: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
    max-width: 110px;
}

.page_product_item:hover .game-preview__btn-play,
.page_product_item:hover .game-preview__hover {
    opacity: 1;
}

.page_product_item:hover .game-preview__btn-play {
    animation: 0.2s ease 0s 1 normal forwards running buttonPulse;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.game-preview__btn-play::before {
    content: "";
    display: block;
}

.game-preview__btn-play i {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.inner_pagesidebarmenu {
    min-width: 20px;
    display: block;
    padding: 0px;
    position: fixed;
    left: 0px;
    top: 100px;
    z-index: 5;
    transition: 0.333s;
}

.inner_pagesidebarmenu_wrap {
    background: var(--bg-color3);
    box-shadow: rgba(204, 208, 219, 0.4) 4px 2px 5px;
    border-radius: 0px 10px 10px 0px;
    overflow: hidden;
}

.pagemenu_flex {
    display: flex;
    flex-direction: column;
}

.pagemenu_flex a {
    display: flex;
    align-items: center;
    padding: 10px;
    flex-direction: column;
    color: var(--text-color2);
}

.pagemenu_flex a.active,
.pagemenu_flex a:hover {
    background: rgba(175, 188, 210, 0.23);
}

.pagemenu_flex a img {
    width: 54px;
}

.product_footer_winnergrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10%;
}

.product_footer_winnerbox {
    background: var(--bg-color4);
    padding: 15px;
    border-radius: 10px;
}

.product_footer_winnerbox_title {
    color: var(--text-color2);
    font-size: 18px;
    font-weight: 600;
}

.winners-slider {
    background: rgb(26, 26, 26);
    padding: 10px;
    max-width: 400px;
}

.winner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 5px 0px;
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
}

.winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-details {
    color: rgb(255, 255, 255);
}

.winner-name {
    font-size: 14px;
    font-weight: 500;
}

.game-name {
    font-size: 12px;
    color: var(--text-color2);
}

.winner-amount {
    color: rgb(255, 255, 255);
    text-align: right;
}

.winner-amount span {
    display: inline-block;
    font-size: 12px;
}

.winner-amount .amount {
    font-size: 16px;
    font-weight: 600;
    margin-left: 4px;
}

.latest-winners,
.other-winners {
    height: 200px;
    overflow: hidden;
}

.winner-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.winner-text {
    color: rgb(255, 255, 255);
}

.player-name {
    font-size: 14px;
    margin-bottom: 2px;
}

.game-title {
    font-size: 12px;
    opacity: 0.7;
}

.win-amount {
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.winner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin: 5px 0px;
    border-radius: 12px;
    transition: 0.3s;
    transform: scale(0.9);
}

.latest-winners .winner-row.winner-active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}

.other-winners .winner-row.winner-active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}

.footer_product {
    background: var(--footer-color);
    padding: 25px 0px;
}

.payment-methods-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin: auto;
    text-align: center;
    justify-content: center;
}

.payment-methods-footer img {
    height: auto;
    max-width: 80px;
}

.foot_copyright_inner {
    margin-top: 20px;
}

.foot_copyright_inner p {
    margin-bottom: 0px;
    text-align: center;
    font-size: 11px;
}

.foot_copyright_inner p a {
    color: var(--text-color2);
}

.game-provider_slider {
    position: relative;
}

.game-provider_slider .swiper-button-next {
    right: -40px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.game-provider_slider .swiper-button-prev {
    left: -40px;
    width: 40px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.game-provider_slider .swiper-button-next,
.game-provider_slider .swiper-button-prev {
    color: rgb(255, 255, 255);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.game-provider_slider .swiper-button-next::after,
.game-provider_slider .swiper-button-prev::after {
    content: "";
}

.page_product_wrap_slots {
    padding: 20px 40px;
}

.game-provider_slider_item {
    cursor: pointer;
}

.game_slot_filter {
    display: flex;
    align-items: center;
    margin: 20px 0 30px 0;
    gap: 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    overflow-x: auto;
}

.game_slot_filter button {
    position: relative;
    color: var(--text-color2);
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--bg-color4);
    padding: 10px;
    min-width: 140px;
    text-transform: uppercase;
    min-height: 48px;
}

.game_slot_filter button.active,
.game_slot_filter button:hover {
    background: var(--bg-color);
    border: 2px solid transparent;
    color: var(--text-color);
}

/* .game_slot_filter button.active:before,
.game_slot_filter button:hover:before {
    content: '';
    background: transparent;
}

.game_slot_filter button:before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: var(--bg-color);
} */

.game_slot_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px 20px;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.game_slot_item {
    position: relative;
    /* aspect-ratio: 3/4; */
}

.game_slot_card {
    position: relative;
    width: 100%;
    height: 100%;
    /* border-radius: 12px; */
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    /* background: #1a1a1a; */
}

.game_slot_card:hover {
    transform: translateY(-5px);
}

.game_slot_card img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
}

.game_slot_title {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    /* padding: 10px; */
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); */
    color: white;
    font-size: 13px;
    text-align: center;
    margin: 10px 0;
}

.game_slot_more {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.game_slot_more_btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: var(--bg-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.game_slot_more_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 225, 93, 0.3);
}

.page_title_bottom {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color2);
}

.page_product_text {
    color: var(--text-color2);
    font-size: 12px;
}

.page_product_hr {
    border-top: 1px solid var(--border-color);
    opacity: 1;
}

.payment_methods_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.payment_method_card {
    background: var(--bg-color4);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color4);
}

/* Gradient border effect */
.payment_icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--bg-color);
    border-radius: 50%;
    z-index: 0;
}

/* Inner dark background */
.payment_icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--text-color2);
    border-radius: 50%;
    z-index: 1;
}

.payment_icon img {
    /* width: 80%; */
    height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.payment_info {
    flex: 1;
}

.payment_name {
    color: var(--text-color2);
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
    /* background: var(--bg-color) text;
    -webkit-text-fill-color: transparent; */
}

.payment_limits {
    margin-bottom: 5px;
}

.limit_row {
    display: flex;
    justify-content: left;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    gap: 8%;
}

.limit_row .amount {
    color: #fff;
    font-weight: 500;
}

.payment_type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.contact_methods_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 20px;
    padding: 0px 0;
    max-width: 800px;
    /* margin: 0 auto; */
    margin-right: auto;
}

.contact_method_card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact_method_card:hover {
    transform: translateY(-5px);
}

.contact_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color4);
}

/* Gradient border effect */
.contact_icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--bg-color);
    border-radius: 50%;
    z-index: 0;
}

/* Inner dark background */
.contact_icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--text-color2);
    border-radius: 50%;
    z-index: 1;
}

.contact_icon img {
    /* width: 60%; */
    height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.contact_name {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: var(--bg-color) text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.page_title_bottom_btm {
    margin-top: 8%;
}

.inf-content{
    color: var(--text-color2);
}

.bonus_cards_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus_card {
    background: rgb(255 255 255 / 68%);
    border-radius: 15px;
    padding: 0;
    position: relative;
    border: none;
    display: grid;
    overflow: hidden;
    grid-template-columns: 42% 58%;
}

.bonus_left {

    /* width: 250px; */

    height: 100%;
}

.bonus_right {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus_content {
    position: relative;
    z-index: 2;
}

.bonus_header {
    margin-bottom: 20px;
}

.bonus_title {
    color: var(--text-color2);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.bonus_subtitle {
    color: var(--text-color2);
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 0;
}

.bonus_description {
    color: var(--text-color2);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.claim_button {
    background: var(--bg-color);
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-bottom: 0;
    max-width: 120px;
}

.claim_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 219, 96, 0.3);
}

.min_deposit {
    display: flex;
    align-items: center;
    gap: 10px;  
    color: var(--text-color2);
    font-size: 14px;
    background: var(--bg-color4);
    margin: 10px 0 0 0;
    padding: 5px 10px;
    border-radius: 8px;
    justify-content: space-between;
    cursor: pointer;
}

.min_deposit img {
    width: 20px;
    height: 20px;
}



.filter-menu-bar {
    margin: 0;
    display: flex;
    gap: 13px;
    margin-bottom: 25px;
    overflow: auto;
}

.pmbox {
    padding: 11px 10px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    background: var(--bg-color4);
    color: var(--text-color2);
    border: 0px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}

.pmbox.active, .pmbox:hover {
    background: var(--bg-color);
    border: 0px solid transparent;
    color: var(--text-color);
}

.pmbox i {
    width: 28px;
    font-size: 19px;
    display: flex;
    justify-content: center;
}

.promo-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.mix {
    display: none;
}

.pmbox img {
    width: 25px;
}



.modal-dialog.promo {
    max-width: 800px !important;
    border-radius: 20px;
}

.modal-content.promo {
    border: none;
    background-color: #1a1c29;
    border-radius: 20px;
}

button.close-promo {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
}

.grlist {
    color: var(--text-color);
}

.pm-title-wrapper {
    font-size: 21px;
    font-weight: 700;
    background: var(--bg-color);
    color: var(--text-color);
    padding: 15px 20px;
    border-radius: 20px;
}

.pmtable-wrapper {}

table.promo-table tr th {
    color: #fff;
    background: #d9353d;
    padding: 4px;
    text-align: center;
    border: 1px solid var(--text-color);
}

table.promo-table tr td {
    border: 1px solid var(--text-color);
    padding: 5px;
    color: var(--text-color);
    text-align: center;
}

.gr-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #d9353d;
}

.grlist ul {
    padding-left: 20px;
    margin-top: 5px;
}

.grlist ul li {
    padding-bottom: 8px;
    font-size: 14px;
    list-style: disc;
}

.promo-pop-cont {
    padding: 15px;
    border: 1px solid #d9353d;
    border-radius: 0px 0px 20px 20px;
}

.promo-nav button {
    background: #1e2024;
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
}

.promo-modal-tnc {
    font-size: 14px;
    color: var(--text-color2);
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 2px;
}

.promo-modal-tnc li span {
    color: var(--text-color2);
    margin-right: 10px;
}

.promo_table tr th {
    background: var(--text-color2);
    padding: 10px;
    border: 1px solid #6C7BA8;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.promo_table tr td {
    font-size: 12px;
    color: var(--text-color2);
    padding: 10px;
    border: 1px solid #6C7BA8;
    background: transparent;
    text-align: center;
}

.basic-text {
    font-size: 12px;
    color: var(--text-color2);
}

.promo_table {
    width: 100%;
}

.promo-text {
    padding: 20px;
    background-color: var(--bg-color3);
    border-radius: 0px 0px 10px 10px;
    color: var(--text-color2);
}

.red-underline {
    margin: 10px 0 0 0;
}

.promo-body {
    background-color: var(--bg-color3);
    border-radius: 20px;
}

.promo_ul {
    padding-left: 1rem;
    font-size: 12px;
}



.signup_container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin-top: 50px;
}

.signup_title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--bg-color) text;
    -webkit-text-fill-color: transparent;
}

.signup_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form_group {
    width: 100%;
}

.form_input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #F5F5F5;
    font-size: 16px;
    color: #888888;
}

.form_input::placeholder {
    color: #999;
}

.phone_input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
}

.country_code {
    padding: 15px;
    border: none;
    background: #fff;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-right: 1px solid #eee;
    border-radius: 10px 0 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    width: 27%;
}

.country_code:focus {
    outline: none;
}

.phone_input .form_input {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

/* Remove default select styling in IE */
.country_code::-ms-expand {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .country_code {
        padding: 12px;
        font-size: 14px;
        padding-right: 25px;
    }
}

.dob_label {
    display: block;
    color: var(--text-color2);
    font-size: 14px;
    margin-bottom: 8px;
}

.dob_input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
}

.dob {
    text-align: center;
}

.dob_separator {
    color: #a3a3a3;
    font-size: 20px;
}

.signup_button {
    background: var(--bg-color);
    border: none;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
}

.signup_button:hover {
    transform: translateY(-2px);
}

.login_link {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color2);
    font-size: 16px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0px;
    text-align: center;
}

.login_link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.otp_description {
    color: var(--text-color2);
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.otp_inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.otp_input {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #F5F5F5;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.otp_input:focus {
    outline: none;
}

/* Hide number input arrows */
.otp_input::-webkit-outer-spin-button,
.otp_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp_input[type=number] {
    -moz-appearance: textfield;
}

.otp_submit {
    background: var(--bg-color);
    border: none;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    width: fit-content;
}

.otp_submit:hover {
    transform: translateY(-2px);
}

.otp_resend {
    color: var(--text-color2);
    font-size: 14px;
    display: flex;
    align-items: baseline;
}

.resend_button {
    background: none;
    border: none;
    color: var(--text-color2);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
    display: flex;
    align-items: baseline;
}

.resend_button:hover {
    text-decoration: underline;
}

.success_description {
    color: var(--text-color2);
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
    text-align: center;
}

.reg_form i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: var(--text-color2);
    margin-bottom: 10px;
}

.success_form {
    text-align: center;
    margin: 45px 0 20px 0;
}

button.btn-tnc {
    background: var(--bg-color);
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 8px 15px;
    color: #000;
    border: none;
    border-radius: 5px;
    position: relative;
}

button.btn-tnc.collapsed {
    background: var(--bg-color);
    color: #000000;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: #000000;
    padding: 20px 20px 10px;
    border-radius: 4px;
    margin-top: 2px;
    line-height: 1.3;
}

.tnc-body ol {
    padding-left: 15px;
}

.tnc-body ol li {
    padding-bottom: 8px;
}

button.btn-tnc::after {
    content: '>';
    font-size: 16px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 10px;
    transform: rotate(270deg);
    transition: all 0.3s;
}

button.btn-tnc.collapsed::after {
    content: '>';
    transform: rotate(90deg);
    transition: all 0.3s;
}


/* afterlogin */

/* Main sidebar container */
.wallet-sidebar {
    position: fixed;
    left: 0;
    top: 69px;
    width: 240px;
    height: calc(100vh - 69px);
    /* Subtract header height from viewport height */
    background: var(--bg-color3);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 30px 0 0px 0;
    z-index: 1000;
    overflow-y: auto;
    scrollbar-width: none;
}

/* Balance section styles */
.wallet-balance {
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
}

.balance-amount,
.points-amount {
    margin-bottom: 15px;
}

.balance-label,
.points-label {
    display: block;
    font-size: 14px;
    color: var(--text-color2);
    margin-bottom: 5px;
}

.balance-value {
    display: flex;
    font-size: 24px;
    color: var(--bg-color5);
    font-weight: bold;
    align-items: center;
    cursor: pointer;
}

.points-value {
    display: block;
    font-size: 24px;
    color: var(--bg-color5);
    font-weight: bold;
    word-break: break-all;
}

.points-amount {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    /* justify-content: space-between; */
    gap: 10%;
}

.points_grid {
    position: relative;
    cursor: pointer;
}

.point-wrp {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-token {
    background: var(--bg-color4);
    min-width: 150px;
    padding: 10px;
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    border-radius: 8px;
    align-items: center;
    font-size: 17px;
}

span.img-point img {
    height: 30px;
}

.points_line {

    background: var(--text-color2);

    width: 1px;

    height: auto;
}

/* Menu section styles */
.wallet-menu {
    padding: 20px 0;
}

.wallet-menu-item {
    display: flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
    color: var(--text-color2);
    transition: 0.3s;
    margin-bottom: 0;
    border-radius: 0;
    background-color: transparent;
}

.wallet-menu-item.active {
    background-color: #AFBCD23B;
}

.wallet-menu-item:hover {
    background-color: #AFBCD23B;
}

.wallet-icon {
    width: 60px;
    height: 52px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--text-color2);
    /* Icon color */
    background: transparent;
    transition: 0.3s;
}

.wallet-menu-item.active .wallet-icon,
.wallet-menu-item:hover .wallet-icon {
    background: var(--bg-color5);
    color: var(--text-color);
}


.menu-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.deposit-container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 20px;
    background: var(--bg-color3);
    border-radius: 10px;
    /* margin-top: 30px; */
}

.step-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color2);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--text-color2);
    display: inline-block;
}

/* Amount Options */
.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.amount-card {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.amount-card.active {
    border-color: var(--border-color);
    background: #f5f5f5;
}

.check-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #ffffff;
    font-size: 18px;
    background: var(--bg-color5);
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.amount-card h3 {
    font-size: 19px;
    margin: 0;
    color: #333;
}

.amount-card.bonus {
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background: #2196f3;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
}

.bonus-text {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* Manual Amount Button */
.manual-amount {
    text-align: center;
    margin-bottom: 30px;
}

.manual-btn {
    background: none;
    border: none;
    color: #2196f3;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
}

/* Alert Message */
.alert-message {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Payment Methods */
.payment-methods-deposit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.payment-card {
    background: var(--bg-color4);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--bg-color4);
    transition: all 0.3s ease;
}

.payment-card.active {
    border-color: var(--bg-color5);
    background: var(--bg-color5);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-icons img {
    height: 30px;
    object-fit: contain;
}

.payment-logo {
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-card p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

/* Deposit Button */
.deposit-btn {
    background: var(--bg-color5);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 25px;
}

.deposit-btn:hover {
    filter: brightness(1.1);
}

.deposit-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.deposit-tabs .tab-button {
    background: var(--bg-color4);
    color: var(--text-color2);
    border: none;
    padding: 7px 13px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deposit-tabs .tab-button.active {
    background: var(--bg-color);
    color: var(--text-color);
    /* Blue color from the image */
    border: 1px solid var(--border-color);
}

.deposit-tabs .tab-button:hover:not(.active) {
    background: var(--bg-color);
    color: var(--text-color);
}

.tab-content-deposit .tab-pane {
    display: none;
}

.tab-content-deposit .tab-pane.active {
    display: block;
}

.form_label {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color2);
}

.table-share tr th {
    background-color: var(--bg-color4);
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #BECAEC;
    color: var(--text-color2);
}

.table-share tr td {
    padding: 5px;
    border: 1px solid #BECAEC;
    text-align: center;
    color: var(--text-color2);
}

.bank_display {
    width: 82px;
    border-radius: 5px;
}

.form_wrap {
    margin-bottom: 20px;
}

.form-control {
    background-color: #F5F5F5;
    min-height: 52px;
    border: transparent;
    border-radius: 0.5rem;
    color: #888888;
}

select.form-control {
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    color: var(--text-color2);
    background-color: #F5F5F5;
    outline: 0;
    box-shadow: none;
}

[type="file"] {
    height: 0;
    overflow: hidden;
    width: 100%;
    display: block;
}

[type="file"]+label {
    margin: 0px !important;
    /* background: #ed1d49; */
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-size: inherit;
    font-weight: 500;
    margin-bottom: 1rem;
    outline: none;
    padding: 0.5rem 50px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;

    &:hover {
        background-color: darken(#f15d22, 10%);
    }

    &.btn-1 {
        background: var(--bg-color);
        box-shadow: 0 6px darken(#f79159, 10%);
        transition: none;

        &: hover {
            box-shadow: 0 4px darken(#f79159, 10%);
        }
    }

    &:hover {
        background-color: darken(#99c793, 30%);

        &::before {
            right: 75%;
        }
    }
}

.qr-num {
    position: relative;
}

button.btn-copy {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--bg-color5);
    font-size: 22px;
    top: 7px;
}

.amt-qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-img img {
    height: 130px;
}

.qr-area {
    border: 1px solid var(--text-color2);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.qr-nm {
    color: #2283f6;
    font-size: 12px;
}

.qr-info {
    font-size: 12px;
    width: 50%;
}

.qr-img {
    margin: 10px 0px;
}

.atten {
    border: 1px solid var(--text-color2);
    border-radius: 5px;
    padding: 10px;
}

.atten img {
    height: 20px;
}

.qr-ttl {
    font-weight: bold;
}

.wallet-sidebar-toggle {
    position: fixed;
    top: 81px;
    left: 0;
    z-index: 1;
    font-size: 23px;
    background: var(--bg-color);
    padding: 5px;
    width: 36px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 8px 8px 0;
    box-shadow: 3px 0px 3px 1px #0000001c;
    color: var(--text-color);
}

.with_addbanka {
    display: flex;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 25px;
    background: var(--bg-color4);
}

/* .with_addbanka img {
    filter: brightness(2.5) hue-rotate(253deg);
} */

.afterlogin_title {
    padding: 20px 0;
    font-size: 1.5vw;
    font-weight: 600;
    color: var(--text-color2);
}

.afterlogin_wrapper_inner {}

.rd-color {
    font-size: 15px;
    background: none;
    border: none;
    color: var(--text-color2);
    margin-left: 7px;
}


.ann-wrap {
    display: flex;
    background: #171f2b;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
    align-items: center;
}

.blc-amt {
    display: flex;
    gap: 20px;
}

.blc-inout {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-out {
    border: none;
    border-radius: 5px;
    background: #48dd30;
    color: #fff;
    min-width: 45px;
}

.btn-out:hover {
    background: #40c62b;
}

.btn-in {
    background: #ed1d49;
    border: none;
    border-radius: 5px;
    color: #fff;
    min-width: 45px;
    padding: 5px;
}

.balance-modal .modal-body {
    padding: 0px;
}

.btn-bln-all {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(90deg, rgb(3, 3, 3) 40%, rgb(40, 40, 40) 70%, rgb(39, 39, 39) 100%);
    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: #ed1d49;
    color: #fff;
    border: none;
}

button.btnall:hover {
    background: #b20e30;
}

.bln-all ul {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    max-height: 466px;
    padding: 0;
}

.bln-in {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bln-all ul li {
    margin: 3px 0px;
    border-radius: 5px;
    padding: 5px 15px;
    cursor: pointer;
    list-style: none;
    background: #0000008f;
    border: 1px solid #007bff00;
}

.bln-all {
    padding: 10px 10px 0 10px;
}

.bln-all ul li:hover {
    border: 1px solid var(--text-color2);
    background: #166f46;
}

.balance-modal .modal-content {
    background: #042f1b;
    border-radius: 10px 10px 0px 0px;
}

.balance-modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text-color2);
    text-shadow: 0 1px 0 var(--text-color2);
    opacity: 1;
    top: -33px;
    position: absolute;
    right: 5px;
    border: none;
    background: transparent;
}

span.rd-box {
    background: #ed1d49;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-card {
    background: var(--bg-color4);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    color: white;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.transaction-status {
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-label {
    font-weight: bold;
}

.transaction-type {
    color: #ffffff;
}

.btn-refresh {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.transaction-timer {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.timer {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color2);
}

.amount {
    font-size: 24px;
    font-weight: bold;
}

.warning-text {
    color: #ff4757;
    margin-bottom: 20px;
    font-size: 14px;
}

.transaction-details {
    background: #F5F5F5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.transaction-details h3 {
    margin-bottom: 15px;
    color: var(--text-color2);
}

.details-grid {
    display: grid;
    gap: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    color: #888;
}

.detail-value {
    color: var(--text-color2);
    text-align: end;
}

.transaction-actions-bottom {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancel {
    background: #ff4757;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-info {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-cancel:hover,
.btn-info:hover {
    opacity: 0.9;
}

.transaction-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.filter-section {
    background: var(--bg-color4);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.filter-section .form-control {
    background: var(--bg-color5);
    border: 1px solid var(--border-color);
    color: white;
}

.filter-section .form-control:focus {
    background: var(--bg-color5);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.btn-refresh:hover i {
    animation: spin 1s linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Status indicators */
.transaction-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.transaction-type:contains("Deposit") {
    background: #28a745;
}

.transaction-type:contains("Withdrawal") {
    background: #dc3545;
}

/* Timer animation */
.timer {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* password */
.password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
}

.toggle-password:hover {
    color: #535353;
}

.password-requirements {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 12px;
}

.requirement i {
    font-size: 8px;
}

.requirement.valid {
    color: #2ecc71;
}

.requirement.valid i {
    color: #2ecc71;
}

.btn-df {
    border: none;
    background: #ed1d49;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.btn-del {
    border: none;
    background: var(--bg-color);
    color: #fff;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 0;
}

.history_table tr td:last-child {
    color: var(--text-color2);
    text-align: right;
}

.btn-delete {
    color: var(--text-color2);
    padding: 0px;
    border: none;
    background: none;
}

.history_table tr th:last-child {
    text-align: right;
}

.msg_user {
    cursor: pointer;
}


.inbox-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.inbox-text {
    background: #404348;
    margin: 0px 15px;
    border-radius: 10px;
    padding: 15px;
}

.modal-dialog.inbox {
    max-width: 500px !important;
    border-radius: 20px;
}

.modal-content.inbox {
    border: none;
    background: #191b1e;
    border-radius: 20px;
}

button.close-inbox {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
}

.wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 400px;
}

.chatMsg {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 50px);
    margin-bottom: 30px;
    min-height: 150px;
    /* max-width: 800px; */
}

.chatMsg ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 0px;
}

.chatMsg ul li {
    position: relative;
    margin-bottom: 15px;
}

.msg,
.msg-reply {
    display: block;
    /* margin-left: 10px; */
    /* background: #cbcbcb; */
    /* padding: 10px 15px; */
    position: relative;
    /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25); */
    color: #000;
    border-radius: 5px;
    /* margin-right: 10px; */
}

.msg::before,
.msg-reply::before {
    position: absolute;
    left: -8px;
    top: 0px;
    content: "";
    display: block;
    /* border-right: 12px solid #fff; */
    border-bottom: 15px solid transparent;
}

.msg-date2 {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0px auto;
    color: #ffffff;
    font-weight: 300;
}

.msg-reply {
    margin-left: inherit;
    /* margin-right: 10px; */
    background: var(--bg-color5);
    color: #fff;
    /* margin-left: 10px; */
    padding: 10px;
    font-size: 13px;
}

.msg-reply::before {
    left: inherit;
    right: -9px;
    border-right: inherit;
    /* border-left: 12px solid #4d61a6; */
}

/* .avatar, .avatar-reply {
    position: absolute;
    left: 0;
    overflow: hidden;
    width: 30px;

    height: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.avatar img, .avatar-reply img {
    max-width: 30px;
} */

.avatar-reply {
    left: inherit;
    right: 0;
}

.chatBox {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.chatBox .mdi-attachment {
    position: absolute;
    z-index: 2;
    left: 10px;
    font-size: 20px;
    bottom: 15px;
    color: #4d61a6;
    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: #fff;
    background: var(--text-color2);
    text-align: center;
    cursor: pointer;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px;
}

.chatBox .mdi-send.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.chatBox textarea {
    display: block;
    resize: none;
    width: 100%;
    border: 0;
    border-top: 1px solid #ccc;
    background: #ffffff;
    padding: 12px 50px 12px 40px;
    position: absolute;
    bottom: 0;
    min-height: 45px;
    overflow: hidden;
    color: #000;
    border-radius: 10px;
}

.hiddendiv {
    display: none;
}

.chatBox textarea:focus {
    outline: none;
}

.msg-date {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    gap: 10px;
    /* border-bottom: 1px solid #a4a4a4; */
}

.msg-content {
    line-height: 18px;
    margin-top: 0px;
    font-size: 13px;
    background: #cbcbcb;
    padding: 10px;
    border-radius: 5px;
}

.mdi-send:before {
    content: "\f1d8";
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    right: 10px;
}

.btn_submit_history {
    background: var(--bg-color);
    border: none;
    width: 100%;
    border-radius: 5px;
    color: #fff;
    padding: 8px;
    height: 52px;
    font-size: 17px;
}

.table_form_top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    grid-gap: 15px;
    margin-bottom: 25px;
}

.table_form_top_box .form_wrap {
    margin-bottom: 0;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 150px;
    margin-top: 20px;
}

.inbox-container {
    display: flex;
    /* max-width: 800px; */
    margin: auto;
    background: rgba(255, 255, 255, 0);
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.inbox-sidebar {
    width: 300px;
    border-right: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    height: 400px;
    /* Adjust height as needed */
    padding-right: 0;
}

.inbox-message {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 15px;
}

.inbox-message:hover {
    background-color: #0000001e;
}

.inbox-message span {
    display: block;
    font-weight: bold;
}

.inbox-content {
    padding: 20px;
    flex: 1;
}

.message-pane {
    display: none;
}

.message-pane.active {
    display: block;
}

.head_inbox_tit {
    display: flex;
    justify-content: space-between;
}

.inbox-message.active {

    background: var(--bg-color5)57;
}

.inbox_right_tri {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.index_side_top {
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.reply_wrapper {
    position: relative;
    background: rgb(0 0 0 / 37%);
    border-radius: 10px;
}

.reply_btn {
    border: none;
    background: var(--bg-color);
    color: #fff;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 0;
    text-align: right;
    width: fit-content;
    display: flex;
    justify-content: right;
    margin-left: auto;
    cursor: pointer;
}

.reply_wrapper {
    display: none;
}

.point-btm {
    border-top: 1px solid var(--text-color2);
    width: 100%;
    padding-bottom: 0px;
    margin-top: 20px;
}

.ply-point {
    text-align: center;
    padding: 15px;
    color: #ffffff;
    font-weight: bold;
}

.point-btm ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.point-btm ul li {
    background: linear-gradient(to right, rgba(250, 137, 57, 0.9), rgba(251, 62, 109, 0.9));
    border-radius: 7px;
}

.bonus_box_dep {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    width: 208px;
    height: 50px;
    padding: 0 10px;
}

.bonus_box1 {
    background: url(../images/sidebar/mg-daily.png);
    background-size: cover;
    background-position: center;
}

.bonus_box2 {
    background: url(../images/sidebar/mg-p2e.png);
    background-size: cover;
    background-position: center;
}

.bonus_box_dep img,
.bonus_txt {
    position: relative;
    z-index: 2;
    /* This ensures the content appears above the gradient */
}

.bonus_txt {
    flex-direction: column;
    display: flex;
}

.bonus_txt a {
    color: #fff;
    font-weight: 600;
}

/* download */
.downloadbody {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.downloadbox {
    text-align: center;
    /* width: 50%; */
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}

.ndl-btn {
    background: var(--bg-color);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 150px;
}

.ndl-btn i,
.adl-btn i {
    margin-right: 7px;
}

.ndl-btn:hover,
.ndl-btn:focus {
    color: #ffffff;
    filter: brightness(1.1);
}

.adl-btn {
    background: var(--bg-color);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 150px;
}

.adl-btn:hover,
.adl-btn:focus {
    color: #ffffff;
    filter: brightness(1.1);
}

.dl {
    max-width: 500px;
    margin: auto;
    margin-top: 10px;
}

.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

.dl table th {
    border: 1px solid #6C7BA8;
    text-align: center;
    padding: 8px;
    background: var(--text-color2);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background-color: transparent;
    border: 1px solid #6C7BA8;
    color: var(--text-color2);
}

.dl .username_custom {
    color: var(--text-color2);
    font-weight: bold;
}


/* lang */
.btn_dropup_lang {
    width: 100%;
}

.btn_dropup_lang button {
    border: none;
    display: flex;
    align-items: center;
    padding-left: 19px;
    background: #fff;
    color: var(--text-color2);
    font-weight: bold;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    margin: 20px 0px 20px;
}

.btn_dropup_lang button:before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: var(--bg-color);
}

.btn_dropup_lang button img {
    margin-right: 12px;
    height: 20px;
}

.dropdown.btn_dropup_lang .dropdown-toggle::after {
    right: 15px;
    position: absolute;
}

.btn_dropup_lang.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: unset;
}

.btn_dropup_lang .dropdown-menu.show {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: var(--bg-color2);
    gap: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.btn_dropup_lang .dropdown-menu a {
    color: var(--text-color2);
    padding: 5px 17px;
    display: flex;
    font-size: 12px;
    gap: 10px;
}

.btn_dropup_lang .dropdown-menu a:hover {
    background-color: #CCD0DB;
}

.btn_dropup_lang .btn-secondary:focus {
    box-shadow: unset;
}

.btn_dropup_lang img {
    height: 20px;
}

/* 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: var(--footer-color);
    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: var(--text-color2);
}

table.vip_table tr td {
    border-left: none;
    text-align: center;
    padding: 10px;
    color: var(--text-color2);
}

.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: var(--bg-color4);
    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: var(--bg-color2);
}

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: #F5F5F5;
}

.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: var(--text-color2);
    border: none;
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--text-color2);
    font-weight: 700;
}

.promo-ttl {
    background: var(--footer-color);
    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 var(--text-color2);
    background: var(--bg-color4);
    padding: 8px 50px;
    color: var(--text-color2);
}

.vip-txt {
    color: var(--text-color2);
}

.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-color3);
    color: var(--text-color3);
    border: 2px solid var(--border-color);
}

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: #ffffff;
    font-size: 43px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 0px;
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
}

.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, var(--bg-color5) 10.77%, var(--text-color2) 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: var(--bg-color4);
    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;
    height: auto;
}

.bonus_left_box {
    background: var(--bg-color3);
    border-radius: 0.75rem;
    float: left;
    margin: 10px;
    min-height: 250px;
    position: relative;
}

.copy_overview_inner {
    padding: 10px;
}

.copy_title {
    color: var(--text-color2);
    font-size: 24px;
    min-height: 68px;
    padding: 10px 10px 0;
    font-weight: 700;
}

.copy_value_title {
    color: var(--text-color2);
    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: var(--text-color2);
    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: #F5F5F5;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
    color: #888888;
}

.bonus_right_box_top {
    background: var(--bg-color);
    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: var(--text-color);
    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: var(--bg-color);
    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: var(--text-color);
    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: var(--text-color2);
    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: var(--bg-color4);
    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: var(--text-color2);
    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: var(--text-color2);
    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: var(--bg-color4);
    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: var(--text-color2);
    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: var(--text-color2);
    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: var(--bg-color4);
    border-radius: 18px 18px 18px 18px;
    margin-top: 24px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 24px;
}

.bonus_table_title {
    color: var(--text-color2);
    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: #cad6f8;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #a1b3e7;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: var(--text-color2);
}

.bonus_box .bonus_card_overview {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bonus_card_overview_title h2 {
    color: var(--text-color2);
    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: var(--bg-color);
    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: var(--text-color);
    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: var(--bg-color4);
    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: var(--text-color2);
    display: flex;
    font-size: 30px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    position: relative;
}

.bonus_bets_number_text {
    color: var(--text-color2);
    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: var(--bg-color4);
    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: var(--bg-color);
    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: var(--bg-color);
    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: var(--text-color2);
}

.bonus_footer_overview {
    background: var(--bg-color4);
    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: var(--bg-color);
    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: var(--text-color2);
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* daily */
.home-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.home-title-text {
    font-size: 37px;
    font-family: Anton, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-color2);
}

.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;
    color: var(--text-color2);
}

.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-color2);
    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(--text-color2);
}

.daily_modal .close {
    position: absolute;
    right: 21px;
    top: 8px;
    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;
}

.home-title.prod {
    padding-top: 30px;
}

/* mission */
.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-color3);
    border: 2px solid var(--border-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 #ffffff;
}

.mission_modal .close {
    color: var(--text-color2);
    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(--bg-color);
    border: 2px solid var(--border-color);
}

.innercontainer_mission {
    min-height: 685px;
}

/* p2e */
.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, var(--text-color2) 0%, var(--bg-color5) 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(--text-color2);
}

.p2e-btn-group a:hover {
    background: var(--bg-color5);
    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: var(--text-color2);
}

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: var(--text-color2);
}

.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: var(--text-color2);
}

.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;
    min-width: 100px;
}

.dataTables_scroll {
    margin-top: 25px;
}

.p2e-table {
    max-width: 1000px !important;
}

.btn-apply {
    font-weight: bold;
    background: var(--text-color2);
    color: var(--text-color);
}

.history-play-to-earn {
    margin: 10px 0px;
}

.btn-apply:hover {
    color: #fff;
    background: var(--bg-color5);
}

.dataTables_paginate a {
    color: var(--text-color2);
}

/* wheel */
.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: 50%;
    position: absolute;
    /* bottom: 0; */
    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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: var(--bg-color5);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    gap: 5px;
    color: #fff;
    border: 2px solid var(--bg-color5);
}

a.btn-spin {
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    color: #ffffff;
    border: 2px solid var(--bg-color5);
    background: var(--bg-color);
}

.wheel-all .btn-more {
    background: var(--bg-color);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    font-size: 15px;
    color: #ffffff;
    border: 2px solid var(--bg-color5);
}

.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;
    font-weight: 500;
}

.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: -17px;
    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;
}