@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: rgb(255, 255, 255);
    background-color: rgb(35, 35, 35);
}

:root {
    --text-color: rgb(255, 255, 255);
    --text-color2: #00a844;
    --bg-color: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    --bg-color2: linear-gradient(rgb(42, 42, 42) 0%, rgb(31, 31, 31) 30%, rgb(0, 0, 0) 100%);
    --bg-color3: rgb(17, 17, 17);
    --bg-color4: #00c853;
    --bg-color5: linear-gradient(rgb(42, 42, 42) 0%, rgb(31, 31, 31) 30%, rgb(0, 0, 0) 100%);
    --bg-color6: #00a844;
    --header-color: linear-gradient(90deg, rgb(3, 3, 3) 40%, rgba(40, 40, 40, 0.6) 70%, rgb(39, 39, 39) 100%);
    --footer-color: rgb(0, 0, 0);
    --border-color:#0abf4e;
}

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(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgb(10, 191, 78);
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
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: rgb(35, 35, 35);
}

.header-wrap {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 100;
    background-image: 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;
}

.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: padding-box padding-box rgb(40, 40, 40);
    border: 2px solid transparent;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-login::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: var(--bg-color);
}

.btn-login:hover::before {
    background: linear-gradient(90deg, rgb(203, 152, 1) 0%, rgb(203, 152, 1) 50%, rgb(203, 152, 1) 100%);
}

.btn-register {
    background: var(--bg-color);
}

.sidebar-menu {
    background: var(--bg-color2);
    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-login {
    border: 0.5px solid rgba(255, 215, 0, 0);
    color: rgb(255, 255, 255);
}

.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: white;
    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,.menu-item.active {
    background-color: rgb(44, 44, 44);
}

.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: rgb(255, 255, 255);
    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: 600;
}

.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: rgb(255, 255, 255);
    margin-bottom: 5px;
}

.payment-testimonial-container {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(78, 78, 78) 100%);
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
}

.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: rgb(26, 26, 26);
    padding: 40px;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(51, 51, 51);
}

.trending-title {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
    text-transform: uppercase;
}

.trending-tabs {
    display: flex;
    gap: 15px;
    background: rgb(43, 43, 43);
    border-radius: 10px;
    padding: 10px;
}

.trending-tabs .tab-btn {
    background: transparent;
    border: none;
    color: rgb(136, 136, 136);
    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: rgb(35, 35, 35);
    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: linear-gradient(to right, rgb(1, 89, 99) 0%, rgb(1, 102, 59) 100%);
}

.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: rgb(35, 35, 35);
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    isolation: isolate;
}

.browse-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(to right, rgb(203, 152, 1) 0%, rgb(0, 104, 56) 100%);
    border-radius: 12px;
    z-index: -1;
}

.browse-btn::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgb(35, 35, 35);
    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: rgb(41, 41, 41);
}

.section-title {
    color: rgb(255, 255, 255);
    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-image: linear-gradient(rgb(26, 26, 26) 0%, rgb(26, 26, 26) 60%, rgb(35, 35, 35) 100%);
}

.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: linear-gradient(to right, rgb(0, 104, 56) 0%, rgb(69, 162, 71) 50%, rgb(234, 255, 0) 100%) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

.jack-card .number {
    max-width: 442px;
    color: rgb(255, 255, 255);
    background: rgb(254, 64, 87);
    width: 100%;
    height: 90px;
    border-radius: 10px;
    box-shadow: rgba(30, 37, 52, 0.23) 0px 16px 16px;
    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: rgb(39, 39, 39);
    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: linear-gradient(to left, rgb(0, 104, 56) 0%, rgb(92, 162, 69) 40%, rgb(255, 193, 7) 100%) text;
    -webkit-text-fill-color: transparent;
    border: 0px;
}

.game-name {
    color: white;
    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: rgb(255, 255, 255);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.jackpot-slider .swiper-button-next::after, .jackpot-slider .swiper-button-prev::after {
    content: "";
}

.tournaments {
    background: rgb(26, 26, 26);
}

.tournaments_slide {
}

.tournament-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    background: linear-gradient(to left, rgb(0, 104, 56) 0%, rgb(92, 162, 69) 40%, rgb(255, 205, 0) 100%) text;
    -webkit-text-fill-color: transparent;
    border: 0px;
}

.tournament-card {
    width: 40%;
}

.tournament-card-box {
    background: rgb(35, 35, 35);
    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: rgb(136, 136, 136);
}

.highlight {
    color: rgb(0, 255, 76);
}

.highlightend {
    color: rgb(255, 71, 87);
}

.prize-pool {
    background: rgb(255, 71, 87);
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    margin-bottom: 9px;
}

.prize-pool .amount {
    color: rgb(255, 255, 255);
    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: rgb(136, 136, 136);
    text-transform: uppercase;
}

.colon {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: bold;
    margin-top: -28px;
}

.buy-in {
    background: linear-gradient(to right, rgb(255, 215, 0), rgb(0, 166, 81));
    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: rgb(255, 255, 255);
    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: linear-gradient(90deg, rgb(43, 57, 144) 0%, rgb(0, 166, 81) 100%);
}

.reg-btn {
    position: relative;
    background: rgb(0, 0, 0);
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    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: linear-gradient(to right, rgb(203, 152, 1) 0%, rgb(0, 104, 56) 100%);
    border-radius: 12px;
    z-index: -1;
}

.recent_register {
    text-align: center;
}

.footer-nav {
    padding: 15px 0px;
    text-align: center;
    border-bottom: 1px solid rgb(35, 35, 35);
    border-top: 1px solid rgb(35, 35, 35);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgb(45, 191, 25);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: rgb(0, 166, 81);
}

.separator {
    color: rgb(45, 191, 25);
    font-size: 14px;
}

.footer_bg_wraper {
    background-color: var(--footer-color);
    padding-bottom: 80px;
}

.footer-security {
    background: rgb(0, 0, 0);
    padding: 15px 0px;
    border-top: 1px solid rgb(35, 35, 35);
}

.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: rgb(35, 35, 35);
    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: rgb(0, 166, 81);
    text-decoration: none;
    transition: color 0.3s;
}

.terms-link:hover {
    color: rgb(0, 133, 65);
}

.content-section {
    background: rgb(0, 0, 0);
    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: rgb(207, 207, 207);
    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: rgb(22, 22, 22);
    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, rgb(0, 0, 0) 40%);
}

.dot {
    width: 6px;
    height: 6px;
    background: rgb(136, 136, 136);
    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;
}

.footer_wrapper {
    width: 100%;
    position: fixed;
    bottom: 0px;
    display: flex;
    z-index: 98;
    background-image: linear-gradient(to right, rgb(40, 60, 134) 0%, rgb(0, 104, 56) 100%);
    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;
}

.inner_body .header-wrap {
    background-image: linear-gradient(90deg, rgb(3, 3, 3) 40%, rgb(40, 40, 40) 70%, rgb(39, 39, 39) 100%);
    position: fixed;
}

.innercontainer {
    max-width: 1300px;
    margin: 0px auto;
    padding: 0px 15px 25px;
}

.body_inner_bg {
    background: url(../images/index/bg.jpg) top no-repeat rgb(3 14 32);
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%) text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    width: fit-content;
}

.page_product_wrap {
    background-color: rgba(0, 0, 0, 0.71);
    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: rgba(27, 34, 51, 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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    border-radius: 10px;
    opacity: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    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(0, 0, 0, 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: rgb(255, 255, 255);
}

.pagemenu_flex a.active, .pagemenu_flex a:hover {
    background: rgb(49, 49, 49);
}

.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: rgb(17, 17, 17);
    padding: 15px;
    border-radius: 10px;
}

.product_footer_winnerbox_title {
    color: rgb(66, 163, 68);
    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: rgba(255, 255, 255, 0.7);
}

.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: rgb(0, 0, 0);
    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: rgb(10, 191, 78);
}
.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: rgb(255, 255, 255);
    border: 2px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    background: padding-box padding-box rgb(12 25 26);
    padding: 10px;
    min-width: 140px;
    text-transform: uppercase;
    min-height: 48px;
}
.game_slot_filter button.active,.game_slot_filter button:hover{
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    border: 0px solid transparent;
}
.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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
}

.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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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;
}
.page_product_text{

font-size: 12px;
}
.page_product_hr{
    
border-top: 1px solid #b79940;
    
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: rgba(0, 0, 0, 0.5);
    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: #000;
}

/* Gradient border effect */
.payment_icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    border-radius: 50%;
    z-index: 0;
}

/* Inner dark background */
.payment_icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #000000;
    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: #9BE15D; */
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%) 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(0, 0, 0, 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: #000;
}

/* Gradient border effect */
.contact_icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    border-radius: 50%;
    z-index: 0;
}

/* Inner dark background */
.contact_icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #000;
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%) text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.page_title_bottom_btm{
    margin-top: 8%;
}



.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: rgb(0 0 0);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.bonus_subtitle {
    color: #006838;
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 0;
}

.bonus_description {
    color: #000000;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.claim_button {
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    background: #0000008f;
    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 {
    color: #ffffff;
    padding: 11px 10px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    background: #00000099;
    border: 1px solid #a1d059;
    border-radius: 9px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}
.pmbox.active {
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    color: #fff;
    border: 1px solid rgb(249, 219, 96);
}
.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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    color: #000000;
    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: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 2px;
  }
  
  .promo-modal-tnc li span{
    color: #ffffff;
    margin-right: 10px;
  }
  .promo_table tr th{
    background: #198754;
    padding: 10px;
    border: 1px solid #198754;
    text-align: center;
    font-size: 12px;
    color: #fff;
  }
  .promo_table tr td{
    font-size: 12px;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #198754;
    background: #6c7ba833;
    text-align: center;
  }
  .basic-text{
    font-size: 12px;
    color: #ffffff;
  }
  .promo_table{
    width: 100%;
  }
  .promo-text {
    padding: 20px;
    background-color: #252525;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
}
.red-underline {
    margin: 10px 0 0 0;
}
.promo-body{
    
background-color: #252525;
    
border-radius: 20px;
}
.promo_ul{
    padding-left: 1rem;
    font-size: 12px;
}



.signup_container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    margin-top: 50px;
}

.signup_title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%) 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: #fff;
    font-size: 16px;
    color: #333;
}

.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: rgb(249, 219, 96);
    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: #000;
    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: #fff;
    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: #fff;
    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: #fff;
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    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: #fff;
    font-size: 14px;
    display: flex;
    align-items: baseline;
}

.resend_button {
    background: none;
    border: none;
    color: rgb(249, 219, 96);
    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: #fff;
    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: #2283f6;
    margin-bottom: 10px;
    filter: hue-rotate(270deg) brightness(2.5);
}
.success_form{
    text-align: center;
    margin: 45px 0 20px 0;
}

button.btn-tnc {
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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-color5);
    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: #ffffff;
    margin-bottom: 5px;
}

.balance-value {
    display: flex;
    font-size: 24px;
    color: #00c853;
    font-weight: bold;
    align-items: center;
    cursor: pointer;
}

.points-value {
    display: block;
    font-size: 24px;
    color: #ffffff;
    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: rgb(0 165 62);
    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: #fff;
    
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: #ffffff;
    transition: 0.3s;
    margin-bottom: 0;
    border-radius: 0;
    background-color: #00000000;
}
.wallet-menu-item.active{
    background-color: #7373733b;
}
.wallet-menu-item:hover {
    background-color: #7373733b;
}

.wallet-icon {
    width: 60px;
    height: 52px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #ffffff; /* Icon color */
    background: #00c85300;
    transition: 0.3s;
}

.wallet-menu-item.active .wallet-icon,.wallet-menu-item:hover .wallet-icon{
    background: #00c853;
}


.menu-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.deposit-container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 20px;
    background: #2121218c;
    border-radius: 10px;
    /* margin-top: 30px; */
}

.step-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: rgb(10, 191, 78);
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(10, 191, 78);
    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: #00c853;
    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: #000000;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.payment-card.active {
    border-color: #00c853;
    background: #232323;
}

.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-color4);
    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 {
    background: var(--bg-color6);
}
.deposit-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.deposit-tabs  .tab-button {
    background: #000000;
    border: none;
    padding: 7px 13px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.deposit-tabs  .tab-button.active {
    background: var(--bg-color); /* Blue color from the image */
    border: 1px solid var(--border-color);
}

.deposit-tabs  .tab-button:hover:not(.active) {
    background: #3d3d3d;
}
.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;
}
.table-share tr th {
    background-color: rgba(0, 0, 0, .3);
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.table-share tr td {
    padding: 5px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.bank_display {
    width: 82px;
    border-radius: 5px;
}
.form_wrap{
    margin-bottom: 20px;
}
.form-control {
    background-color: rgb(255 255 255);
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #000000;
}
select.form-control {
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus {
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    border: 1px solid #00c853;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #00c853;
}
[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: #198754;
    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 #00c853;
    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 #00c853;
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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;
}
.with_addbanka{
    display: flex;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    background: #00311a69;
}
.with_addbanka img{
    filter: brightness(2.5) hue-rotate(253deg);
}
.afterlogin_title{
    padding: 20px 0;
    font-size: 1.5vw;
    font-weight: 600;
}
.afterlogin_wrapper_inner{
}
.rd-color {
    font-size: 15px;
    background: none;
    border: none;
    color: #ffffff;
    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 rgb(10, 191, 78);
    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: #0abf4e;
    text-shadow: 0 1px 0 #0abf4e;
    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: linear-gradient(rgb(42, 42, 42) 0%, rgb(31, 31, 31) 30%, rgb(0, 0, 0) 100%);
    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: rgb(6 255 99);
}

.amount {
    font-size: 24px;
    font-weight: bold;
}

.warning-text {
    color: #ff4757;
    margin-bottom: 20px;
    font-size: 14px;
}

.transaction-details {
    background: #363636;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.transaction-details h3 {
    margin-bottom: 15px;
    color: white;
}

.details-grid {
    display: grid;
    gap: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #444;
}

.detail-label {
    color: #888;
}

.detail-value {
    color: white;
    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: #2121218c;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.filter-section .form-control {
    background: #198754;
    border: 1px solid rgb(10, 191, 78);
    color: white;
}

.filter-section .form-control:focus {
    background: #363636;
    border-color: rgb(10, 191, 78);
    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: rgb(10, 191, 78);
    text-align: right;
}
.btn-delete {
    color: rgb(10, 191, 78);
    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: #00ff8924;
    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: rgb(10, 191, 78);
    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: #19875457;
}
.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 #00c853;
    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: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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;
    background: linear-gradient(to right, rgb(10, 191, 78) 0%, rgb(249, 219, 96) 100%);
}

.adl-btn {
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    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;
    background: linear-gradient(to right, rgb(10, 191, 78) 0%, rgb(249, 219, 96) 100%);
}

.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 #454545;
    text-align: center;
    padding: 8px;
    background: #191b1e;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background-color: #232528;
    border: 1px solid #454545;
    color: #ffffff;
}

.dl .username_custom {
    color: #00c853;
    font-weight: bold;
}


/* lang */
.btn_dropup_lang {
    width: 100%;
}

.btn_dropup_lang button {
    border: none;
    display: flex;
    align-items: center;
    padding-left: 19px;
    background: rgb(40, 40, 40);
    color: rgb(255, 255, 255);
    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: #fff;
    padding: 5px 17px;
    display: flex;
    font-size: 12px;
    gap: 10px;
}

.btn_dropup_lang .dropdown-menu a:hover {
    background-color: #36383e;
}

.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: #2d2e35;
    border-radius: 15px;
}

.table_vip_responsive tr:first-child,.table_vip_responsive tr:first-child th.headcol {
    height: 55px;
}

.table_vip_responsive tr td,.table_vip_responsive tr th {
    height: 47px;
}

.table_vip_responsive tr th.headcol {
    display: flex;
    align-items: center;
    margin-top: 0px;
    width: 100%;
    font-weight: 400;
    padding: 10px;
    line-height: 1.3;
    padding-left: 30px;
    border: none;
    color: #fff;
}

table.vip_table tr td {
    border-left: none;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.vip_tncbtn {
    background: transparent;
    width: auto;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: #ed474b;
    border: none;
    border-radius: 10px;
    position: relative;
    border: 1px solid #485463;
    font-weight: 700;
}

.vip_title_b {
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.vip_top_head {
    margin-top: 20px;
    padding: 7px 15px;
    padding: 15px;
}

.table_vip_outwrap {
    padding: 40px 50px;
    background-color: #292929;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

hr.table_hr {
    border-top: 1px solid #5f5f5f;
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 32%;
}

table.vip_table tr {
    padding: 0 10px;
}

table.vip_table tr td span {
    font-size: 15px;
}

.vip-ico img {
    height: 60px;
}

.border_table_cus {
    border-bottom: 1px solid #1d5778;
}

table.vip_table tr.hr_cus_wrap {
    position: relative;
}

.vip_table_head {
    border-radius: 10px;
    background-color: #37393f;
}

table.vip_table {
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

table.vip_table tr.vip_colbackground_cus th,table.vip_table tr.vip_colbackground_cus td {
    background-color: #282930;
}

.head_img {
    margin-right: 7px;
    height: 25px;
}

.table_vip_responsive tr th.headcol.headcol_sub {
    font-weight: 900;
    color: #fff;
    font-size: 13px;
}

.vip_tncbtn {
    background: transparent;
    width: auto;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: rgb(10, 191, 78);
    border: none;
    border-radius: 10px;
    position: relative;
    border: 1px solid #485463;
    font-weight: 700;
}

.promo-ttl {
    background: linear-gradient(90deg, #292929 0%, #2c2e34 100%);
    border-radius: 15px 15px 0px 0px;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
}

.vip-wrap ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0px;
    list-style: none;
    padding: 0;
}

.vip-wrap ul {
}

.vip-lvl {
    display: block;
    margin: auto;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0px 0px 6px rgb(10, 191, 78);
    background: #23262b;
    padding: 8px 50px;
    color: #fff;
}

.vip-txt {
    color: rgb(10, 191, 78);
}

.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, #198754 10.77%, rgb(137 137 137) 108.33%);
    padding: 5px 12px;
    min-height: 85px;
}

/* referral */
.recom_menu_box {
    align-items: center;
    background: #151c26;
    border-radius: 14px;
    display: flex;
    width: 100%;
    padding: 15px;
    grid-gap: 15px;
}

.recom_menu_a {
    display: block;
    padding: 5px;
    border-radius: 5px;
    min-width: 78px;
    text-align: center;
    background-color: transparent;
}

.recom_menu_a.active,.recom_menu_a:hover {
    background-color: #1a55ef;
}

.recom_menu_box_txt {
    font-weight: 600;
    text-transform: uppercase;
}

.bonus_box {
    background: #292929;
    border-radius: 0.75rem;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    margin: 10px auto;
    min-height: 260px;
    padding: 0;
    position: relative;
    width: 100%;
}

.bonus_box_custom {
    grid-template-columns: 275px 1fr;
    height: auto;
}

.bonus_left_box {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 0.75rem;
    float: left;
    margin: 10px;
    min-height: 250px;
    position: relative;
}

.copy_overview_inner {
    padding: 10px;
}

.copy_title {
    color: #0abf4e;
    font-size: 24px;
    min-height: 68px;
    padding: 10px 10px 0;
    font-weight: 700;
}

.copy_value_title {
    color: #fff;
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.copy_value {
    align-items: center;
    border-radius: 0.25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    height: 34px;
    justify-content: space-between;
    letter-spacing: -.02em;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 0 0 0 0px;
    text-align: left;
}

.copybtn {
    background-color: #0abf4e;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    font-size: 15px;
    border-radius: 4px;
    color: #ffffff;
}

.copy_value input {
    height: 34px;
    background-color: #3b3b3b;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
    color: #fff;
}

.bonus_right_box_top {
    background: #393939;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    min-height: 108px;
    padding: 10px 16px;
    border-radius: 0.75rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bonus_data_block {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.bonus_data_block h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 20px;
    margin-top: 18px;
    text-align: center;
}

.bonus_data_block span {
    line-height: 40px;
    font-weight: 600;
}

.bonus_right_box_bottom {
    background: linear-gradient(95deg,#393939,#101010);
    display: grid;
    justify-items: flex-start;
    margin-bottom: 10px;
    margin-top: 15px;
    min-height: 140px;
    position: relative;
    border-radius: 0.75rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    grid-template-columns: minmax(120px,240px) 90px 2fr;
    align-items: center;
    grid-gap: 30px;
}

.bonus_plan_title {
    align-items: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-style: italic;
    margin: 0 auto;
    padding-left: 30px;
    max-width: 240px;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
}

.bonus_plan_txt {
    min-width: 150px;
    display: flex;
    grid-column-end: auto;
    grid-column-start: auto;
    align-items: center;
    color: #0abf4e;
    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: #0abf4e;
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
}

.bonus_card_overview_title {
    margin: 0 auto;
    padding: 0;
}

.bonus_card_overview_title h2 {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 700;
}

.bonus_card_overview_inner {
    display: flex;
    color: #fff;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 98px;
    position: relative;
}

.bonus_card_item {
    align-items: center;
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 8px;
    display: flex;
    width: 32%;
}

.bonus_card_item_icon {
    margin: 0 10px;
    position: relative;
    width: 80px;
}

.bonus_card_item_div {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}

.bonus_card_item_title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}

.bonus_card_item_number {
    color: #0abf4e;
    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: #0abf4e;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 700;
}

.bonus_content_box {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
}

.bonus_left_content_box {
    padding: 30px 0 30px 30px;
    width: 45%;
}

.bonus_left_title {
    color: #0abf4e;
    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: #0abf4e;
    font-size: 16px;
    font-weight: 900;
}

.bonus_right_content_box {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
}

.bonus_right_content_box img {
    width: 270px;
    padding: 10px;
}

.bonus_invite_list {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 18px 18px 18px 18px;
    margin-top: 24px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 24px;
}

.bonus_table_title {
    color: #0abf4e;
    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: #a8ffc9;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #1ae767;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: #0abf4e;
}

.bonus_box .bonus_card_overview {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bonus_card_overview_title h2 {
    color: #0abf4e;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.questiontool_wrap {
    position: relative;
}

.bonus_bets_box {
    background-image: linear-gradient(95deg,#393939,#101010);
    border-radius: 8px;
    margin-top: 20px;
    min-height: 620px;
    padding-bottom: 20px;
    width: 100%;
}

.bonus_bets_top {
    display: flex;
    justify-content: space-around;
}

.bonus_bets_top_left {
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    padding-left: 35px;
    width: 49%;
}

.bonus_bets_bgc {
    background-color: hsla(0,0%,100%,.1);
    border-radius: 10px;
    padding: 20px 20px 25px 25px;
    font-weight: 600;
}

.bonus_bets_desc {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.bonus_bets_top_example {
    color: #fff;
    line-height: 26px;
    margin-top: 10px;
    padding-right: 12px;
    width: 100%;
    margin-bottom: 0;
}

.bonus_bets_top_example_title {
    font-size: 16px;
    margin-bottom: 0;
}

.bonus_bets_top_example_desc {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 0;
}

.bonus_bets_top_right {
    align-items: center;
    justify-content: center;
    position: relative;
    width: 49%;
    display: flex;
}

.bonus_card_overview_desc {
    color: #adb6c4;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px auto;
}

.bonus_bets_top_right img {
    width: 75%;
    padding: 10px;
}

.bonus_bets_bottom {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding: 20px;
    flex-wrap: nowrap;
}

.bonus_bets_bottom_box {
    background-color: rgb(41 41 41);
    border-radius: 15px 15px 15px 15px;
    box-sizing: border-box;
    padding: 20px
}

.bonus_bets_bottom_left {
    width: 48%;
}

.bonus_bets_bottom_right {
    width: 48%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bonus_bets_bottom_right h2 {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    height: 30px;
    justify-content: center;
}

.bonus_bets_number {
    position: relative;
    align-items: center;
    color: #0abf4e;
    display: flex;
    font-size: 30px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    position: relative;
}

.bonus_bets_number_text {
    color: #adb6c4;
    font-weight: 600;
    height: 30px;
    text-align: center;
    margin-bottom: 0;
}

.bonus_ranking_overview {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    position: relative;
    width: 100%;
}

.bonus_ranking_inner {
    grid-column-gap: 10px;
    color: #fff;
    display: grid;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
}

.bonus_ranking_item {
    background: linear-gradient(180deg, #393939, #101010);
    border-radius: 0.75rem;
    display: grid;
    min-height: 110px;
    padding: 10px;
}

.bonus_item_title {
    color: #fff;
    font-size: 22px;
    height: 42px;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

.bonus_ranking_data {
    background: linear-gradient(95deg,#393939,#101010);
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    margin: 0 auto;
    min-height: 280px;
    width: 100%;
}

.bonus_ranking_level2 {
    padding-top: 80px;
}

.bonus_ranking_level1 {
    padding-top: 20px;
}

.bonus_ranking_level3 {
    padding-top: 80px;
}

.bonus_userinfo_body {
    display: grid;
    font-size: 10px;
    grid-template-rows: 30px 100px 20px 20px;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.bonus_userinfo_ranking_level {
    font-size: 12px;
    padding-top: 15px;
}

.bonus_ranking_level2 .bonus_userinfo_ranking_level {
    background: linear-gradient(180deg,#f39d42,#9ea8ba);
    -webkit-background-clip: text;
    color: transparent;
}

.bonus_userinfo_avatar_bg {
    border: 1px solid #f39d42;
    border-radius: 50%;
    display: block;
    height: 80px;
    margin: 10px auto;
    overflow: hidden;
    padding: 3px;
    position: relative;
    width: 80px;
}

.bonus_userinfo_body .bonus_userinfo_score,.bonus_userinfo_body .bonus_userinfo_username {
    align-items: center;
    color: #fff;
    display: block;
    justify-content: center;
    margin: 10px auto;
    text-align: center;
    transform: scale(.8);
    font-size: 16px;
}

.bonus_userinfo_body .bonus_userinfo_score {
    color: #fde403;
}

.bonus_ranking_lottery {
    grid-gap: 10px;
    display: grid;
    margin: 0 auto;
    min-height: 280px;
    padding: 0 8px;
    width: 100%;
}

.bonus_lottery_item {
    background: linear-gradient(95deg,#393939,#101010);
    border-radius: 0.25rem;
    color: #3f526e;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    font-size: 10px;
    grid-template-columns: minmax(60px,100px) 1fr 100px;
    margin: 0 auto;
    min-height: 50px;
    padding: 0 10px;
    position: relative;
    width: 100%;
}

.bonus_lottery_item div {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 12px 3px;
    text-align: center;
    font-size: 16px;
}

.bonus_username {
    color: #ffffff;
}

.bonus_yellow {
    color: #0abf4e;
}

.bonus_footer_overview {
    background: #292929;
    border-radius: 15px;
    display: flex;
    margin-bottom: 30px;
    opacity: 1;
    padding: 15px 15px 15px 24px;
    flex-direction: row;
}

.bonus_footer_left {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 315px;
}

.bonus_footer_right {
    flex: 1 1;
    width: 100%;
    margin-left: 25px;
}

.bonus_footer_right .bonus_footer_right_content {
    background: linear-gradient(95deg,#393939,#101010);
    border-radius: 15px;
    height: 100%;
    opacity: 1;
    padding: 26px 23px 18px 29px;
    width: 100%;
}

.bonus_footer_right_content .bonus_footer_right_text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.bonus_footer_last_text {
    margin-bottom: 0;
}

.bonus_footer_right_href {
    color: #0abf4e;
    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: #00a844;
    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, #00c853 0%, #198754 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: #0abf4e;
}

.p2e-btn-group a:hover {
    background: #198754;
    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: #00c853;
}

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: #00c853;
}

.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: #00c853;
}

.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: #0abf4e;
    color: var(--text-color);
}

.history-play-to-earn {
    margin: 10px 0px;
}

.btn-apply:hover {
    color: #fff;
    background: #198754;
}
.dataTables_paginate a{
    color: #00c853;
}

/* 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: #198754;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    gap: 5px;
    color: #fff;
    border: 2px solid rgb(10, 191, 78);
}

a.btn-spin {
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    color: #ffffff;
    border: 2px solid #00c853;
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
}

.wheel-all .btn-more {
    background: linear-gradient(to right, rgb(249, 219, 96) 0%, rgb(10, 191, 78) 100%);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    font-size: 15px;
    color: #ffffff;
    border: 2px solid #00c853;
}

.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;
}



.announcementpopupimg img {
    /* width: 400px; */
    margin: auto;
    border-radius: 5px;
}

#announcementpopup .carousel-control-prev {
    left: -22px;
}

#announcementpopup .carousel-control-next {
    right: -22px;
}

.announcementmodal.modal {
    z-index: 999999;
}

.announcementmodal .modal-content {
    position: relative;
}

.announcementmodal .close {
    right: 0;
    bottom: -42px;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 47%;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.8;
    padding: 8px;
}

.announcementmodal.detectannouncementmodal02 .close {
    position: absolute;
    right: 55px;
    top: 20px;

}

.announcementmodal .modal-content {
    background-color: transparent;
    border: none;
}


.announcementmodal .modal-dialog {
    max-width: 500px;
}

.annou-pop {
    border-radius: 20px;
    background: #000;
    padding: 20px;
    color: #fff;
    border: 1px solid #0abf4e;
}

.annou-ttle {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid #0abf4e;
    padding-bottom: 7px;
}

.annou-content {
    padding-top: 25px;
    font-size: 12px;
}

.announcementmodal .modal_close {
    z-index: 10;
    color: #fff;
    opacity: 1;
}

.annou-content img {
    display: block;
    margin: 0px auto;
}

.annou-pop p {
    margin-top: 20px;
    margin-bottom: 0px;
}
.round {
  position: relative;
  margin-right: 10px;
  height: 16px;
}

.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
  margin: 0px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 1px;
  opacity: 0;
  position: absolute;
  top: 3px;
  transform: rotate(-45deg);
  width: 12px;
}

.round input[type="checkbox"] {
  visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
  background-color: #2283f6;
  border-color: #2283f6;
}

.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.cls-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 12px;
    color: #fff;
}

.marwrap{
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: space-between;
    text-align: center;
    margin: 5px 0;
    padding: 0 20px;
}
.marwrap i{
    color: rgb(10, 191, 78);
    font-size: 18px;
    width: 26px;
}
.marqueefy_custom {
    background-color: transparent;
    padding: 5px 0;
    width: 95%;
    pointer-events: none;
}
.marqueefy_custom .content {
    color: #fff;
    font-size: 13px;
}