@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --header-bg: #071a29;
    --border-color: #245c76;
    --primary-btn: #b7ecfc;
    --secondary-btn: #f5f9ff;
    --secondary-border: #7df9ff;
    --gradient-btn: linear-gradient(180deg, #33bbff 25%, rgb(38 153 255) 100%);
    --btn-hover-border: #2aa35f;
    --box-bg: #e8eef7;
    --primary-font: #2698FF;
    --secondary-font: #245c76;
    --green-color: #3c8edf;
    --menu-gradient: linear-gradient(180deg, rgb(217 226 243) 50%, rgb(255 255 255) 100%);
    --font-color: #fff;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    margin: 0 auto;
    color: #ffffff;
    background: #061a2b;
    background-size: 100%;
	line-height: 1.3;
}

/* Accessibility utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.skip-to-main-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border: 2px solid #fff;
}

.skip-to-main-content:focus {
    top: 0;
    color: #fff;
}

/* Focus indicators for better keyboard navigation */
*:focus {
    outline: 2px solid #fed700;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    outline-offset: 2px;
}

@font-face {
    font-family: "SamsungOne";
    src: url("../font/New folder/SamsungOne-400.woff2") format('woff2'),
        url("../font/SamsungOne-400.woff") format('woff'),
        url("../font/New folder/SamsungOne-Font/SamsungOne-400.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SamsungOne";
    src: url("../font/New folder/SamsungOne-700.woff2") format('woff2'),
        url("../font/SamsungOne-700.woff") format('woff'),
        url("../font/New folder/SamsungOne-Font/SamsungOne-700.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SamsungSharpSans";
    src: url("../font/New folder/Samsung-Sharp-Sans-Font/samsungsharpsans.otf") format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SamsungSharpSans";
    src: url("../font/New folder/Samsung-Sharp-Sans-Font/samsungsharpsans-medium.otf") format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SamsungSharpSans";
    src: url("../font/New folder/Samsung-Sharp-Sans-Font/samsungsharpsans-bold.otf") format('opentype'),
        url("../font/SamsungSharpSans-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    background: #061a2b url("../images/bg.jpg")no-repeat top center;
	background-size: cover;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.left_menu_container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.table_vip_responsive::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-font);
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

select:focus-visible {
    outline: unset;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

a {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
}

a:hover,
a:focus {
    text-decoration: none;
    color: unset;
}

img {
    max-width: 100%;
}

ul,
ol,
li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
    color: #ffffff;
    width: 100%;
}

button:focus {
    outline: unset
}

body.body_main_wrap {
    padding-left: 0;
    padding-top: 64px;
    transition: padding .1s ease-in-out;
}

body.body_main_wrap.body_main_container {
    padding-left: 230px;
    transition: padding .1s ease-in-out;
}

header {
    background: var(--header-bg);
    backdrop-filter: blur(5px);
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
    z-index: 104;
    border-bottom: 1px solid var(--border-color);
}

.header_left {
    display: flex;
    align-items: center;
    z-index: 1;
}

.logo_desktop {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.header_hamburger {
    background-color: transparent;
    border: none;
}

a.logo img {
    height: 60px;
}
.header_hamburger img {
	max-height: 20px;
}
.ham_close {
    display: block;
}

.ham_open {
    display: none;
}

.header_hamburger.close_menu .ham_close {
    display: none;
}

.header_hamburger.close_menu .ham_open {
    display: block;
}

.login_btn_container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn_container {
    font-size: 12px;
    padding: 1px 20px;
    font-weight: 400;
    border: none;
	height: 35px;
    color: #000;
    border-radius: 5px;
}

.btn_log {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
}

.btn_reg {
    background: #fff;
    color: #318a90;
    border: none;
}

.header_right {
    display: flex;
    align-items: center;
}

.chat_btn {
	position: relative;
    background-color: transparent;
    border: none;
}
button.chat_btn img {
    height: 22px;
}
.chat_btn.active::after {
    content: '';
    background: #FF0004;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    top: 2px;
}

.intro {
    display: flex;
    align-items: center;
    position: relative;
    /* min-height: 308px; */
}

.intro_inner {
    margin-top: 0;
    z-index: 1;
    max-width: 550px;
}

.intro_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-btn);
}

.intro_title span {
    color: #ed234b;
}

.intro_subtitle {
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 23px;
}

.intro_actions {
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

.btn_action {
    border-radius: 14px;
    font-size: 18px;
    padding: 20px;
    border: none;
    font-weight: 500;
}

.btn_action_left {
    background: var(--gradient-btn);
    color: #fff;
}

.btn_action_right {
    background: var(--primary-btn);
    color: #fff;
    border: 1px solid transparent;
}

.btn_action_left:hover {
    background-color: #eb3b60;
}

.btn_action_right:hover {
    background-color: #42526a;
}

.intro_img {
    position: absolute;
    right: -118px;
    top: 0;
    bottom: 0;
    height: 100%;
    cursor: pointer;
}

.wrapper_inner {
    overflow: hidden;
}

.intro_promo {
    background: radial-gradient(circle, rgba(55, 136, 107, 1) 0%, rgba(55, 93, 79, 1) 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 10px;
    padding: 10px;
    grid-gap: 10px;
}

.intro_promo_inn {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #202a39;
    backdrop-filter: blur(5px);
}

.intro_promo_inn img {
    border-radius: 5px;
    width: 100%;
}

.intro_promo_inn span {
    position: absolute;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin-left: 20px;
}

.left_menu_container_wrap {
    position: fixed;
    z-index: 103;
    left: 0;
    top: 0;
    bottom: 0;
    width: 232px;
    background: #051626;
    backdrop-filter: blur(5px);
    padding-top: 75px;
    transition: transform 0.1s ease-in-out;
    transform: translateX(0%);
}

.left_menu_container_wrap.close_menu_container {
    transform: translateX(-100%);
}

.left_menu_container {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.left_menu_container_inner {
    padding: 15px;
}

.left_container_bonus {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    background: linear-gradient(130deg, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
}

.left_container_bonus_box {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
	height: 57px;
}
.left_container_bonus_box.fortune-twist {
    background: linear-gradient(90deg, rgba(163, 93, 253, 1) 0%, rgba(69, 42, 168, 1) 100%);
}
.left_container_bonus_box.promo {
    background: linear-gradient(90deg,rgba(73, 148, 255, 1) 0%, rgba(14, 62, 136, 1) 100%);
}
.left_container_bonus_box.reward {
    background: linear-gradient(90deg,rgba(255, 180, 0, 1) 0%, rgba(224, 130, 0, 1) 100%);
}
.animate-icon {
    position: absolute;
    right: -6%;
    max-width: 46%;
}
.promo .animate-icon {
    position: absolute;
    right: -2%;
    max-width: 52%;
}
.reward .animate-icon {
    position: absolute;
    right: -6%;
    top: -16%;
    max-width: 50%;
}

.left_container_bonus_txt {
    position: absolute;
    flex-direction: column;
    display: flex;
}

.left_container_bonus_txt_top {
    font-weight: 700;
}

.left_container_bonus_txt_btm {
    font-weight: 400;
    font-size: 13px;
    color: #ffffff;
    font-weight: bold;
    padding: 0px 8px;
    white-space: nowrap;
    /* text-shadow: 1px 1px #00000047; */
}

.chat_ser {
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 2px 10px;
    color: #ffffff;
    margin: 20px 0 10px 0;
    /* background: #174934; */
    border-radius: 10px;
}

.chat_ser:hover {
    color: #fff;
}

.chat_ser img {
    width: 35px;
    margin-right: 6px;
    padding: 5px;
}

.btn_dropup_lang {
    width: 100%;
    /* margin-top: 20px; */
}

.btn_dropup_lang button {
    background: none;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* padding-left: 19px; */
}

.btn_dropup_lang button img {
	margin-right: 7px;
    height: 24px;
    filter: none;
}

.btn_dropup_lang .dropdown-toggle::after {
    right: 7px;
    position: absolute;
    font-size: 19px;
}

.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;
    gap: 5px;
    background: none;
}
.btn_dropup_lang .btn-secondary:focus {
    box-shadow: unset;
}

.btn_dropup_lang img {
    height: 30px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(29%) saturate(307%) hue-rotate(185deg) brightness(94%) contrast(84%);
}

.sidebar_contact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    margin: 20px 0;
    grid-gap: 10px;
}

.sidebar_contact img {
    height: 25px;
}

.sidebar_contact a {
    display: block;
}

.sidebar_contact a i {
    color: #55657e;
    font-size: 19px;
}

.index-wrapper .tab-content {
    display: none;
    background: linear-gradient(130deg, rgb(255 255 255 / 5%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
    border: 1px solid #1b485f;
    border-top: none;
	border-radius: 0 0 5px 5px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.filter-button {
    cursor: pointer;
    padding: 4px 11px;
    background-color: transparent;
    border: none;
    color: var(--border-color);
    font-weight: 500;
    border-radius: 10px;
    font-size: 13px;
    position: relative;
}

.filter-button.active .menu-button,
.filter-button:hover .menu-button {
    background: none;
    color: #7df9ff;
}

.filter-button .menu-button img {
    max-width: 35px;
}

.tabs_product {
    margin: 15px 0;
}

.index-wrapper .tab_wrapper {
    display: flex !important;
    align-items: center;
    box-shadow: inset 0 0 5px 1px #0b3155;
    background: linear-gradient(180deg, rgba(10, 30, 49, 1) 0%, rgba(14, 37, 59, 1) 38%, rgba(13, 35, 56, 1) 72%, rgba(10, 30, 49, 1) 100%);
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #1b485f;
    padding: 0px;
    justify-content: space-between;
}

.searchinput {
    background-color: #174934;
    border: 1px solid #186444;
    border-radius: 10px;
    padding: 4px 10px;
}

.hotgame-main-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* box-shadow: 0px 3px 4px 0px #0ea462, 0px -1px 4px 0px #0ea462; */
    /* border: 1px solid #0ea462; */
}

.top_icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
}

.arrow_slider {
    display: flex;
    grid-gap: 6px;
    margin: 10px 0;
}

.arrow_slider .slide-arrow {
    cursor: pointer;
    background: var(--gradient-btn);
    padding: 6px 13px;
    border-radius: 8px;
    color: #000;
    border: 1px solid var(--border-color);
}

.slider_title {
    color: #7df9ff;
    display: flex;
    align-items: center;
    font-weight: 500;
	text-transform: uppercase;
    margin-bottom: 10px;
    gap: 10px;
}

.slider_title i {
    margin-right: 10px;
}

.arrow_slider_wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow_slider_wrp.slot-all {
    justify-content: flex-end;
}

.view_btn {
    color: #000;
    display: flex;
    align-items: center;
    font-weight: 600;
    background: var(--gradient-btn);
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 12px;
    border: 1px solid var(--border-color);
}

.hotgame-main-img_pro {
    background: var(--box-bg);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    padding: 10px;
}

.daily_icon {
    width: 25px;
    margin-right: 10px;
}

.tournament_sec {
    margin-bottom: 15px;
}

.daily_wrap_img img {
    width: 100%;
}

.daily_wrap {
    padding: 0;
}

.daily_wrap_img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    /* margin-bottom: -10px; */
    position: relative;
}

.daily_table_wrap {
    background: var(--box-bg);
    backdrop-filter: blur(5px);
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.battle_card_title {
    font-size: 20px;
    max-height: 52px;
    max-width: 160px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 17px;
}

.daily_wrap_img_inn {
    padding: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.battle_card_timer {
    padding: 9px 15px;
    width: 160px;
    height: 51px;
    background: hsla(0, 0%, 100%, .18);
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.battle_card_label {
    position: absolute;
    left: -1px;
    top: -2px;
    transform: translateY(-50%);
    font-weight: 800;
    font-size: 9px;
    line-height: 120%;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #000;
    opacity: .9;
    background: #fed700;
    border-radius: 8px 8px 8px 0;
    padding: 2px 6px;
    white-space: nowrap;
}

.battle_card_timer_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.battle_card_block_value {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -.02em;
    font-feature-settings: "tnum" on, "lnum" on;
    color: #fff;
}

.battle_card_block_name {
    color: #ffffffb8;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
}

.battle_card_timer_dot {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.02em;
    font-feature-settings: "tnum" on, "lnum" on;
    color: #fff;
    align-self: flex-start;
}

.battle_card_prize {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: #fed700;
    box-shadow: 0 6.88237px 13.1093px -6.88237px rgba(0, 0, 0, .08);
    border-radius: 8px;
    font-weight: 800;
    color: #000;
    height: 36px;
    width: fit-content;
}

.battle_card_prize_title {
    font-size: 9px;
    line-height: 120%;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .9;
    width: 32px;
    margin-right: 6px;
    white-space: pre-line;
    flex-shrink: 0;
}

.battle_card_prize_amount {
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -.02em;
    font-feature-settings: "tnum" on, "lnum" on;
    font-weight: 800;

}

.daily_table_wrap table thead tr {
    color: var(--secondary-border);
    font-size: 11px;
    /* font-weight: 600; */
}

.daily_table_wrap table img {
    width: 27px;
}

.table_user {
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
}

.table_user_content {
    display: flex;
    flex-direction: column;
}

.table_user_content span {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -.02em;
    color: var(--primary-btn);
    font-weight: 500;
}

.table_user_content span.name {
    color: var(--secondary-border);
}

.daily_table_wrap table tr th {
    padding: 5px;
}

.daily_table_wrap table tr {
    border-bottom: 1px solid #97969b;
}

.daily_view {

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px 5px 5px;
    gap: 10px;
}

.daily_view a {
    font-weight: 500;
    font-size: 12px;
    min-width: 150px;
    text-transform: uppercase;
}

.btn-more {
    background: var(--gradient-btn);
    /* color: #000; */
    border-radius: 5px;
    padding: 5px 10px;
    /* border: 1px solid var(--border-color); */
}

.btn-challenge {
    border-radius: 5px;
    padding: 5px 10px;
    background: var(--gradient-btn);
    /* border: 1px solid var(--border-color); */
}

.desktop_footer {
    margin-top: 20px;
    background: #031521;
    backdrop-filter: blur(5px);
    padding: 40px 10px 10px 10px;
}

.footer_grid {
    display: grid;
    grid-gap: 15px;
    gap: 50px;
    grid-template-columns: 50% auto;
    align-items: flex-start;
    padding-bottom: 30px;
    padding-left: 50px;
}

.footer_submenu p {
    color: #b2b2b2;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 16px;
    display: block;
    font-size: 11px;
}

.footer_submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_submenu ul a {
    padding: 0;
    border: none;
    background-color: transparent;
    display: block;
    width: 100%;
    text-align: left;
    color: #7d7d7d;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
    font-size: 11px;
    line-height: 2.2;
    cursor: pointer;
}

.footer_submenu ul a:hover {
    color: #7df9ff;
}

.footer_submenu_lic {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 8px;
}

.footer_submenu_lic img {
    width: 94px;
}

.footer_submenu_con {
    color: #737373;
    font-size: 12px;
    line-height: 2;
}

.footer_lic_logo {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid #272f3c;
    display: flex;
    justify-content: center;
}

.footer_lic_logo img {
    width: 120px;
    /* filter: brightness(0) saturate(100%) invert(24%) sepia(27%) saturate(2418%) hue-rotate(356deg) brightness(98%) contrast(87%); */
    opacity: 0.7;
}

.footer_social_logo {
    padding-bottom: 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid #272f3c;
    display: flex;
    justify-content: left;
    grid-gap: 7px;
}

.footer_social_logo img {
    width: 28px;
}

.footer_copyright {
    font-size: 11px;
    color: #565656;
    font-weight: 600;
    text-align: center;
	padding: 15px 0;
}

.mobile_footer {
    display: none;
    margin-top: 20px;
    background-color: #312717;
    padding: 18px 10px 60px 10px;
}

.footer-card p {
    color: #93acd3;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 16px;
    display: block;
    font-size: 11px;
}

.footer-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button.btn-footer::after {
    content: '\f054';
    font-size: 10px;
    line-height: 1;
    position: absolute;
    right: 17px;
    top: 10px;
    transform: rotate(270deg);
    transition: all 0.3s;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}

button.btn-footer.collapsed::after {
    content: '\f054';
    transform: rotate(90deg);
    transition: all 0.3s;
    font-weight: 900;
}

button.btn-footer {
    background: #453a29;
    width: 100%;
    text-align: left;
    font-size: 11px;
    padding: 6px;
    color: #fff;
    border: none;
    border-radius: 5px;
    position: relative;
    font-weight: 500;
}

button.btn-footer.collapsed {
    background: #453a29;
    color: #fff;
}

.footer-card ul li a {
    padding: 0;
    border: none;
    background-color: transparent;
    display: block;
    width: 100%;
    text-align: left;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
    font-size: 11px;
    line-height: 2.2;
    cursor: pointer;
}

.mobile_footer .footer_submenu_lic {
    justify-content: center;
}

.mobile_footer .footer_lic_logo img {
    width: 85px;
}

.mobile_footer .footer_lic_logo_wrap {
    text-align: center;
}

.mobile_footer .footer_social_logo {
    display: flex;
    flex-flow: wrap;
}

.footer-menu {
    position: fixed;
    bottom: 0px;
    background: #051728 url(../images/btm-menu-bg.png) no-repeat top center;
    background-size: 100%;
    border-top: 1px solid #2c5883;
    z-index: 9;
    width: 100%;
}
.footer-in ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 5px 0px 10px;
    justify-content: center;
    align-items: end;
    text-transform: uppercase;
}
.footer-in ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #b7ecfc;
	grid-gap: 4px;
}
.footer-in ul li {
    position: relative;
    text-align: center;
}
.footer-in ul li a .mbm-img {
    width: 35px;
    margin: 0 auto;
}
.footer-in ul li a .mbm-img.wallet {
    position: absolute;
    left: 0;
    right: 0;
    width: 60px;
    bottom: 100%;
}
.mbmtext {
    height: 22px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-menu {
    display: none;
}

.footer-in ul li a:not([href]):not([tabindex]) {
    color: #93acd3;
    text-decoration: none;
}

.modalbackdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: black;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modal-transition {
    transition: all 0.4s ease;
}

.mobile_dropdown {
    background-color: #1b140b;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    border-radius: 10px;
    display: none;
    position: relative;
}

.mobile_dropdown img {
    width: 33px;
}

.tab_wrapper_inn_mobile ul {
    padding: 10px;
    background-color: #303a48;
    border-radius: 10px;
}

.tab_wrapper_inn_mobile ul li .filter-button {
    width: 100%;
    text-align: left;
    padding: 10px;
    background-color: #303a48;
}

.tab_wrapper_inn_mobile ul li .filter-button.active {
    background-color: #2283f6;
}

.mobile_dropdown:after {
    content: '\f078';
    font-size: 13px;
    line-height: 1;
    position: absolute;
    right: 17px;
    transition: all 0.3s;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    color: #93acb6;
}

.mobile_dropdown-slots:after {
    content: '\f078';
    font-size: 13px;
    line-height: 1;
    position: absolute;
    right: 17px;
    transition: all 0.3s;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    color: #93acb6;
}

.mobile_dropdown-slots {
    background-color: #171f2b;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    border-radius: 10px;
    display: none;
    position: relative;
}

.mobile_dropdown-slots img {
    height: 33px;
}

.tab_wrapper-slots {
    display: flex;
    align-items: center;
    background-color: #171f2b;
    border-radius: 10px;
    padding: 10px;
    justify-content: space-between;
}

.tab_wrapper-slots img {
    height: 35px;
    margin: 0px;
}

.filter-button-slots img {
    width: auto;
    filter: drop-shadow(1px 1px 0 black);
}

.slot-wrap .filter-button {
    padding: 4px 10px;
    border: none;
    min-width: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detect_id_tab {
    /* margin-bottom: 15px; */
}

.tab_wrapper-slots {
    align-items: baseline;
}

.tab_wrapper_inn.slot-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.slot-wrap .filter-button {
    padding: 4px 0px;
    border: none;
}

.share_modal .modal-body {
    backdrop-filter: blur(5px);
    padding: 0;
    border-radius: 17px;
}

.share_modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--border-color);
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
    top: 0;
    position: absolute;
    right: 8px;
}

.modal_body_share {
    display: flex;
}

.share_modal .modal-dialog {
    max-width: 700px;
}

.modal_head {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    color: #fff;
}

.modal_body_share_left {
    width: 50%;
}

.modal_body_share_left img {
    border-radius: 10px 0px 0px 10px;
}

.modal_body_right {
    padding: 32px;
    width: 50%;
}

.modalhead_btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    text-decoration: none;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
    justify-content: flex-start;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-color .1s ease-in-out;
    border: 2px solid transparent;
    color: var(--border-color);
    background-color: transparent;
    font-size: 12px;
    border-radius: 10px;
    padding: 5px 10px;
    border-radius: 3rem;
}

.modalhead_btn.active {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
}

.share_modal .modal-content {
    background-color: #e8eef7;
    border: none;
    border-radius: .7rem;
}

.input_inner {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: color .1s ease-in-out, border-color .1s ease-in-out;
    height: 44px;
    border-radius: 10px;
    padding: 0 14px;
    margin-bottom: 10px;
}

.input_inner i {
    color: var(--border-color);
    margin-right: 10px;
}

.code {
    max-width: 102px;
    overflow: hidden;
}

.verification-code {
    padding-right: 0;
    overflow: hidden;
}

.verification-code img {
    height: 50px;
}

.input_custom {
    width: 0;
    flex: 1 1;
    display: block;
    font-weight: 600;
    color: #757575;
    outline: none;
    line-height: 20px;
    font-size: 14px;
    padding: 0;
    border: none;
    height: auto;
    max-width: 100%;
    background-color: transparent;
}

.input_inner_forgot a {
    border-bottom: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--border-color) !important;
}

.btn_login_modal {
    background: var(--gradient-btn);
    color: #fff;
    padding: 7px;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin: 20px 0;
}

.inn_slider_wrp {
    margin: 15px 0 0 0;
}

.inn_product_wrap {
    display: grid;
    grid-gap: 20px;
    margin: 10px 0 0 0;
    flex-flow: wrap;
    grid-template-columns: repeat(6, 1fr);
}

.inn_product_wrap a {
    display: block;
    position: relative;
}

.inn_product_wrap a img {
    width: 100%;
}

.game-preview__hover {
    background-color: rgba(27, 34, 51, .8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 19px 10px 13px;
    transition: opacity .1s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    transform: translateZ(1px);
    border-radius: 8px;
}

.game-preview__btn-play {
    width: calc(35% + 15px);
    min-width: 42px;
    background-color: red;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.9);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inn_product_wrap a:hover .game-preview__btn-play,
.inn_product_wrap a:hover .game-preview__hover {
    opacity: 1;
}

.game-preview__btn-play:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.game-preview__btn-play i {
    color: #fff;
    font-size: 20px;
}

.content_header {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

.content_header_txt {
    color: #fff;
    max-width: 400px;
    font-size: 15px;
    line-height: 1.3;
    margin: auto;
    position: absolute;
    bottom: 18px;
    font-weight: 500;
}

.intro_promotion {
    min-height: 150px;
}

.intro_promotion_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--primary-btn);
}

.intro_promotion_subtitle {
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    color: var(--border-color);
    margin-bottom: 5px;
}

.mobile_promo {
    display: none;
}

.filter-list li {
    position: relative;
    display: inline-block;
    padding: 6px 20px;
    margin: 0 2px;
    margin-bottom: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.filter-list li {
    color: #fff;
}

.filter-list li:hover {
    background: var(--gradient-btn);
    color: #fff;
}

.filter-list li.mixitup-control-active,
.filter-list li:hover {
    background: var(--primary-btn);
    ;
    color: #000;
    box-shadow: 0 0 2px 2px inset #f6ea86;
}

.select-menu select {
    width: 100%;
    height: 40px;
    line-height: 35px;
    background-color: #171f2b;
    border: solid 1px #252a32;
    border-radius: 9px;
    color: #fff;
}

.promo_filter_wrap {
    display: flex;
    align-items: center;
    background-color: #000e097d;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 8px;
    justify-content: space-between;
}

.promo_box_wrap {
	position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.promo_box_wrap img {
    width: 100%;
}

.promo_box_wrap_inn {
    padding: 15px;
    background-color: #0c263b;
    box-shadow: inset 0 0 8px 1px #15446b;
}
.prmbox-title {
    text-align: left;
    color: #c9c7c8;
    height: 43px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.promo_box_wrap_inn span {
    color: #868686;
    font-size: 13px;
}

.promo_box_wrap_a {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.apply-btn {
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-top: 11px;
    background: #fff;
    font-weight: 500;
    text-align: center;
    background: var(--gradient-btn);
    box-shadow: 0px 3px 2px #00000014;
}
.apply-btn:hover {
    color: #919ebe;
    background: #fff;
}
.learn-btn {
    padding: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-top: 11px;
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
    box-shadow: 0px 3px 2px #00000014;
}
a.learn-btn:hover {
    background: #03151f;
    color: #7df9ff;
    border: 1px solid #1a2d3a;
    box-shadow: inset 0 0 7px 0px #15446b;
}

.filt-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    margin: 30px 0;
}

.modal-dialog.promo {
    max-width: 800px !important;
    border-radius: 20px;
}

.modal-content.promo {
    border: none;
    background: var(--box-bg);
    border-top-left-radius: 20px;
    box-shadow: 0px 0px 10px var(--border-color);
    border-top-right-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: #fff;
}

.grlist {
    color: var(--text-color);
}

.pm-title-wrapper {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 20px 20px 0px 0px;
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
.promo-text {
    padding: 20px;
    color: #b7ecfc;
    background: #0c263b;
    box-shadow: inset 0 0 4px 1px #15446b;
}

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;
    font-family: Calibri;
    color: #ffffff;
    list-style: none !important;
}

.promo-modal-tnc li span {
    color: orangered;
    margin-right: 10px;
}

.promo_table tr th {
    background: #ed1d49;
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.promo_table tr td {
    font-size: 12px;
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    background: #d7d7d7;
    text-align: center;
}

.basic-text {
    font-size: 12px;
    color: #fff;
}

.promo_table {
    width: 100%;
}

.promo h4 {
    font-size: 16px;
    font-weight: bold;
}

.promo h5 {
    font-size: 14px;
    font-weight: bold;
}

.promo ul li,
.promo ol li {
    margin-bottom: 2px;
}

.promo ul,
.promo ol {
    padding-left: 15px;
    margin-bottom: 20px;
}

.promo ul li {
    list-style: circle;
}

.promo ol li {
    list-style: auto;
}

.promo table tr th,
.promo table tr td {
    padding: 8px 1px;
    text-align: center;
}

.contact_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.contact_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact_wrapper_inn {
    position: absolute;
    margin-top: 37px;
}

.contact_wrapper_inn p {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 5px;
}

.contact_wrapper_inn span {
    font-size: 14px;
    font-weight: 600;
}

.info-wrapper h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.info-wrapper p {
    margin-bottom: 25px;
    font-size: 12px;
}

.info-wrapper {
    min-height: 400px;
    background: #051626;
    padding: 20px;
    color: #7fb2c1;
    border-radius: 10px;
}

button.btn-tnc {
    width: 100%;
    text-align: left;
    font-size: 14px;
	font-weight: 500;
	color: #7fb2c1;
	border: 1px solid #0b3155;
    position: relative;
    background: linear-gradient(90deg,rgba(5, 22, 38, 1) 0%, rgba(5, 22, 38, 1) 6%, rgba(17, 31, 43, 1) 17%, rgba(5, 22, 38, 1) 51%, rgba(5, 22, 38, 1) 100%);
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
}
button.btn-tnc.collapsed {
    color: #7fb2c1;
}

button.btn-tnc:focus {
    outline: none;
}

.tnc-card {
    margin-bottom: 5px;
}

.tnc-body {
    background: #0b1b2b;
    padding: 20px 20px 10px;
    border-radius: 10px;
    border-top: 1px solid #122c46;
    border-bottom: 1px solid #122c46;
    margin-top: 5px;
    line-height: 1.2;
	font-size: 14px;
	color: #7fb2c1;
}

.tnc-body ol {
    padding-left: 15px;
}

.tnc-body ol li {
    padding-bottom: 8px;
    list-style: auto;
}

.tnc-body p {
    margin-bottom: 10px;
}

.bank-table tr.trans td {
    background: rgb(255 255 255 / 50%);
    color: #fff;
    border: 1px solid #0d131c;
    padding: 2px;
}

.bank-table tr.trans1 td {
    background: rgb(151 151 151);
    color: #fff;
    border: 1px solid #0d131c;
    padding: 2px;
}

.bank-table tr.dwbox td {
    background: #161f2c;
    color: #fff;
    font-weight: 600;
    padding: 2px;
}

button.btn-tnc::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 12px;
    position: absolute;
    right: 14px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    transform-origin: center;
    transform: rotate(180deg);
    transition: 0.3s;
}

button.btn-tnc.collapsed::after {
	content: '\f078';
	transform: rotate(0);
	transition: 0.3s;
}

.info-wrapper h3 {
    color: #f93;
    margin-bottom: 30px;
}

.info-wrapper2 {
    margin-bottom: 30px;
    min-height: 500px;
    border: 1px solid #f93;
    border-radius: 10px;
}

.info-wrapper ul li {
    list-style: disc;
}

.info-wrapper ol li {
    list-style: decimal;
}

.info-wrapper ol,
.info-wrapper ul {
    padding-left: 18px;
}

.afterlogin_main_bg .container {
    max-width: 1200px;
}

.afterlogin_inn_wrap {
    display: grid;
    grid-template-columns: 752px minmax(260px, 402px);
    gap: 1rem;
}

.afterlogin_inn_wrap.afterlogin_inn_wrap_custom {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
}

.afterlogin_wrap {
    padding: 32px 0;
}

.afterlogin_wrap h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.depwith_wrapbtn {
    /* background-color: #0000004d; */
    /* padding: 4px; */
    display: flex;
    align-items: center;
    /* border-radius: 5px; */
    border-color: #dee3f026;
    margin-bottom: 15px;
    gap: 8px;
}

.depwith_wrapbtn a {
    padding: 15px;
    font-size: 14px;
    line-height: 14px;
    background: #ffffff;
    color: #73bcff;
    border-color: #0000004d;
    width: 100%;
    font-weight: bold;
    border: 1px solid #73bcff;
    border-radius: 3px;
    text-align: center;
}

.depwith_wrapbtn a.active {
    background: var(--gradient-btn);
    color: #fff;
    /* border: 1px solid var(--border-color); */
}

.depwith_wrapbtn_left {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-right: 3px;
}

.depwith_wrapbtn_right {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.afterlogin_dep_head {
    background-color: #e8eef7;
    backdrop-filter: blur(5px);
    padding: 1.25rem 2.25rem;
    display: flex;
    border-bottom: 1px solid #57aefd;
}

.afterlogin_dep_head {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.afterlogin_dep_headbody_wrap {
    overflow: hidden;
    border-radius: 1rem;
}

.afterlogin_dep_headbody_wrap.afterlogin_dep_headbody_wrap_custom {
    overflow: hidden;
    border-radius: 1rem;
    margin-top: 0;
}

.head_col_1 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.head_col_1 span {
    font-weight: 600;
    color: var(--primary-btn);
}

.trans_btn {
    background: var(--gradient-btn);
    color: var(--font-color);
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    /* border: 1px solid var(--border-color); */
}

.trans_btn:hover {
    background-color: #4c3d28;
}

.head_bal {
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--primary-btn);
}

.head_bal span {
    color: var(--primary-btn);
}

.afterlogin_dep_body {
    background-color: #e8eef7;
    backdrop-filter: blur(5px);
    padding: 2.25rem;
    color: rgb(87 174 253);
}

.afterloginbody_step_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.afterloginbody_step_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    color: var(--primary-btn);
}

.afterloginbody_step_bottom span {
    flex: 1 1 0%;
    font-size: 13px;
}

.afterloginbody_step_bottom span:first-child {
    text-align: left;
}

.afterloginbody_step_bottom span:nth-child(2) {
    text-align: center;
}

.afterloginbody_step_bottom span:nth-child(3) {
    text-align: right;
}

.afterloginbody_step_bottom span.stepcus {
    text-align: right;
}

.step_bullet {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-btn);
    font-weight: bold;
}

.step_bullet.active {
    background-color: #2698ff;
    color: #ffffff;
}

.step_line {
    height: 3px;
    background-image: linear-gradient(269.99deg, #3fa6fc .25%, rgba(46, 49, 54, 0) 101.67%);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    flex: auto;
}

.step_line.active {
    background-image: linear-gradient(270deg, var(--secondary-font) 29.61%, rgba(28, 201, 128, 0) 101.68%);
}

.deposit_body_notis {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 8px;
    margin-top: 20px;
    padding: 6px;
    background-size: 100%;
}

.deposit_body_notis_leftcolor {
    width: 170px;
    position: absolute;
    /* background-image: linear-gradient(89.78deg, #ff680938 4.36%, rgba(41, 106, 173, 0) 99.77%); */
    left: 0;
    top: 0;
    border-radius: 8px;
    height: 100%;
}

.dep_notisicon {
    width: 32px;
    height: 32px;
    margin-right: 4px;
}

.deposit_body_notis_content {
    display: flex;
    align-items: center;
    font-size: 12px;
    position: relative;
    color: #000;
}

.dep_content_warning {
    color: #2698ff;
    font-weight: bold;
}

.deposit_bank_choose_box {
    display: flex;
    background: #f2f5fa;
    color: var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    align-items: center;
}

.deposit_bank_choose_box:hover {
    background-color: #a4afcb;
}

.deposit_bank_choose_box img {
    height: 25px;
    border-radius: 5px;
    margin-right: 10px;
}

.deposit_bank_choose_box span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}

.deposit_bank_choose_box i {
    margin-left: auto;
}

.deposit_bank_choose_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 25px;
    margin-top: 25px;
}

.afterlogin_inn_wrap_faqbody {
    padding: 1rem;
    background-color: #e8eef7;
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    height: 100%;
}

.dep_faq_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-btn);
}

.mb-0>a {
    display: block;
    position: relative;
}

.mb-0>a:after {
    content: "\f054";
    position: absolute;
    right: -23px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.mb-0>a[aria-expanded="true"]:after {
    content: "\f078";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.afterlogin_inn_wrap_faqaccor .card-header {
    padding: 14px 1.25rem;
    margin-bottom: 0;
    background-color: #ffffff;
    border-bottom: #0d87b3;
}

.afterlogin_inn_wrap_faqaccor .card-header:hover {
    background-color: #d6dde7;
}

.afterlogin_inn_wrap_faqaccor .card-header a {
    color: var(--primary-btn);
    font-size: 14px;
    display: flex;
    width: 90%;
    align-items: center;
}

.afterlogin_inn_wrap_faqaccor .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: none;
    border-radius: 10px;
    color: var(--primary-btn);
}

.afterlogin_inn_wrap_faqaccor .card:first-child .card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.afterlogin_inn_wrap_faqaccor .card:last-child .card-header {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn_dep {
	background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
	font-size: 13px;
    text-transform: uppercase;
}
.header_btn_dep {
    display: flex;
    align-items: center;
    background-color: #03151f;
    border-radius: 30px 0 0 30px;
    padding: 0 0 0 15px;
    border: 1px solid #1a2d3a;
    font-size: 14px;
}

.header_btn_dep a {
    color: #c5dde4;
}

.header_btn_dep .rd-color {
    font-size: 13px;
}

.headusericon {
    /* width: 25px; */
    border-radius: 50px;
}

.head_afterlogin_custom .btn_dropup_lang button {
    background: #03151f;
    border-radius: 40px;
    display: flex;
    align-items: center;
	padding: 3px 5px;
    border: 1px solid #1a2d3a;
    color: #7df9ff;
    font-size: 13px;
    height: 35px;
}

.head_afterlogin_custom .btn_dropup_lang {
    width: 152px;
}
.head_afterlogin_custom .btn_dropup_lang .dropdown-menu {
    width: 100%;
    background: #03151e;
    min-width: 170px;
    border: 1px solid #1a2d3a;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.7);
}

.head_afterlogin_custom .btn-secondary:not(:disabled):not(.disabled).active,
.head_afterlogin_custom .btn-secondary:not(:disabled):not(.disabled):active,
.head_afterlogin_custom .show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #c9d1d8;
    border-color: #4e555b;
}

.head_afterlogin_custom .btn_dropup_lang .dropdown-menu a {
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 4px 11px;
    justify-content: left;
    grid-gap: 0 5px;
    color: #fff;
}
span.dpm-icon img {
    max-height: 20px;
	filter: brightness(5);
}
.btn_dropup_lang .dropdown-menu a:hover {
    color: #b7ecfc;
}
.btn_dropup_lang .dropdown-menu a:hover span.dpm-icon img  {
    filter: brightness(1);
}

.head_afterlogin_custom .dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
}

.head_afterlogin_custom_mobile {
    display: none;
}

.btn_tr {
    background: var(--gradient-btn);
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 7px;
    color: var(--font-color);
}

.afterlogin_btn_back {
    color: #fff;
    margin-right: 20px;
}

.header_mobile_show {
    display: none;
}

.deposit_select_showbank {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.bank_display {
    width: 82px;
    border-radius: 5px;
    margin-right: 10px;
}

.bank_display_name {
    font-weight: 700;
}

.form-control {
    background-color: #909dbe !important;
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #fff;
}

.form_label {
    margin-bottom: 2px;
    font-weight: 700;
    color: #6b7ca8;
}

.form-control:focus {
    color: #ffffff;
    background-color: rgba(0, 0, 0, .3);
    border: 1px solid var(--secondary-font);
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--secondary-font);
}


.form_wrap {
    margin-top: 22px;
}

.label_wrap {
    display: flex;
    justify-content: space-between;
}

.form_label_notis {
    font-size: 12px;
}

.bank_amount_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    margin-top: 8px;
}

.bank_amount_grid button {
    width: 100%;
    color: #909dbe;
    background-color: rgb(255 255 255);
    border-radius: 5px;
    padding: 10px;
    border: none;
    font-size: 13px;
    font-weight: 700;
}

.bank_amount_grid button:hover {
    background-color: rgb(144 157 190);
    color: #fff;
}

.form_bonus_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text_bonus_amt_top {
    color: #909dbe;
}

.text_bonus_amt {
    font-size: 17px;
    font-weight: 700;
}

.form_bonus_wrap {
    font-size: 13px;
}

.submit_btn_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 40px;
}

.submit_btn_wrap button.backbtn {
    background-color: rgb(144 157 190);
    height: 52px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    color: #fff;
    border: none;
    font-weight: 700;
}

.submit_btn_wrap button.paybtn {
    background: var(--gradient-btn);
    color: #fff;
    height: 52px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    border: none;
    font-weight: 700;
    border: 1px solid var(--border-color);
}

.submit_btn_wrap_with {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 50px;
}

.footer_pay {
    display: none;
    position: fixed;
    bottom: 0;
    background-color: #2c2e34;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    width: 100%;
}

.footer_pay .submit_btn_wrap button.backbtn {
    background-color: rgba(222, 227, 240, .15);
    height: 44px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    color: #fff;
    border: none;
    font-weight: 700;
}

.footer_pay .submit_btn_wrap button.paybtn {
    background-color: #1cc980;
    height: 44px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    color: #000;
    border: none;
    font-weight: 700;
}

.footer_pay .submit_btn_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.footer_pay .form_wrap {
    margin-top: 0;
}

body[data-singlepage="afterlogin"] .mobile_footer {
    padding: 18px 10px 155px 10px;
}

.add_bank_with_wrap {
    color: var(--secondary-font);
    display: flex;
    flex-direction: column;
    height: 112px;
    background-color: #ffffff;
    border-radius: 0.75rem;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.add_bank_with_wrap p {
    margin-bottom: 0;
}

.add_bank_with_wrap i {
    font-size: 24px;
    margin-bottom: 10px;
}

.table-share tr th {
    background-color: rgb(144 157 190);
    padding: 10px 5px;
    font-size: 12px;
    text-align: center;
    border: 1px solid rgb(87 174 253);
    color: #fff;
}

.table-share tr td {
    padding: 5px;
    border: 1px solid rgb(87 174 253);
    text-align: center;
    color: #909dbe;
}

.add_bank_with_wrap:hover {
    background-color: rgba(222, 227, 240, .15);
}

.addbankdropdown .btn {
    width: 100%;
    color: #fff;
    background-color: #909dbe;
    height: 52px;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    text-align: left;
}

.addbankdropdown .dropdown-menu {
    width: 100%;
    background-color: #7b86a2;
}

.addbankdropdown .dropdown-menu a {
    color: #fff;
    padding: 10px 20px;
    background-color: #7b86a2;
}

.addbankdropdown .dropdown-menu a:hover {
    background-color: #0d8bb7;
}

.addbankdropdown img {
    width: 83px;
    margin-right: 10px;
    border-radius: 5px;
}

.afterlogin_dep_body select {
    -webkit-appearance: none;
    appearance: none;
}

.afterlogin_dep_body .select_custom {
    position: relative;
}

.afterlogin_dep_body .select_custom::after {
    content: "\f054";
    font-weight: 900;
    font-size: 0.8rem;
    top: 29%;
    right: 17px;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    transform: rotate(90deg);
}

.history_typebtn a {
    padding: 15px;
    font-size: 14px;
    line-height: 14px;
    background-color: #dee3f026;

    color: #ecf1ffb3;
    border-color: #0000004d;
    width: 100%;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    text-align: center;
}

.history_typebtn a.active {
    color: #ffffff;
    background-color: #ed1d498c;
}

.history_typebtn {
    background-color: #0000004d;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-color: #dee3f026;
    grid-gap: 4px;
}

.select_form_history {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    grid-gap: 15px;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.history_table_wrap {
    background-color: #909dbe;
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 40px;
}

.history_table {
    color: #fff;
}

.history_table tr th {
    padding: 0 5px;
}

.history_table tr td {
    padding: 3px 5px;
}

tr.unread td {
    font-weight: bold;
    color: #fff;
}

.history_table tr th:last-child {
    text-align: right;
}

.history_table tr td:last-child {
    color: #e91e1e;
    text-align: right;
    font-weight: 600;
}

.msg_user {
    cursor: pointer;
}

.msg_user:hover {
    color: #fff;
}

.history_table_wrap.history_table_wrap_inbox {
    background-color: #909dbe;
    padding: 10px;
    border-radius: 10px;
    margin-top: 0;
}

.profile_userimg_wrap {
    background-color: #909dbe;
    backdrop-filter: blur(5px);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 24px;
    border-radius: 16px;
    display: flex;
    padding-left: 45px;
    grid-gap: 20px;
}

.profile_userimg img {
    border-radius: 100%;
    width: 80px;
    border: 5px solid #dee3f026;
}

.profile_userinfo {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.profileuserinfo_badge {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.profileuserinfo_badge img {
    width: 28px;

}

.profileuserinfo_badge p {
    margin: 0;
    position: absolute;
}

.profile_user_num {
    margin: 0;
    font-size: 21px;
}

.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: #909dbe;
    padding: 5px 12px;
    min-height: 85px;
}

.main-vip {
    top: 0;
    left: 7px;
    font-size: 33px;
    background: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    font-style: italic;
    width: 100%;
    margin: 0;
}

.vip-process {
    position: relative;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.15);
    width: 70%;
}

.vip-process-bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 4px;
    border-radius: 2px;
    background: white;
}

.vipprofile_text {
    font-size: 13px;
}

.profile_vip_row::after {
    background-image: url('../images/icon/vipbadge_big.png');
    content: "";
    width: 133px;
    height: 160px;
    position: absolute;
    background-size: contain;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.profile_content_wrap {
    padding: 1.5rem;
    background-color: #909dbe;
    backdrop-filter: blur(5px);
    border-radius: 16px;
    margin-top: 1.5rem;
}

.profile_content_wrap_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.profile_content_wrap_rowleft_con {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.profile_content_wrap_rowleft_con p,
.profile_content_wrap_rowleft_con i {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.profile_content_wrap_rowright_con {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.profile_content_wrap_rowright_con p,
.profile_content_wrap_rowright_con i {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.hr_profile_line {
    border-top: 1px solid #dee3f00d;
    margin: 2px;
}

.profile_chgpas {
    background-color: #dee3f00d;
    border-radius: 8px;
    color: #ecf1fff0;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.profile_chgpas:hover {
    background-color: #dee3f029;
}

.profile_navimenu {
    padding: 1.5rem;
    background-color: #909dbe;
    border-radius: 16px;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.profile_navimenu_inn {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

.profile_navimenu_inn a {
    display: grid;
    text-align: center;
    grid-gap: 3px;
    line-height: 1.2;
    align-items: end;
    position: relative;
}

.profile_navimenu_inn a i {
    font-size: 23px;
}

.profile_navimenu {
    display: none;
}

button.logout {
    display: none;
}

.amt-box {
    position: relative;
}

button.btn-cpy {
    position: absolute;
    right: 16px;
    top: 14px;
    border: none;
    padding: 0px;
    color: #2c2e34;
}

button.btn-cpy:hover {
    color: #314575;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 150px;
    margin-top: 20px;
}

.carousel.desktop {
    display: block;
}

.carousel.mobile {
    display: none;
}
.ann-wrap {
    display: flex;
    margin: 10px 0;
    align-items: center;
    background: linear-gradient(130deg, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #174e79;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #7df9ff;
}
.ann-wrap i {
    color: #b7ecfc;
}
.blc-amt {
    display: flex;
	align-items: center;
    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;
}

.balance-modal .modal-body {
    padding: 0px;
}

.btn-bln-all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px 10px 0px 0px;
    font-size: 16px;
    font-weight: 700;
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}

.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;
}

.bln-in {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 14px;
}

.bln-all ul li {
    margin: 3px 0px;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 5px 10px;
    border-radius: 7px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
}

.bln-all {
    padding: 10px;
}

.bln-all ul li:hover {
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}

.balance-modal .modal-content {
    background: #0c263b;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid var(--border-color);
}
.balance-modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #007bff;
    opacity: 1;
    top: -33px;
    position: absolute;
    right: 5px;
}

span.rd-box {
    background: #ed1d49;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    align-self: flex-end;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    background-color: #ee354f;
	color: #fff;
    height: 20px;
    margin: 0 auto 0 auto;
    transform-origin: bottom;
    width: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bounce-6 {
    animation-name: bounce-6;
    animation-timing-function: ease;
}

@keyframes bounce-6 {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    10% {
        transform: scale(1.1, .9) translateY(0);
    }

    30% {
        transform: scale(.9, 1.1) translateY(-10px);
    }

    50% {
        transform: scale(1.05, .95) translateY(0);
    }

    57% {
        transform: scale(1, 1) translateY(-2px);
    }

    64% {
        transform: scale(1, 1) translateY(0);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}

.my-inbox {
    position: absolute;
    right: 0px;
    top: 0px;
}

.amt-box {
    position: relative;
}

button.btn-cpy {
    position: absolute;
    right: 16px;
    top: 14px;
    border: none;
    padding: 0px;
    color: #ffffff;
    background: none;
}

button.btn-cpy:hover {
    color: #314575;
}

.qr-code img {
    display: block;
    margin: 0px auto;
    max-width: 150px;
    margin-top: 20px;
}

.transaction_container {
    position: relative;
    margin-top: 20px;
    background-color: #23262B;
    padding: 10px;
    border-radius: 10px;
    background: #162f26 url(../images/index/live-transaction.png) bottom right no-repeat;
    backdrop-filter: blur(5px);
}

.transaction_title_box {
    width: 100%;
}

.transaction_title {
    display: flex;
    align-items: center;
}

.transaction_title img {
    width: 25px;
    margin-right: 10px;
}

.transaction_title .text {
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
    line-height: 20px;
    color: #A6A9B2;
}

.transaction_time {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: var(--primary-btn);
    padding: 10px;
    /* text-shadow: 0px 3px #000000; */
}

.transaction_box {
	position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 2px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
	color: #fff;
}

.transaction_content {
    width: 100%;
    position: relative;
}

.transaction_content_box_title {
    display: flex;
    align-items: center;
}

.transaction_content_box {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.transaction_content_1_title {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-border);
    width: 50%;
}

.transaction_content_2_title {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-border);
    padding-left: 40px;
}

.transaction_content_1 {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-btn);
    width: 50%;
}

.transaction_content_1 img {
    width: 30px;
    margin-right: 10px;
}

.transaction_content_2 {
    font-weight: 400;
    font-size: 14px;
    color: var(--primary-btn);
    width: 50%;
    text-align: end;
}

.light .transaction_container {
    background-color: #fff;
}

.light .transaction_title .text {
    color: #111111;
}

.light .transaction_time {
    color: #111111;
}

.light .transaction_content {
    background-color: #F6F7FB;
}

.light .transaction_content_1_title {
    color: #111111;
}

.light .transaction_content_2_title {
    color: #111111;
}

.light .transaction_content_1 {
    color: #111111;
}

.light .transaction_content_2 {
    color: #111111;
}

.wrap-live {
    width: 100%;
    background: #0d182d;
    border-radius: 10px;
    border: 1px solid #245c76;
    padding: 15px 40px 15px 15px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}
.view_modal .modal-content {

    background: none;

    padding: 0px;

    border-radius: 10px;
}

.view_modal .modal-body {
    padding: 0px;
}

.modal_body_view {
    background: var(--gradient-btn);
    /* padding: 10px 0px; */
    border-radius: 10px;
}

.modal_body_view h5 {
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.view_modal button.close {
    color: #fff;
    position: absolute;
    right: 15px;
    top: 15px;
    opacity: 1;
}

.tnc-content {
    padding: 13px;
    /* margin: 15px; */
    /* border-top: 1px solid var(--border-color); */
    font-size: 12px;
    color: var(--border-color);
}

.reg-box {
    background-color: #000c07;
    padding: 50px 30px;
    border-radius: 10px;
    min-height: 450px;
}

.reg-list ul {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    margin-bottom: 20px;
}

.reg-list ul li a.active {
    background: var(--primary-btn);
    color: #ffffff;
}

.reg-list ul li a {
    background: var(--border-color);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.reg-list ul:after {
    content: "";
    height: 1px;
    width: 100%;
    margin: 0px auto;
    display: block;
    background: #33353a;
    position: absolute;
    top: 15px;
    max-width: 340px;
}

.reg-list ul li {
    z-index: 1;
}

.reg_form {
    max-width: 500px;
    margin: auto;
    margin-top: 40px;
}

.reg_form .form_wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.reg_form .form_wrap label {
    display: flex;
    width: 200px;
    /* justify-content: space-between; */
    color: var(--primary-btn);
    font-size: 13px;
    gap: 5px;
}

.reg_form span.red-txt {
    color: #ec474b;
    font-weight: bold;
    position: relative;
    left: 0px;
}

.reg_form .form-control {
    font-size: 12px;
    border: 1px solid var(--primary-btn);
    min-height: 35px;
}

.reg_form .btn_login_modal {
    margin: 0 auto;
    background: var(--gradient-btn);
    color: #fff;
    display: block;
    max-width: 150px;
    padding: 7px 0px;
    font-weight: 500;
}

.reg-img img {
    margin: auto;
    display: block;
    margin-top: 70px;
}

.form_wrap.otp {
    flex-direction: column;
    text-align: left;
    align-items: baseline;
}

.otp .form_label {
    width: auto !important;
    gap: 10px;
    justify-content: flex-start !important;
}

.otp-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.reg_form h4 {
    text-align: center;
    color: var(--primary-font);
    font-weight: bold;
}

.reg_form p {
    text-align: center;
    color: #979797;
    font-size: 12px;
}

.btn-jn button {
    margin: inherit !important;
}

.form_wrap.btn-jn {
    display: flex;
    justify-content: flex-start;
    position: relative;
    left: 155px;
}

.reg-wrap .slider_title {
    margin: 20px 0px;
    font-size: 20px;
    color: #fff;
    font-style: italic;
}

.reg_form i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: var(--primary-btn);
    margin-bottom: 10px;
}

.m-show {
    display: none;
}

.btn-token {
    background: var(--primary-btn);
    padding: 10px;
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    border-radius: 8px;
    align-items: center;
    font-size: 17px;
    color: #ffffff;
    min-width: 150px;
}

.btn-tk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-tk h5 {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-bottom: 10px;
    padding: 15px;
    background: var(--gradient-btn);
    border-radius: 10px 10px 0px 0px;
    color: var(--font-color);
}

.point-wrap {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.tab-pay ul {
    display: grid;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
}

.tab-pay ul li a {
    background: #ffffff;
    color: var(--primary-btn);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: bold;
}

.tab-pay ul li a.active,
.tab-pay ul li a:hover {
    background: var(--gradient-btn);
    color: var(--font-color);
    border: 1px solid #909dbe00;
    font-weight: 500;
}
.rd-color {
    font-size: 25px;
    background: none;
    border: none;
}
button.rd-color i {
    color: #3da6b1;
}

[type="file"] {
    height: 0;
    overflow: hidden;
    width: 100%;
}

[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-color: #909dbe;
        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%;
        }
    }
}

.amt-qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-img img {
    height: 130px;
}

.qr-area {
    border: 1px solid #5f5f5f;
    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 #5f5f5f;
    border-radius: 5px;
    padding: 10px;
}

.atten img {
    height: 20px;
}

.qr-ttl {
    font-weight: bold;
}

.qr-num {
    background-color: rgba(0, 0, 0, .3);
    min-height: 52px;
    border: transparent;
    border-bottom: 1px solid #dee3f026;
    border-radius: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
}

button.btn-copy {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
}

.form-max {
    position: relative;
}

button.btn-max {
    position: absolute;
    bottom: 17px;
    right: 10px;
    color: #fff;
    background: var(--gradient-btn);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

button.btn-max:hover {
    background: var(--gradient-btn);
}

.pen-top {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.pen-l {
    border-right: 1px solid #5b5b5b;
    padding: 0px 10px;
}

.re-status {
    text-align: end;
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
}

.pen-r {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}

.pen-l p {
    font-weight: bold;
    font-size: 12px;
}

.pen-time {
    font-size: 24px;
    font-weight: bold;
}

.pen-r p {
    font-weight: bold;
    font-size: 12px;
}

.pen-time small {
    font-weight: bold;
    font-size: 14px;
}

button.btn-if {
    color: #2283f6;
    padding: 0px;
    background: none;
    border: none;
}

.table-pen {
    border-top: 1px solid #5b5b5b;
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-pen table th {
    background: #a4afcb;
    color: #fff;
    padding: 10px;
}

.table-pen table {
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.table-pen table tr:nth-child(even) {
    background: #ffffff;
}

.table-pen table tr:nth-child(odd) {
    background: #e8eef7;
}

.table-pen table tr td {
    padding: 10px;
    font-size: 12px;
}

.table-pen table tr td:first-child {
    width: 38%;
    font-weight: bold;
}

.table-pen table tr:last-child {}

p.txt-sm {
    font-size: 12px;
    font-weight: bold;
    color: #ed1d49;
    margin: 0px;
}

.pentop-l {
    display: flex;
    gap: 15px;
}

.btn-cancel {
    background: #a4afcb;
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
}

.btnmr-if {
    background: #009c61;
    color: #fff !important;
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.penttop-r {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.btn-pending {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    gap: 10px;
}

.non-ef {
    background: none;
    border: none;
    color: #6a7b8a;
}

.af-content {
    margin-bottom: 20px;
    border: double #737373;
    padding: 20px;
    border-radius: 10px;
}

.btn-df {
    border: none;
    background: #ed1d49;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
}

.btn-df:hover {
    background: #c5163b;
}

.af-info p {
    margin: 0px;
}

.txt-rd {
    color: #6a7b8a;
}

.af-info {
    margin-top: 15px;
}

.btn-tre {
    position: absolute;
    bottom: 17px;
    right: 10px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.btn-max-t {
    color: #fff;
    background: var(--gradient-btn);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
}

.btn-max-t:hover {
    background: var(--primary-btn);
    color: #000;
}

.pay-status .card {
    background: none;
    margin-bottom: 20px;
    border: double var(--secondary-font);
    padding: 0px;
    border-radius: 10px;
}

.pay-status .card-body {
    padding-top: 0px;
}

.text-gold {
    font-size: 37px;
    line-height: 33px;
    background: #ECE976;
    background: repeating-linear-gradient(to bottom, #ECE976 0%, #F29835 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 0px #000);
}

.modal-backdrop.show {
    opacity: .8;
}

.afterlogin_main_bg .container {
    max-width: 1200px;
}

.afterlogin_inn_wrap {
    display: grid;
    grid-template-columns: 752px minmax(260px, 368px);
    gap: 1rem;
}

.afterlogin_inn_wrap.afterlogin_inn_wrap_custom {
    display: grid;
    grid-template-columns: 100%;
    gap: 1rem;
}

.afterlogin_wrap {
    padding: 32px 0;
}

.afterlogin_wrap h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--primary-btn);
}

.depwith_wrapbtn {
    /* background-color: #180926db; */
    /* backdrop-filter: blur(5px); */
    /* padding: 4px; */
    /* display: flex; */
    /* align-items: center; */
    /* border-radius: 5px; */
    /* border-color: #ffffff; */
}

.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;
}

.vip-non .vip-process {
    width: 98%;
    display: flex;
    align-items: self-end;
    position: absolute;
    bottom: 17%;
    left: 0;
    right: 0;
    margin: auto;
}

.lvl-lv {
    width: 100%;
    margin-bottom: 11px;
}

h3.vip-ttl {
    font-weight: bold;
    font-size: 60px;
    background: #fff;
    -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: #e8eef7;
    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;
    color: #5877c4;
}

table.vip_table tr td {
    border-left: none;
    text-align: center;
    padding: 10px;
    color: #5877c4;
}

.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;
}

.vip_top_head {
    margin-top: 20px;
    padding: 7px 15px;
    padding: 15px;
}

.table_vip_outwrap {
    padding: 40px 50px;
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

hr.table_hr {
    border-top: 1px solid var(--secondary-font);
    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;
    color: #fff;
}

.vip-ico img {
    height: 60px;
}

.border_table_cus {
    border-bottom: 1px solid #ed474b;
}

table.vip_table tr.hr_cus_wrap {
    position: relative;
}

.vip_table_head {
    border-radius: 10px;
    background-color: #909dbe;
}

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: #909dbe;
    color: #fff;
}

.head_img {
    margin-right: 7px;
    height: 25px;
}

.table_vip_responsive tr th.headcol.headcol_sub {
    font-weight: 800;
    color: var(--primary-btn);
    font-size: 13px;
}

.vip_tncbtn {
    background: #ffffff;
    width: auto;
    text-align: left;
    font-size: 14px;
    padding: 8px 15px;
    color: #909dbe;
    border: none;
    border-radius: 10px;
    position: relative;
    /* border: 1px solid #f98400; */
    font-weight: 700;
    /* box-shadow: 0 0 2px 2px inset #f6ea86; */
}

.promo-ttl {
    background: var(--gradient-btn);
    border-radius: 15px 15px 0px 0px;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    color: #fff;
}

.vip-wrap ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0px;
}

.vip-wrap ul {}

.vip-lvl {
    display: block;
    margin: auto;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0px 0px 15px var(--border-color);
    background: #909dbe;
    padding: 8px 50px;
}

.vip-txt {
    color: #ffffff;
}

.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: #42e0ff;
}

.vip_modal .modal-content {
    background-color: #e8eef7;
    backdrop-filter: blur(5px);
    color: var(--primary-btn);
    box-shadow: 0px 0px 10px 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: var(--primary-btn);
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}

.vip_modal h4 {
    border-bottom: 1px solid var(--border-color);
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: var(--primary-btn);
}

.btn-back {
    background: #ed1d49;
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 3px 20px;
}
.blog_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 25px;
    color: var(--primary-btn);
}

.blog-content {
    padding: 20px 0px;
}

.blog-wrap h4 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-wrap p {
    line-height: 24px;
    margin-bottom: 20px;
}

.blog-wrap h5 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-wrap ul {
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-wrap ul li {
    list-style: circle;
}

.blog-wrap ol li {
    list-style: auto;
}

.blog-wrap ol {
    padding-left: 15px;
    margin-bottom: 20px;
}

.blog-wrap table tr td {
    padding: 10px;
    text-align: center;
}

.blog-wrap table tr th {
    padding: 10px;
    text-align: center;
}

.blog-wrap table {
    margin-bottom: 20px;
}

.daily-bg ul {
    position: absolute;
    bottom: 100px;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0px auto;
    list-style: none;
}

.daily-bg ul li a {
    position: relative;
    display: block;
}

.daily-bg ul li a.claimed .daily-content {
    display: none;
}

.daily-content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.daily-bg ul li a img {
    filter: grayscale(0.8);
}

.daily-bg ul li a.claimed img {
    filter: none;
}

.daily-bg ul li a.active img {
    filter: none;
}

.modal-congrat h5 {
    color: var(--primary-btn);
    font-size: 38px;
    font-weight: bold;
    text-align: center;
}

.image-wrap img {
    display: block;
    margin: 0px auto;
    position: relative;
}

.color-text1 {
    color: var(--primary-btn);
    font-weight: bold;
}

.color-text2 {
    color: #edb543;
    font-weight: bold;
}

.img-wrap-top {
    position: absolute !important;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0px auto;
    filter: brightness(0) saturate(100%) invert(79%) sepia(31%) saturate(598%) hue-rotate(9deg) brightness(102%) contrast(88%);
}

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-color: #ffffff;
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px var(--border-color);
}

.daily_modal .close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: var(--primary-btn);
    opacity: 1;
    font-size: 47px;
    z-index: 2;
}

.daily_modal .modal-body {
    background: none;
}

.daily_modal .modal-content {
    background: none;
    border: none;
}

.mission-bg ul {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mission-bg ul li a {
    display: block;
    position: relative;
}

.ms-wrap {
    position: absolute;
    top: 0px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.ms-ttl {
    text-transform: uppercase;
}

.ms-amt {
    font-weight: bold;
    color: #b2fb29;
    text-transform: uppercase;
}

.ms-btn {
    position: absolute;
    bottom: -5px;
}

.mission_modal .modal-content {
    background-color: #e8eef7;
    box-shadow: 0px 0px 10px var(--border-color);
}

.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;
    color: var(--border-color);
}

.mission_modal h4 {
    border-bottom: 1px solid var(--border-color);
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: var(--primary-btn);
}

.mission_modal table tr td {}

.mission_modal table tr td,
.mission_modal table tr th {
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.mission_modal .close {
    color: #6a7b8a;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
}

.clm-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.clm-btn button {
    background: var(--gradient-btn);
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    padding: 10px 14px;
    font-weight: 600;
    border: none;
    margin: 0 5px;
    /* border: 1px solid var(--border-color); */
}

.play2earn {
    padding: 40px;
}

.play2earn-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-ttl-1 {
    background: var(--secondary-font);
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
}

.p2e-info-content {
    background-color: #e8eef7;
    backdrop-filter: blur(5px);
    padding: 10px;
    border-top: none;
    padding-bottom: 0;
    border: 1px solid var(--border-color);
}

.p2e-amount {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-amount-box {
    width: 100%;
    background: #919ebe;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}


.progress-bar {
    width: 100%;
    background-color: #ffffff;
    border-radius: 25px;
    margin: 10px 0;
}

.progress-bar-fill {
    height: 20px;
    background: var(--secondary-font);
    transition: width 0.5s;
    border-radius: 25px;
}

.p2e-btn-group {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.p2e-btn-group a {
    background: var(--gradient-btn);
    color: #fff;
    padding: 5px 10px;
    display: block;
    text-align: center;
    width: 40%;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px;
    font-weight: 500;
}

.p2e-btn-group a:hover {
    background: var(--gradient-btn);
    color: #fff;
}

.btn-p2e {
    color: var(--secondary-font);
    font-weight: bold;
}

.sel-form {
    margin-bottom: 10px;
}

.pse-bnr {
    margin-bottom: 15px;
}

.announcementpopupimg img {
    /* width: 400px; */
    margin: auto;
    border-radius: 5px;
}

#announcementpopup .carousel-control-prev {
    left: -22px;
}

#announcementpopup .carousel-control-next {
    right: -22px;
}

.announcementmodal.modal {
    z-index: 999999;
}

.announcementmodal .modal-content {
    position: relative;
}

.announcementmodal .close {
    right: 0;
    bottom: -35px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcementmodal.detectannouncementmodal02 .close {
    position: absolute;
    right: 55px;
    top: 20px;

}

.announcementmodal .modal-content {
    background-color: transparent;
    border: none;
}


.announcementmodal .modal-dialog {
    max-width: 500px;
}

.annou-pop {
    border-radius: 20px;
    background: var(--box-bg);
    padding: 20px;
    color: #fff;
    border: 1px solid var(--border-color);
}

.annou-ttle {
    color: var(--border-color);
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid var(--border-color);
    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;
    color:  var(--border-color);
}

.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;
}

.wheel_product .wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    height: 880px;
    margin-bottom: -120px;
}

.wheel-wrap .wheel_product_bg {
    width: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    top: auto;
    right: 23.5%;
    bottom: 29%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_frame {
    width: 55.5%;
    position: absolute;
    bottom: 5%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0px auto;
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
}

.wheel-wrap .wheel_product_zeus {
    width: 38%;
    position: absolute;
    left: -0%;
    bottom: 25%;
    z-index: 2;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg)
    }

    80% {
        transform: rotate(1turn)
    }

    to {
        transform: rotate(1turn)
    }
}

.wheel-wrap .wheel_product_arrow {
    width: 9%;
    position: absolute;
    bottom: 45%;
    z-index: 6;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.wheel-wrap .lightning {
    position: absolute;
    width: 28%;
    height: 50%;
    right: 1.3%;
    bottom: 25%;
    mix-blend-mode: lighten;
}

.wheel-wrap .wheel_product_img {
    width: 48.6%;
    position: absolute;
    right: 23.5%;
    bottom: 32%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(.37, -.15, .3, .94) infinite;
    z-index: 4;
    filter: drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff)drop-shadow(0px 0px 10px #bd6fff) drop-shadow(0px 0px 10px #bd6fff);
}

.wheel-wrap .wheel_product_content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.wheel_product.wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 100px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 600px;
    margin-bottom: 40px;
    z-index: -1;
}

.slider_title.wheel-ttl {
    color: #e2e7f3;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.wheel-all ul {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
    gap: 20px;
    font-weight: bold;
}

span.yell-text {
    color: ee0b77;
    font-weight: bold;
}

.whl-btn {
    background: #30383f;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    gap: 5px;
    border: 1px solid var(--border-color);
}

a.btn-spin {
    background: var(--primary-btn);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    color: #ffffff;
    /* box-shadow: 0 0 2px 2px inset #f6ea86; */
}

.wheel-all .btn-more {
    background: var(--gradient-btn);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 8px;
    font-size: 15px;
}

.wheel-bg {
    display: block;
}

.modal-content.download {
    padding: 15px 20px;
    color: #b7ecfc;
    background: #0c263b;
    border-radius: 10px;
    box-shadow: inset 0 0 4px 1px #15446b;
	color: #fff;
}
.dl-pvd-logo {
    text-align: center;
}
.downloadbody {
    text-align: center;
    display: flex;
    justify-content: space-around;
    background: #051626;
    border-radius: 10px;
    padding: 10px;
}
.downloadbox {
    text-align: center;
    margin: 0 5px;
    display: inline-block;
}
.ndl-btn {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 80%;
}
.ndl-btn:hover, .ndl-btn:focus {
    background: #fff;
    color: #318a90;
}
.ndl-btn i {
	margin-right: 8px;	
}

.dl {
    max-width: 500px;
    margin: auto;
    margin-top: 10px;
}

.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

.dl table th {
    text-align: center;
    padding: 8px;
    text-transform: uppercase;
    font-weight: 500;
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
.dl table td {
    text-align: left;
    padding: 8px;
    border: 1px solid #0e4961;
    color: #ffffff;
    background: #051626;
}
.dl .username_custom {
    color: var(--primary-btn);
    font-weight: bold;
}

.downloadboxContent {
    padding: 20px;
    border: 1px solid #ce9c2d;
    background: #000000;
}
input.access-input {
    color: #000;
    padding: 2px 10px;
    border: none;
}
.vip-sec {
    padding: 40px 0;
}

.vip-sec .container {
    max-width: 1300px;
}

.user_vip_inner {
    grid-gap: 20px;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 340px 1fr;
    margin: 0 auto;
    min-height: 350px;
    padding: 0;
    position: relative;
    width: 100%;
}

.user_vip_inner .user_vip_left {
    background-color: #162f26;
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    margin: 0 auto;
    padding: 7px;
    width: 100%;
    border: 1px solid var(--secondary-font);
}

.user_vip_inner .vip_inner {
    display: block;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.user_vip_inner .user_vip_body {
    display: grid;
    grid-Playsoft77-rows: 40px 1fr 45px 45px 40px 68px;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
}

.user_vip_inner .user_vip_head {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

.user_vip_inner .user_vip_head h2 {
    color: var(--primary-btn);
    font-size: 16px;
    line-height: 1.4;
    margin: 0 auto;
    padding: 8px;
    text-transform: uppercase;
    width: 100%;
}

.user_vip_inner .user_level_bg {
    background: url(/static/media/vip_mid.a4e399bâ€¦.svg) 50% no-repeat;
    background-size: 70%;
    margin: 0 auto;
    min-height: 120px;
    width: 140px;
}

.user_vip_inner .user_level_bg,
.user_vip_inner .user_level_light {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.user_vip_inner .user_level_light {
    border-radius: 50%;
    box-shadow: 0 0 100px 50px #fed791;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 1;
}

.user_vip_inner .user_level_pic {
    margin: 0 auto;
    z-index: 2;
}

.user_vip_inner .user_vip_score_body {
    color: var(--text-color);
    display: grid;
    grid-template-columns: 80px 1fr;
    line-height: 1.3;
    margin: 10px auto 0;
    padding: 0;
    width: 100%;
}

.user_vip_inner .score_title {
    padding-left: 5px;
    text-align: left;
}

.user_vip_inner .score_value {
    padding-right: 5px;
    text-align: right;
}

.vip_overview .yellow2 {
    color: #d5f193;
}

.user_vip_inner .score_process {
    grid-column-end: 3;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 2;
}

.user_vip_inner .user_vip_next_txt {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

.user_vip_inner .usr_vip_score_inner {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.user_vip_inner .usr_vip_score_box {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.user_vip_inner .usr_vip_score_box_item {
    background: #332b21;
    border-radius: 0.5rem;
    display: block;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 10px;
    background: #081e15;
}

.user_vip_inner .user_vip_righ {
    background-color: #162f26;
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    display: block;
    margin: 0 auto;
    padding: 7px;
    position: relative;
    width: 100%;
    border: 1px solid var(--secondary-font);
}

.user_vip_inner .vip_inner {
    display: block;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.user_vip_inner .user_vip_right_body {
    margin: 0 auto;
    padding: 10px 10px 18px;
    width: 100%;
}

.user_vip_inner .user_vip_head {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
}

.user_vip_inner .user_level_list,
.user_vip_inner .user_vip_level_process {
    margin: 0 auto;
    padding: 5px 20px;
    width: 100%;
    position: relative;
}

.user_vip_inner .user_level_list_body {
    grid-gap: 20px 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 10px auto;
    width: 100%;
}

.user_vip_inner .level_box_item {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.user_vip_inner .levle_box_body {
    background: #081e15;
    border-radius: 002d4f;
    color: #adb6c4;
    cursor: pointer;
    font-size: 12px;
    height: 100px;
    min-width: 36px;
    position: relative;
    z-index: 1;
}

.user_vip_inner .levle_box_pic {
    align-items: center;
    display: flex;
    height: 60px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.user_vip_inner .levle_box_title {
    background: var(--gradient-btn);
    border-radius: 0 0 0.5rem 0.5rem;
    color: #000;
    padding: 3px 0 0;
    text-transform: uppercase;
    z-index: 11;
    font-weight: 500;
}

.user_vip_inner .levle_box_body:after {
    background: #02a66b;
    bottom: -7px;
    content: "";
    height: 12px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 12px;
    z-index: -1;
}

.user_vip_inner .usr_vip_score_box_item h5 {
    color: var(--primary-btn);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.user_vip_inner .big_score_box .usr_vip_score_box_item h3 {
    font-size: 18px;
    margin: 10px auto;
    font-weight: 600;
    line-height: 1;
}

.levle_box_pic img {
    height: 50px;
}

.ant-progress {
    box-sizing: border-box;
    color: hsla(0, 0%, 100%, .85);
    display: inline-block;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ant-progress-line {
    font-size: 14px;
    position: relative;
    width: 100%;
}

.ant-progress-bg,
.ant-progress-success-bg {
    background-color: #177ddc;
    border-radius: 100px;
    position: relative;
    transition: all .4s cubic-bezier(.08, .82, .17, 1) 0s;
}

.ant-progress-outer {
    display: inline-block;
    margin-right: 0;
    padding-right: 0;
    width: 100%;
}

.ant-progress-show-info .ant-progress-outer {
    margin-right: calc(-2em - 8px);
    padding-right: calc(2em + 8px);
}

.ant-progress-inner {
    background-color: #081e15;
    border-radius: 100px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.ant-progress-text {
    color: hsla(0, 0%, 100%, .85);
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    margin-left: 8px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 2em;
    word-break: normal;
}

.user_vip_inner .usr_vip_score_box_item h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-top: 16px;
}

.yellow {
    color: var(--primary-btn);
}

.user_vip_inner .user_vip_level_desc {
    color: var(-color-grey7);
    font-size: 14px;
    min-height: 40px;
    padding: 10px 8px;
    text-align: center;
}

.card_overview {
    display: block;
    margin: 30px auto;
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.rank_slider_container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.rank_slider_wrapper {
    color: #fff;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    margin: 46px auto 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.rank_slider_slide {
    background: #162f26;
    backdrop-filter: blur(5px);
    margin: 0 auto;
    padding: 20px 12px 30px;
    color: #b2b2b2;
    border: 1px solid var(--secondary-font);
}

.rank_slider_slide,
.rank_slider_slide_out {
    border-radius: 0.75rem;
    position: relative;
    width: 100%;
}

.rank_slider_slide_out {
    border: 2px solid transparent;
}

.swiper-slide-active {
    opacity: 1;
}

.rank_slider_image {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: center;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: -50px;
    width: 100px;
}

.rank_slider_image img {
    align-items: center;
    display: block;
    justify-content: center;
    pointer-events: none;
    text-align: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.rank_slider_slider_body {
    padding: 10px 0 20px;
    position: relative;
    text-align: center;
    top: 20px;
    z-index: 2;
}

.rank_slider_title {
    margin: 10px auto 0;
    text-align: center;
    width: 100%;
}

.rank_slider_slider_body h4 {
    color: var(--primary-btn);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 5px;
    text-align: center
}

.rank_slider_slider_body h5 {
    color: #adb6c4;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 5px;
    text-align: center
}

.rank_slider_slider_body h6 {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 5px;
    text-align: center
}

.rank_slider_title h5 {
    color: #fff;
}

.rank_slider_rule_1 {
    margin: 5px auto 0;
    padding: 0;
    width: 100%
}

.rank_slider_rule_box {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.rank_slider_rule_box_item {
    background: #081e15;
    border-radius: .5rem;
    display: block;
    display: flex;
    flex-direction: column;
    min-height: 60px;
    text-align: center;
}

.rank_slider_rule_box_item h5 {
    color: var(--primary-btn);
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px
}

.rank_slider_rule_box_item h4 {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.rank_slider_rule_2,
.rank_slider_rule_3 {
    margin-top: 10px;
    text-align: center;
    color: #fff;
}

.rank_slider_slider_body hr {
    background-color: var(--color-green1);
    border: none;
    height: 1px;
    margin: 0 auto;
    width: 70%
}

.rank_slider_rule_3 hr {
    margin-top: 10px
}

.rank_slider_rule_4 {
    margin: 5px auto;
    padding: 0;
    width: 100%
}

.rank_slider_tr_3 {
    grid-gap: 2px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2px
}

.rank_slider_tr_2 {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px
}

.rank_slider_rule_4 div {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 5px;
    text-align: center
}

.rank_slider_slide_out.active {}

.rank_slider_slide_out.active .rank_slider_slide {
    background: linear-gradient(to bottom, rgba(114, 213, 9, 1) 0%, rgba(50, 56, 56, 1) 100%);
    opacity: 1;
}

.rank_slider_slide_out.active .rank_slider_slide.rank_slider_slide:before {
    background: linear-gradient(180deg, #12442b, #85e6a1)
}

.rank_slider_slide_out.active .rank_slider_slide_bottom .btn {
    background: #85e6a1;
    color: #000
}

.rank_slider_slide_bottom .btn {
    background: var(--primary-btn);
    border: none;
    border-radius: 1.2rem;
    color: #000;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 40px;
}

.level_pagediv {
    display: grid;
    grid-template-columns: 30% auto 30%;
    height: 100%;
    margin: 20px auto 0;
    width: 200px
}

.level_pagediv,
.level_pagediv .level_btn {
    align-items: center;
    justify-content: center;
    text-align: center
}

.level_pagediv .level_btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #fff;
}

.rank_slider_slider_body hr {
    background-color: var(--secondary-font);
    border: none;
    height: 1px;
    margin: 0 auto;
    width: 70%;
}

.rank_slider_title h4 {
    color: var(--primary-btn);
}

.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-color: #909dbe;
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    margin: 10px auto;
    min-height: 260px;
    padding: 0;
    position: relative;
    width: 100%;
}

.bonus_box_custom {
    grid-template-columns: 275px 1fr;
}

.bonus_left_box {
    background-color: #e8eef7;
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    float: left;
    margin: 10px;
    min-height: 250px;
    position: relative;
}

.copy_overview_inner {
    padding: 10px;
}

.copy_title {
    color: var(--primary-btn);
    font-size: 24px;
    min-height: 68px;
    padding: 10px 10px 0;
    font-weight: 700;
}

.copy_value_title {
    color: var(--border-color);
    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: var(--primary-btn);
    color: #ffffff;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    font-size: 15px;
    border-radius: 4px;
}

.copy_value input {
    height: 34px;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
}

.bonus_right_box_top {
    background: #e8eef7;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 108px;
    padding: 10px 16px;
    border-radius: 0.75rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bonus_data_block {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.bonus_data_block h4 {
    color: var(--primary-btn);
    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;
    color: #42e0ff;
}

.bonus_right_box_bottom {
    background: #e8eef7;
    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: var(--primary-btn);
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-style: italic;
    margin: 0 auto;
    padding-left: 30px;
    max-width: 240px;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
}

.bonus_plan_txt {
    min-width: 150px;
    display: flex;
    grid-column-end: auto;
    grid-column-start: auto;
    align-items: center;
    color: var(--primary-btn);
    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: #162f26c9;
    padding: 5px;
    border-radius: 10px;
}

.bonus_ques,
.bonus_ques2 {
    color: #41dfff;
    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-color: #909dbe;
    backdrop-filter: blur(5px);
    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: #41dfff;
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 0;
}

.bonus_card_item_people {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
}

.bonus_invite_box_title {
    color: var(--primary-btn);
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 400;
}

.bonus_content_box {
    background-color: #909dbe;
    backdrop-filter: blur(5px);
    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: #ffffff;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
}

.bonus_left_text {
    color: #505050;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
}

.bonus_left_money {
    color: #42e0ff;
    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: #909dbe;
    backdrop-filter: blur(5px);
    border-radius: 18px 18px 18px 18px;
    margin-top: 24px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 24px;
}

.bonus_table_title {
    color: #ffffff;
    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: #e8eef7;
    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: #6a7b8a;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.bonus_table_invite_nav {
    align-items: center;
    color: var(--primary-btn);
    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: #b4c4e7;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #99b2e7;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: #89adf9;
}

.bonus_box .bonus_card_overview {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bonus_card_overview_title h2 {
    color: var(--primary-btn);
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
    /* filter: drop-shadow(2px 2px 5px #000); */
}

.questiontool_wrap {
    position: relative;
}

.bonus_bets_box {
    background-color: #909dbe;
    backdrop-filter: blur(5px);
    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: #e8eef7;
    border-radius: 10px;
    padding: 20px 20px 25px 25px;
    font-weight: 600;
}

.bonus_bets_desc {
    color: #909dbe;
    font-size: 16px;
    line-height: 1.5;
}

.bonus_bets_top_example {
    color: #909dbe;
    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: #ffffff;
    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: #e8eef7;
    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;
    color: #909dbe;
}

.bonus_bets_number {
    position: relative;
    align-items: center;
    color: var(--primary-btn);
    display: flex;
    font-size: 30px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    position: relative;
}

.bonus_bets_number_text {
    color: #909dbe;
    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-color: #909dbe;
    backdrop-filter: blur(5px);
    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: #e8eef7;
    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;
    color: #909dbe;
}

.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: #24345f;
    display: block;
    justify-content: center;
    margin: 10px auto;
    text-align: center;
    transform: scale(.8);
    font-size: 16px;
}

.bonus_userinfo_body .bonus_userinfo_score {
    color: var(--primary-btn);
}

.bonus_ranking_lottery {
    grid-gap: 10px;
    display: grid;
    margin: 0 auto;
    min-height: 280px;
    padding: 0 8px;
    width: 100%;
}

.bonus_lottery_item {
    background: #e8eef7;
    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: #7f8793;
}

.bonus_yellow {
    color: var(--primary-btn);
}

.bonus_footer_overview {
    background-color: #909dbe;
    backdrop-filter: blur(5px);
    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: #e8eef7;
    border-radius: 15px;
    height: 100%;
    opacity: 1;
    padding: 26px 23px 18px 29px;
    width: 100%;
}

.bonus_footer_right_content .bonus_footer_right_text {
    color: #909dbe;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.bonus_footer_last_text {
    margin-bottom: 0;
}

.bonus_footer_right_href {
    color: var(--primary-btn);
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.transc-l {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #859cbf;
    text-align: center;
    justify-content: center;
    position: relative;
}

.transc-r {
    padding: 0px 20px;
    width: 80%;
}

.transcation-wp {
    display: flex;
    align-items: center;
    background: #1c2532;
    border-radius: 0px 10px 10px 0px;
}

.transcation-item {
    margin-top: 20px;
}

.transc-pro {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #151c27;
    border-radius: 15px;
}

.transc-img img {
    height: 45px;
}

.num-trans {
    color: #58c2f0;
    font-weight: bold;
}

.name-trans {
    border-bottom: 2px solid #51617b;
    font-weight: bold;
}

.transc-content {
    width: 120px;
    max-width: 160px;
    text-align: center;
}

.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: #e8eef7;
    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;
}

.chatMsg {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 80px);
    margin-bottom: 30px;
}

.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;
    position: relative;
    color: #000;
    border-radius: 5px;
}

.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: #6a7b8a;
    font-weight: 100;
}

.msg-reply {
    margin-left: inherit;
    /* margin-right: 10px; */
    background: #909dbe;
    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;
}

.chatBox .mdi-attachment {
    position: absolute;
    z-index: 2;
    left: 10px;
    font-size: 20px;
    bottom: 15px;
    color: #4d61a6;
    cursor: pointer;
}

.chatBox .mdi-send {
    width: 32px;
    height: 32px;
    line-height: 32px;
    position: absolute;
    z-index: 2;
    bottom: 8px;
    right: 10px;
    font-size: 16px;
    color: #fff;
    background: var(--secondary-font);
    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: #fff;
    padding: 12px 50px 12px 40px;
    position: absolute;
    bottom: 0;
    min-height: 45px;
    overflow: hidden;
    color: #000;
}

.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: #ffffff;
    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;
}

.point-wrp {
    display: flex;
    gap: 15px;
}

span.img-point img {
    height: 30px;
}

.point-btm {
    border-top: 1px solid var(--secondary-font);
    width: 92%;
    padding-bottom: 20px;
}

.point-btm .left_container_bonus_box {
    border: 1px solid var(--border-color);
    background: var(--border-color);
}

.ply-point {
    text-align: center;
    padding: 15px;
    color: var(--border-color);
    font-weight: bold;
}

.point-btm ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tab_wrapper-slots {
    display: flex;
    align-items: center;
    background-color: #000e097d;
    border-radius: 10px;
    padding: 10px;
    justify-content: space-between;
    align-items: baseline;
}

.arrow_slider_wrp.arrow_slider_wrp_slots_custom {
    display: flex;
    align-items: center;
    justify-content: end;
}

.swiper-wrapper-custom-slots .swiper-slide-active .hotgame-main-img_pro {
    background-color: #ffb612;
}

.swiper-wrapper-custom-slots .swiper-slide-active .hotgame-main-img_pro img {
    filter: brightness(7.5);
}

.af-wrap {
    width: 100%;
    margin: 0px auto;
}

.aff-bnr {
    position: relative;
}

.btn-aff {
    background: var(--gradient-btn);
    color: #000;
    font-size: 20px;
    padding: 10px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    width: 25vw;
    font-weight: bold;
    border: none;
    border: 1px solid var(--border-color);
}

.btn-aff-wrap {
    display: flex;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 30px;
}

.aff-1 h4 {
    text-align: center;
    font-size: 35px;
}

.aff-1 {
    margin-top: 4vw;
}

.in-aff-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #162f26;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 20px;
}

.aff-in-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
    margin-top: 25px;
}

.in-aff-top {
    display: flex;
    align-items: flex-end;
    color: #f98400;
    justify-content: space-between;
}

.in-aff-top h5 {
    font-size: 24px;
    width: 50%;
    margin-bottom: 18px;
    color: var(--primary-btn);
}

.aff-content p {
    color: #6a717b;
    font-size: 15px;
}

.aff-content a {
    color: var(--primary-btn);
}

.aff-reward h4 {
    font-size: 35px;
    text-align: center;
}

.aff-reward {
    margin-top: 4vw;
}

.aff-reward p {
    color: #6a717b;
    font-size: 15px;
    text-align: center;
    margin-top: 1vw;
    margin-bottom: 3vw;
}

.btn-reward {
    background: var(--primary-btn);
    color: #000;
    border-radius: 20px;
    font-size: 24px;
    padding: 10px 40px;
    font-weight: 500;
}

.btn-reward {
    text-align: center;
    margin: 0px auto;
    display: flex;
    padding: 10px 20px;
    border: none;
}

.rwd-graph {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4vw;
}

.graph-in {
    background-color: #162f26;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
}

.aff-in-2 {
    display: flex;
    justify-content: space-between;
    height: 7vw;
}

.rwd-l h5 {
    color: var(--primary-btn);
    margin-bottom: 20px;
}

.rwd-l p {
    font-size: 15px;
}

.rwd-info {
    font-size: 15px;
}

.ttx-y {
    font-size: 24px;
    color: var(--primary-btn);
}

.ttx-g {
    color: var(--primary-btn);
}

.rwd-wrap {
    background: var(--body-color);
    margin: 0px;
    margin-top: 20px;
    border-radius: 20px;
    height: auto;
}

.rwd-top-l {
    display: flex;
    flex-direction: column;
    width: 50%;
    font-size: 12px;
}

.rwd-top {
    display: flex;
    color: #6a717b;
    padding: 20px 50px;
    font-size: 15px;
}

.img-graph img {
    display: block;
    margin: 0px auto;
}

.wd-ft {
    display: flex;
    justify-content: end;
    padding: 5px 65px;
}

p.rwd-ft-p {
    text-align: center;
    padding: 10px;
}

.rwd-l {
    width: 60%;
}

.top-txt {
    color: #6a717b;
    padding: 20px;
}

.rewd-date {
    background-color: #162f26;
    backdrop-filter: blur(5px);
    margin-top: 4vw;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 50px;
    align-items: baseline;
    color: #fff;
}

.rewd-1 {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: center;
    margin-top: 30px;
}

.rewd-date h4 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    display: block;
    width: 100%;
    text-align: center;
}

.amt-red {
    background: var(--body-color);
    color: var(--primary-btn);
    margin: 10px;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
}

.rwd-table {
    margin: 4vw auto;
    display: block;
    text-align: center;
}

.table-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 2vw;
}

.rwd-in {
    width: 50%;
}

table.rwdin-table tr th:first-child {
    text-align: left;
}

table.rwdin-table tr th:last-child {
    text-align: right;
}

table.rwdin-table {
    width: 100%;
}

table.rwdin-table tr td:first-child {
    text-align: left;
}

table.rwdin-table tr td:last-child {
    text-align: right;
}

table.rwdin-table tr:nth-child(even) {
    background-color: #d3b95e;
    backdrop-filter: blur(5px);
    color: #000;
}

table.rwdin-table tr th {
    font-size: 12px;
    font-weight: 100;
    color: #fff;
    padding: 10px 20px;
}

table.rwdin-table tr td {
    padding: 10px 20px;
    font-size: 15px;
}

table.rwdin-table tr {
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

.af-wrap.aff-off {
    margin: 0px auto;
}

.dataTables_wrapper {
    color: var(--primary-btn);
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
    background: var(--secondary-font);
    color: #000;
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

.dataTables_length label {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    max-width: 30%;
    color: var(--primary-btn);
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.dataTables_paginate {
    color: #9174bd;
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
    border: 1px solid var(--primary-btn);
    text-align: center;
    color: var(--primary-btn);
}

.dataTables_paginate {
    display: flex;
    gap: 10px;
    color: var(--primary-btn);
}
.dataTables_paginate a {
    color: var(--primary-btn);
}
.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;
    width: 100px;
}

.dataTables_scroll {
    margin-top: 25px;
}

.p2e-table {
    max-width: 1000px !important;
}

.btn-apply {
    background: var(--gradient-btn);
    color: #fff;
    border: 0px;
    font-weight: 500;
}

.history-play-to-earn {
    margin: 10px 0px;
}

.btn-apply:hover {
    background: var(--gradient-btn);
    color: #fff;
}

/*Bank*/
.info-wrap .intro {
    min-height: 150px;
}

.info-wrap p {
    margin-bottom: 25px;
    font-size: 14px;
}
table.banking-table {
    box-shadow: inset 0 0 5px 1px #0b3155;
    text-align: center;
}
.info-wrap tr td {
    color: #fff;
    font-weight: 600;
    padding: 2px;
    border: 1px solid #0b3155;
}

.info-wrap tr.trans td {
    color: #fff;
    border: 1px solid #0b3155;
    padding: 2px;
    background: linear-gradient(130deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
}

.info-wrap ul {
    padding-left: 18px;
}

.info-wrap ul li {
    list-style: disc;
}

.info-wrap ol {
    padding-left: 18px;
}

.info-wrap oll li {
    list-style: auto;
}

.info-wrap tr.trans1 td {
    color: #fff;
    border: 1px solid #0b3155;
    padding: 2px;
}

.info-wrap .intro_subtitle {
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    color: #80b4c3;
    margin-bottom: 23px;
    width: 100%;
    display: flex;
}

#closeButton {
    right: 0;
    top: 0px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    font-weight: bold;
}

.bnk-td {
    background: #ffffff;
    color: #919ebe;
}

.custom-label {
    position: relative;
    width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
    margin: 0px;
}

.custom-input,
.custom-checkbox {
    position: absolute;
    width: inherit;
    height: inherit;
    border: 0.5px solid #ffffff;
    border-radius: 3px;
}

.custom-input {
    display: none;
}

.custom-checkbox {
    display: grid;
    place-items: center;
    cursor: pointer;
}

.firstbox {
    border-width: 1.5px;
}

.custom-checkbox::after {
    content: 'âœ˜';
    position: absolute;
    font-size: 0.6rem;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.25s, opacity 0.5s;
}

.custom-input:checked~.custom-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

.btn-del {
    border: none;
    background: #ee0979;
    background: #ffffff;
    color: #909dbe;
    border-radius: 5px;
    padding: 5px 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-delete {
    color: #e91e1e;
    padding: 0px;
    border: none;
    background: none;
}

.btn-delete:hover {
    color: #d7a402;
}

/*Redemption*/
.red-bg {
    background: 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;
}

.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;
}

.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;
}

.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: 45px;
    right: 0px;
    text-align: center;
}

.pred-btn {
    background: none;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

span.red-pnt {
    color: #edc983;
}

.pt-btn {
    font-size: 20px;
}

.red-txt-gd {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: #1a0b24;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 20px;
    filter: drop-shadow(1px 1px 5px #a768e7);
}

.submit-btn {
    background: none;
    border: none;
    display: block;
    margin: 0px auto;
    position: relative;
}


img.img-sh {
    position: absolute;
    z-index: 1;
    left: 0px;
}

img.img-sh2 {
    z-index: 2;
}

.transc-l img {
    display: block;
    margin: 0px auto;
    width: 50px;
    margin-right: 15px;
}

.btn-live {
    display: flex;
    align-items: center;
}

.text-trs {
    color: #fff;
    font-size: 20px;
    line-height: 21px;
}

.fnt-wh {
    color: var(--secondary-border);
    font-size: 20px;
    font-weight: bold;
}


.rep_modal .modal-dialog {
    background: none;
}

.rep_modal .modal-content {
    background: none;
    border: none;
}

.rep_modal .daily-wrap-in {
    box-shadow: none;
    border: none;
    background: url("../images/reward-redemption/bg-reward.png")no-repeat center top;
    background-size: contain;
    min-width: 312px;
}

.rep_modal img.img-wrap {
    height: 85% !important;
    position: relative;
    top: -78px;
}

.modal-congrat {
    position: relative;
}

.rep_modal .modal-congrat h5 {
    position: absolute;
    top: 57%;
    left: 0;
    right: 0;
    margin: auto;
    color: #c498ff;
    font-size: 28px;
}

.rep_modal .congrat-text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 67px;
}

.rep_modal .color-text1 {
    color: #c498ff;
}

.rep_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
    z-index: 1;
}

.reptnc_modal .modal-content {
    background: none;
    padding: 0px;
}

.reptnc_modal .modal_body_view {
    background: #000c07;
    border: 1px solid var(--border-color);
    box-shadow: 0px 0px 19px 4px var(--border-color);
}

.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: #fff;
    opacity: 1;
    font-size: 47px;
}

.reptnc_modal .modal_body_view h5 {
    color: #fff;
    background: var(--gradient-btn);
    border-radius: 8px 8px 0px 0px;
}

.reptnc_modal .tnc-content {}

.rep_modal .claim-btn-wrap {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin: 0px auto;
    right: 0;
}


.btn-clm {
    position: absolute;
    color: #ffffff;
    left: 0;
    right: 0;
    margin: 0px auto;
    bottom: 0px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 20px #8e23d6;
    font-weight: bold;
}

.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(180deg, rgba(255, 138, 0, 1) 0%, rgba(220, 101, 0, 1) 100%);
    color: #fff;
    border: none;
    padding: 10px 30px;
    box-shadow: 0px 0px 20px 8px #8f6137, 0px 0px 20px 0px #1b140b;
    font-size: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-shadow: 0px 1px 0px white;
}

/* index */

.body_wrapper {
    display: grid;
    grid-template-columns: auto 350px;
    min-height: 0;
    min-width: 0;
}

.wrapper_1,
.wrapper_2 {
    padding: 15px;
}

.wrapper_1 {
    border-right: 1px solid var(--section-border);
    margin: 0 auto;
    width: 100%;
}

.wrapper_2 {
    border-left: 1px solid var(--section-border);
}

.wrapper_2 {
    order: 2;
    overflow: hidden;
}

.intro img {
    border-radius: 10px;
}

.btn_dropup_lang button:hover {
    background: none;
}

.left_container_grid {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.left_container_grid .left_container_bonus_txt {
    padding-bottom: 35px;
}

.header_lang p {
    margin-bottom: 0px;
    line-height: 1.4;
    margin-left: 20px;
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
    /* font-family: "SamsungSharpSans", sans-serif; */
    color: var(--border-color);
}

.header_lang {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_lang .dropdown-menu {
    background: #c9d1d8;
}

.header_lang .dropdown-item {
    color: var(--primary-btn);
}

.header_lang .dropdown-item:hover {
    background: #f5f9ff;
    color: #919ebe;
}
.btn_lang {
    padding: 10px 10px;
    background: none;
    color: #2f7d8a;
    border: none;
    font-size: 14px;
    font-weight: 500;
}
.arrow_slider a {
    color: var(--border-color);
    font-weight: bold;
}

/* side-menu */

.left_menu_container_inner .btn_dropup_lang {
    margin-top: 20px;
}

.sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.menu-button img {
    width: 30px;
    filter: drop-shadow(0px 0px 7px #00f5ff);
}

.menu-button {
    background: url("../images/index/side-menu/btn-box.png");
	background-size: 100% 100%;
    padding: 10px;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #b7ecfc;
    font-weight: 600;
    font-size: 12px;
}
.menu-button:hover,
.menu-button.active {
    background: url("../images/index/side-menu/btn-box-active.png");
	background-size: 100% 100%;
    color: #fff;
}

.menu-button img.icon-hover {
    display: none;
}

.menu-button:hover img.icon-default,
.menu-button.active img.icon-default {
    display: none;
}

.menu-button:hover img.icon-hover,
.menu-button.active img.icon-hover {
    display: block;
    filter: brightness(0) invert(1);
}

.filter-button.active .menu-button img.icon-hover {
    display: block;
    filter: brightness(0) saturate(100%) invert(45%) sepia(65%) saturate(1240%) hue-rotate(187deg) brightness(98%) contrast(107%);
}

.last-item {
    flex-direction: row;
    grid-column: 1/-1;
    gap: 5px;
}

.input_inner_forgot {
    display: flex;
    justify-content: space-between;
}

.prod-category.menu-button {
    background: none;
    border: none;
    white-space: nowrap;
}

.filter-button.active .menu-button img.icon-hover {
    display: block;
    filter: brightness(0) saturate(100%) invert(45%) sepia(65%) saturate(1240%) hue-rotate(187deg) brightness(98%) contrast(107%);
}

.filter-button.active .menu-button img.icon-default {
    display: none;
}

.filter-button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #919ebe 40%, #919ebe 60%, transparent);
    border-radius: 2px;
    opacity: 0.5;
}

.filter-button.last-btn::after {
    background: none;
}

.slider_title img {
    width: 50px;
}

.index-wrapper .swiper-wrapper {
    margin-bottom: 20px;
    /* margin-left: 5px; */
}

.prod-category.menu-button.active {
    color: var(--primary-font);
}

/* hotgame */
.hot-games {
    padding: 20px 0px;
}

.hotgame-main-img_pro img {
    border-radius: 5px;
}

.games-info .games-title {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.games-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    color: var(--secondary-border);
}

.games-info span {
    font-size: 12px;
    text-align: center;
}

.games-info p {
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--primary-font);
}

/* daily-check */

.daily-task {
    position: relative;
    cursor: pointer;
}

.task-title {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translate(-50%, 0%);
    font-weight: 600;
    white-space: nowrap;
}

.complete-btn {
    position: absolute;
    top: 45%;
    left: 0px;
    transform: rotate(345deg);
    width: 100%;
}

.daily-task img {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    width: 100%;
}

.daily-task::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5%;
    background: radial-gradient(ellipse at top center, rgb(0 147 83), #ffffff00 70%);
    border-bottom-left-radius: 100% 50%;
    border-bottom-right-radius: 100% 50%;
    pointer-events: none;
}

.daily-bg img {
    width: 100%;
}

.daily-check {
    position: relative;
    background: url(../images/index/daily-check/bg.jpg);
    background-size: cover;
    width: 100%;
    border-radius: 5px;
}

.daily-task .complete-check {
    background-color: rgba(0, 0, 0, 0.2);
    filter: brightness(0.5);
}

.week-task {
    position: relative;
    width: 75%;
    left: 25%;
    padding: 45px 30px 45px;
}

.jackpot-banner {
    position: relative;
    background: url(../images/index/jackpot/bg.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 16 / 5;
    /* Maintains a wide banner shape */
    border-radius: 5px;
    overflow: hidden;
}

.jackpot-list {
    position: relative;
    width: 75%;
    left: 35%;
    padding: 45px 25px 15px;
}

.jackpot-slide img {
    border-radius: 5px;
    border: 1px solid var(--green-color);
}

.jackpot-amount img {
    border: none;
    width: 20px;
}

.jackpot-amount {
    width: 100%;
    white-space: nowrap;
}

.jackpot-list,
.jackpot-swiper,
.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

.jackpot-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 5px;
}

.jackpot-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* This is key */
    display: block;
}

.jackpot-amount {
    position: absolute;
    bottom: 3px;
    left: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(38 152 255) 50%, rgb(19 76 126) 100%);
    padding: 5px 10px;
    border-radius: 25px;
    justify-content: center;
    box-shadow: -1px 0px 2px 1px #3188e0;
}

.jackpot-amount img {
    width: 16px;
    height: 16px;
}

.jackpot-banner .number {
    max-width: 325px;
    background: rgb(8 8 8);
    width: 100%;
    height: 60px;
    border-radius: 60px;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 50px;
    border: 2px solid #aa8426;
    color: rgb(255, 255, 255);
}

.jackpot-text_player span {
    font-weight: bold;
    background: linear-gradient(180deg, #ffe205, #f9ae1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* product page*/

.banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    /* Maintains a wide banner shape */
    border-radius: 5px;
    overflow: hidden;
}

.sport-banner {
    background: url(../images/products/sports/banner.webp) center no-repeat;
    background-size: cover;
}

.slot-banner {
    background: url(../images/products/slots/banner.webp) center no-repeat;
    background-size: cover;
}

.casino-banner {
    background: url(../images/products/casino/banner.webp) center no-repeat;
    background-size: cover;
}

.esport-banner {
    background: url(../images/products/esport/banner.webp) center no-repeat;
    background-size: cover;
}

.fishing-banner {
    background: url(../images/products/fishing/banner.webp) center no-repeat;
    background-size: cover;
}

.poker-banner {
    background: url(../images/products/poker/banner.webp) center no-repeat;
    background-size: cover;
}

.lottery-banner {
    background: url(../images/products/lottery/banner.webp) center no-repeat;
    background-size: cover;
}

.product-list {
    position: relative;
    top: 50%;
    left: 34%;
    transform: translateY(-50%);
    padding: 10px;
}

.product-slide img {
    border-radius: 15px;
    border: 1px solid var(--green-color);
    /* box-shadow: 1px 2px 5px 0px #42e0ff; */
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* This is key */
    display: block;
}

.product-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 5px;
}

.prod-button:hover img.icon-default,
.prod-button.active img.icon-default {
    display: none;
}

.prod-button:hover img.icon-hover,
.prod-button.active img.icon-hover {
    display: block;
    filter: brightness(0) saturate(100%) invert(45%) sepia(65%) saturate(1240%) hue-rotate(187deg) brightness(98%) contrast(107%);
}

.prod-button {
    background: #e8eef7;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
    font-weight: 500;
    text-transform: uppercase;
    color: #919ebe;
}

.prod-button.active,
.prod-button:hover {
    background: var(--header-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-btn);
}

.prod-button .icon-hover {
    display: none;
}

.prod-wrapper .tab_wrapper_inn {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.prod-wrapper .tab-container {
    background: #051626;
    padding: 10px;
    border-radius: 5px;
}

.prod-wrapper .tab-content {
    margin-top: 15px;
}

.prod-main-img_pro {
    position: relative;
}

.prod-main-img_pro .game-button:hover {
    background: none;
}

.playpop {
    display: flex;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    padding: 10px 20px;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

.prod-main-img_pro img {
    border-radius: 10px;
}

.slot-prod {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.prod-main-img_pro:hover .playpop {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

a.play-btn {
    display: block;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    /* margin: auto; */
    border-radius: 37px;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    transition: .5s;
    transform: scale(0.5);
    opacity: 0;
    background-color: var(--primary-btn);
    border: 2px solid var(--primary-btn);
    border-radius: 10px;
}

.prod-main-img_pro:hover .playpop a.play-btn {
    opacity: 1;
    transform: scale(1);
    transition: .5s;
}

:focus-visible {
    outline: none;
}

/*rapid page*/
.daily-bg {
    position: relative;
}

.sel-form option {
    background: #000;
}

/* promotion */
.title-line {
    display: flex;
    align-items: center;
    text-align: center;
    color: #7b7b7b;
    font-weight: 500;
    font-size: 15px;
    margin: 20px 0;
}

.title-line::before,
.title-line::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #2a2a2a;
    margin: 0 10px;
}

.promo-btn p {
    margin-bottom: 0px;
    white-space: nowrap;
}

.promo-button {
    min-width: 120px;
    padding: 10px;
}

.promo-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.promo-slider-container {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 100px;
    margin: auto;
    overflow: visible;
}

.promo-slider-track {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.promo-slider-card {
    position: absolute;
    width: 240px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.9);
    z-index: 1;
    filter: brightness(0.5);
}

.promo-slider-card.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
    filter: brightness(1);
}

.promo-slider-card.prev {
    left: -20%;
    z-index: 2;
}

.promo-slider-card.next {
    left: 70%;
    z-index: 2;
}

.promo-slider-content-item {
    display: none;
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.promo-slider-content-item.active {
    display: block;
}

.d-hide {
    display: none;
}

.header_center {
    display: none;
}

.promo-table {
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    padding: 5px;
    overflow-x: scroll;
}

.promo-content {
    font-size: 14px;
    text-align: left;
    color: #636363;
    font-weight: 500;
}

.promo-cont {
    margin-top: 10px;
}

.promo-table table {
    width: 100%;
}

.promo-table tr td:first-child {
    text-align: left;
}

.promo-tnc p {
    margin-bottom: 0px;
}

.promo-tnc {
    margin-top: 15px;
}

.promo-table tr td {
    min-width: 100px;
}

.promo-tnc ul li {
    list-style: nu;
}

.promo-tnc ul {
    margin-left: 15px;
}

.promo-tnc li {
    padding-left: 10px;
}

.promo_wrap .wrapper_inner .d-hide {
    margin-bottom: 70px;
}

/* footer */
.desktop_footer .container {
    max-width: 100%;
    padding: 0px 30px;
}

.footer-provider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-provider img {
    width: 110px;
    margin-right: 15px;
}

.social-icon {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon img {
    width: 40px;
}

.footer-1 {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1600px) {
    .body_wrapper {
        display: grid;
        grid-template-columns: 950px 350px;
        min-width: 0;
        min-height: 0;
        justify-content: center;
    }

    .wrapper_1 {
        margin: 0px;
    }

    .task-title {
        font-size: 12px;
        top: 4px;
        white-space: nowrap;
    }

    .jackpot-banner .number {
        max-width: 300px;
        bottom: 12px;
        left: 25px;
    }

}

@media (max-width: 1440px) {
    .body_wrapper {
        display: block;
        grid-template-columns: 840px 350px;
        min-width: 0;
        min-height: 0;
    }

    .transaction_title_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer_grid {
        padding: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    .task-title {
        font-size: 15px;
        top: 0px;
        white-space: nowrap;
    }

    .week-task {
        padding: 30px;
    }

    .jackpot-list {
        padding: 15px;
        top: -10px;
        padding-bottom: 0px;
    }

    .product-slide {
        padding: 10px;
    }

}

@media (max-width: 1200px) {
    .jackpot-banner {
        background: none;
        aspect-ratio: 0;
    }

    .jackpot-banner img {
        position: relative;
    }

    .jackpot-list {
        padding: 0px;
        padding-bottom: 0px;
        width: 100%;
        left: 0px;
        padding-top: 20px;
    }

    .m-banner {
        display: block;
    }

    .jackpot-banner .number {
        top: 30%;
        font-size: 25px;
        height: 50px;
        max-width: 300px;
        left: 50%;
        transform: translate(-50%, 0%);
    }

    .daily-check {
        background: none;
        aspect-ratio: 0;
    }

    .daily-check img {
        position: relative;
    }

    .week-task {
        padding: 20px 0px 15px;
        width: 100%;
        left: 0px;
    }

    .banner {
        background: none;
        aspect-ratio: 0;
    }

    .product-list {
        left: 0px;
        transform: none;
        top: 0px;
        padding: 10px 0px 0px;
    }

    .product-slide img {
        box-shadow: 0px 0px 2px 0px #1bc379;
    }
}

@media (max-width: 999px) {

    .body_wrapper {
        display: block;
    }

    .wrapper_1,
    .wrapper_2 {
        padding: 0px;
        padding-top: 15px;
    }

    .wrapper_2 {
        display: none;
    }

    header:after {
        content: '';
        background-image: url(../images/header/shape.png);
        position: absolute;
        width: 304px;
        height: 78px;
        left: 0;
        top: 0;
        background-size: contain;
        pointer-events: none;
        background-repeat: no-repeat;
        display: none;
    }

    header {
        padding-left: 10px;
        padding-right: 10px;
        gap: 10px;
    }

    .header_lang {
        display: none;
    }

    .logo_desktop {
        grid-gap: 5px;
    }

    .logo {
        width: 136px;
    }

    a.logo img {
        height: auto;
    }

    .week-task {
        padding: 10px 0px 0px;
        left: 0px;
    }

    .intro_promo {
        background-color: #bcee5529;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-radius: 5px;
        padding: 10px;
        grid-gap: 10px;
    }

    .intro_promo_inn span {
        font-size: 2vw;
    }

    body.body_main_wrap {
        padding-left: 0;
        padding-top: 64px;
        transition: padding .1s ease-in-out;
    }

    .promo_wrap {
        padding-left: 0;
        padding-top: 40px !important;
    }

    body.body_main_wrap.body_main_container {
        padding-left: 0;
        transition: padding .1s ease-in-out;
    }

    .intro_img {
        display: none;
    }

    .desktop_footer .container {
        padding: 0px;
    }

    .footer-provider {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .footer_copyright {
        margin-bottom: 50px;
    }

    .desktop_footer {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .mobile_footer {
        display: block;
    }

    .footer-menu {
        display: block;
    }

    .mobile_dropdown {
        display: flex;
    }

    .tab_search {
        display: none;
    }

    .tab_wrapper_inn {
        overflow-x: scroll;
        display: flex;
        width: 100%;
    }

    .prod-wrapper .tab_wrapper_inn {
        grid-template-columns: repeat(6, 1fr);
    }

    .prod-wrapper .tab-content {
        margin-top: 5px;
    }

    .filter-button {
        width: 100%;
        text-align: left;
        padding: 10px;
    }

    .tab_wrapper {
        display: block !important;
    }

    .modal_body_share_left {
        display: none;
    }

    .modal_body_right {
        width: 100%;
    }

    .inn_product_wrap {
        display: grid;
        grid-gap: 20px;
        margin: 10px 0 0 0;
        flex-flow: wrap;
        grid-template-columns: repeat(3, 1fr);
    }

    .content_header_txt {
        color: #55657e;
        max-width: 400px;
        font-size: 11px;
        line-height: 1.3;
        margin: auto;
        position: absolute;
        bottom: -2px;
        font-weight: 500;
    }

    .mobile_promo {
        display: block;
    }

    .desktop_promo {
        display: none;
    }

    .promo_filter_wrap {
        display: none;
    }

    .filt-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        margin: 30px 0;
    }

    .contact_wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .afterlogin_inn_wrap {
        display: grid;
        grid-template-columns: minmax(260px, 1fr);
        gap: 0;
    }

    .deposit_bank_choose_wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 3px 0px;
        margin-top: 25px;
    }

    .afterlogin_inn_wrap_faqbody {
        display: none;
    }

    .head_afterlogin_custom_mobile {
        display: flex;
        gap: 0px;
    }

    .header_web_show {
        /* display: none; */
    }

    .header_mobile_show {
        display: block;
    }

    .footer_pay {
        display: block;
    }

    .afterlogin_dep_body {
        background-color: #e8eef7;
        padding: 1.25rem;
    }

    .afterlogin_dep_head {
        background-color: #e8eef7;
        padding: 0.7rem 1.25rem;
    }

    .head_bal {
        font-size: 24px;
        font-weight: 700;
    }

    .select_form_history {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: end;
        grid-gap: 0;
    }

    .select_form_history .submit_btn_wrap_with {
        margin-top: 0;
    }

    .history_table_wrap.history_table_wrap_inbox {
        background-color: #24262b;
        padding: 0;
        border-radius: 10px;
        margin-top: 0;
    }

    .profile_userimg_wrap {
        background-color: #909dbe;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
        border-radius: 16px;
        display: grid;
        padding-left: 0;
        grid-gap: 10px;
        justify-content: center;
    }

    .profile_userimg {
        text-align: center;
    }

    .profile_content_wrap {
        padding: 1.5rem;
        background-color: #909dbe;
        border-radius: 16px;
        margin-top: 1.2rem;
    }

    .profile_navimenu {
        display: block;
    }

    button.logout {
        background-color: transparent;
        height: 52px;
        border-radius: 10px;
        border: 1px solid #909dbe;
        color: #909dbe;
        font-weight: 700;
        width: 100%;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    button.logout i {
        color: #909dbe;
        margin-left: 10px;
        font-size: 20px;
    }

    .header_btn_dep.m-dp {
        flex-direction: column;
        background: none;
        font-size: 12px;
        padding: 0px;
        gap: 5px;
        align-items: center;
    }

    .m-dp .btn_dep {
        padding: 2px 5px;
        border-radius: 5px;
        display: flex;
        min-width: 65px;
        gap: 5px;
    }

    .login_btn_container {
        gap: 5px;
    }

    .reg-list ul {
        display: flex;
        justify-content: space-between;
        gap: 50px;
        position: relative;
    }

    .m-show {
        display: block;
    }

    a.btn-bln {
        line-height: 14px;
        padding: 2px;
        font-size: 12px;
        border-radius: 7px;
        display: flex;
    }

    .point-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .tab-pay ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .tab-pay ul a {
        padding: 10px 0px !important;
        font-size: 13px;
    }

    .amt-qr {
        flex-direction: column;
        margin-top: 10px;
    }

    .qr-info {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .nm-qr {
        font-size: 12px;
    }

    .pen-top {
        flex-direction: column;
    }

    .m-hide {
        display: none;
    }

    .vip-non {
        height: 160px;
    }

    .vip-1 img {
        height: 140px;
    }

    h3.vip-ttl {
        font-size: 7.3vw;
        padding: 0px 0px;
    }

    .lvl-lv ul {
        font-size: 12px;
    }

    .table_vip_responsive {
        overflow-x: scroll;
        margin-left: 45%;
        overflow-y: visible;
        padding: 0;
    }

    .table_vip_responsive tr th.headcol {
        width: 45%;
        padding: 10px;
        font-size: 10px;
        height: 47px;
    }

    .table_vip_outwrap {
        padding: 10px;
    }

    table.vip_table tr.hr_cus_wrap {
        position: relative;
        display: none;
    }

    .headcol {
        position: absolute;
        width: 12em;
        left: 0;
        top: auto;
        border-top-width: 2px;
        margin-top: -1px;
        height: auto;
    }

    .headcol_first_mobile {
        background-color: #153729;
        border-top-left-radius: 10px;
    }

    table.vip_table tr td span {
        font-size: 12px;
    }

    .vip_table_head.headcol_sec_mobile,
    table.vip_table.headcol_sec_mobile {
        border-top-left-radius: 0;
    }

    .table_vip_responsive tr th.headcol.headcol_sub {
        font-weight: 700;
        color: #fff;
        font-size: 11px;
        line-height: 1;
    }

    .fea_grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 25px;
        padding: 20px 0;
    }

    .vip_tnc_wrap {
        padding: 7%;
    }

    table.vip_table tr td {
        padding: 7px;
        font-size: 10px;
    }

    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: relative;
    }

    .daily-bg ul li a img {
        display: block;
        margin: 0px auto;
    }

    .modal-congrat h5 {
        font-size: 30px;
    }

    .daily_modal .close {
        top: -35px;
    }

    .mission-bg ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .wheel_product.wheel-wrap {
        min-height: 500px;
    }

    .bonus_box_custom {
        grid-template-columns: 1fr;
    }

    .bonus_right_box_top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top-left-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
    }

    .trophy_m {
        display: block;
        width: 90px;
        margin: auto;
    }

    .trophy_w {
        display: none;
    }

    .bonus_right_box_bottom {
        grid-gap: 0;
        border-bottom-right-radius: 0.75rem;
        border-top-right-radius: 0.75rem;
        grid-template-columns: 110px 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        padding: 10px;
    }

    .bonus_right_box {
        padding: 10px;
    }

    .bonus_card_overview_inner {
        display: grid;
        justify-content: initial;
        grid-gap: 15px;
    }

    .bonus_card_item {
        width: 100%;
    }

    .bonus_content_box {
        display: grid;
    }

    .bonus_left_content_box {
        padding: 30px;
        width: 100%;
    }

    .bonus_bets_top {
        display: grid;
    }

    .bonus_bets_top_left {
        width: 100%;
        padding: 30px;
    }

    .bonus_bets_top_right {
        width: 100%;
    }

    .bonus_bets_bottom {
        display: grid;
        grid-gap: 15px;
    }

    .bonus_bets_bottom_left {
        width: 100%;
    }

    .bonus_bets_bottom_right {
        width: 100%;
    }

    .bonus_ranking_inner {
        grid-template-columns: 100%;
        grid-gap: 20px;
    }

    .bonus_footer_overview {
        display: grid;
        padding: 15px;
    }

    .bonus_footer_right {
        margin-left: 0;
    }

    .bonus_footer_left {
        margin: auto;
        padding-bottom: 20px;
    }

    .user_vip_inner {
        grid-template-columns: 1fr;
    }

    .user_vip_inner .user_level_list_body {
        grid-template-columns: repeat(3, 1fr);
    }

    .user_vip_inner .user_level_list {
        padding: 0px;
    }

    .vip-wrap ul {
        flex-direction: column;
    }

    .vip_title_b {
        font-size: 14px;
    }

    .transc-l {
        width: 100px;
        border-radius: 10px;
        height: 100px;
    }

    .transcation-wp {
        display: flex;
        flex-direction: column;
        align-items: baseline;
    }

    .transc-r {
        width: 100%;
        padding: 10px;
    }

    .transc-content {
        max-width: 100%;
        width: 60%;
        font-size: 12px;
    }

    .point-wrp {
        flex-direction: column;
    }

    .point-btm ul {
        flex-direction: column;
        align-items: center;
    }

    .tab_wrapper-slots {
        display: none;
    }

    .mobile_dropdown-slots {
        display: flex;
    }

    .af-wrap {
        width: 100%;
    }

    .af-wrap .aff-off {
        width: 100%;
        margin: 0px auto;
    }

    .aff-in-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .rwd-graph {
        grid-template-columns: repeat(1, 1fr);
    }

    .rwd-wrap {
        height: auto;
        padding: 20px;
    }

    .rwd-top {
        padding: 0px;
    }

    .table-wrap {
        flex-direction: column;
    }

    .rwd-in {
        width: 100%;
    }

    .rwd-l {
        text-align: center;
        width: 100%;
    }

    .aff-in-2 {}

    .rwd-r img {
        display: block;
        margin: 0px auto;
    }

    .btn-aff {
        width: 85%;
        font-size: 16px;
    }

    .rewd-1 {
        flex-direction: column;
        width: 100%;
    }

    .rewd-date {
        flex-direction: column;
    }

    .info-side {
        width: 25%;
    }

    .aff-1 h4 {
        font-size: 20px;
    }

    .in-aff-top h5 {
        font-size: 18px;
    }

    .aff-reward h4 {
        font-size: 20px;
    }

    .aff-in-2 {
        flex-direction: column;
        height: auto;
    }

    .red-in img {
        margin-top: 15px;
    }

    .rewd-date h4 {
        font-size: 16px;
    }

    .btn-aff-wrap {
        margin-top: 30px;
    }

    .form_wrap.btn-jn {
        left: 0px;
        right: 0;
        margin: auto;
        margin-top: 20px;
    }

    .reg-box {
        min-height: auto;
    }

    .profile_navimenu_inn {
        grid-template-columns: repeat(2, 1fr);
    }

    .my-inbox {
        right: 30px;
    }

    .vip-ico img {
        height: 22px;
    }

    .history-play-to-earn button {
        font-size: 12px;
    }

    .dataTables_length label {
        width: 100%;
        max-width: 100%;
    }

    .daily_wrap_img img {
        width: 100%;
    }

    .transaction_box {}

    .transaction_title_box {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 25px;
    }

    .btn-live {
        /* width: 50%; */
    }

    .transaction_container {
        background-size: contain;

    }

    .wrap-live {
        width: 100%;
    }

    .slot-wrap .filter-button {
        justify-content: flex-start;
    }

    .btn-bfr {
        bottom: 10%;
    }

    .task-title {
        font-size: 14px;
        top: 8px;
        white-space: nowrap;
    }

    .complete-btn {
        top: 35%;
    }

    .footer_grid {
        display: flex;
        flex-direction: column;
        padding: 10px;
        gap: 15px;
    }

    .footer-1 {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
    }

    .product-slide {
        padding: 0px;
    }

    .slot-prod {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-header .m-hide {
        display: none;
    }

    .promo-header {
        height: 40px;
        background: #1a1b1f;
    }

    .hide-footer {
        display: none;
    }

    .d-hide {
        display: block;
    }

    .header_center {
        display: flex !important;
        align-items: center;
        width: 100%;
    }

}

@media (max-width: 600px) {
    .filt-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
        margin: 30px 0;
    }

    .contact_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .m-hide {
        display: none;
    }

    .daily-bg ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: relative;
    }

    .mission-bg ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .play2earn-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .p2e-amount {
        grid-template-columns: repeat(1, 1fr);
    }

    .wheel_product.wheel-wrap {
        height: 215px;
        width: 100%;
        margin: 0px auto;
        min-height: 215px;
    }

    .wheel-all ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .redemption-wrapper {
        display: flex;
        flex-direction: column;
        gap: 86px;
    }

    .rep_modal img.img-wrap {
        position: relative;
    }

    .rep_modal .congrat-text {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 45px;
        font-size: 14px;
    }

    .rep_modal .image-wrap {
        height: auto;
    }

    .rep_modal .modal-congrat h5 {
        font-size: 18px;
    }

    .rep_modal .close {
        right: 0px;
    }

    button.submit-btn {
        display: block;
        margin: 0px auto;
    }

    .rep_modal .claim-btn-wrap {

        position: absolute;
        bottom: 0px;
        left: 0;
        margin: 0px auto;
        right: 0;
    }

    .intro_promo {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro_promo_inn span {
        font-size: 3vw;
    }

    .transaction_title_box {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        gap: 25px;
    }

    .downloadbody {
        display: flex;
    }

    .downloadbox {
        width: 50%;
    }

    .task-title {
        font-size: 12px;
        top: 0px;
        white-space: nowrap;
    }

    .header_title {
        text-align: center;
        width: 100%;
    }

}

@media (max-width: 768px) {
    .carousel.desktop {
        display: none;
    }

    .carousel.mobile {
        display: block;
    }

    .prod-wrapper .tab_wrapper_inn {
        grid-template-columns: repeat(5, 1fr);
    }

    .jackpot-banner .number {
        font-size: 15px;
        height: 30px;
        max-width: 175px;
        top: 24%;
    }
}

.prod-category img {
    filter: drop-shadow(0px 0px 7px #00f5ff);
}
.ranking-list {
    background: #fff;
}

.mission-reward-box {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 2px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
	margin-bottom: 15px;
}
.top-half {
    position: relative;
    background: url(../images/index/mr-top-half.png) no-repeat top center;
    background-size: 100% 100%;
    height: 187px;
    text-align: center;
    padding: 25px 10px 0;
}
.mrtitle {
    font-size: 21px;
}
.msimg-icon {
	vertical-align: bottom;
}
.msimg-icon img {
	max-height: 60px;
}
.mrblue {
	font-weight: 700;
    color: #7df9ff;
}
.mrjoin-text {
    max-width: 90%;
    margin: 23px auto 0;
    color: #b7ecfc;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
}
.bottom-half {
    position: relative;
    padding: 0 10px 10px;
    border-top: 1px solid #5486a9;
}
.glow-line {
    filter: drop-shadow(0px 0px 3px #43c6d3);
    max-width: 95%;
    margin: -13px auto 0;
}
.free-pvd {
    text-align: center;
	margin-bottom: 5px;
}
.free-pvd div {
    width: 24%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
}
.mrbtn-wrap button {
	width: 49%;
}
button.morebtn {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
    height: 42px;
    border-radius: 6px;
    padding: 2px 10px;
	margin: 0 auto;
	text-transform: uppercase;
	font-size: 14px;
}
.left-btm-sidemenu {
    position: relative;
    margin: 15px 0;
}
.left-btm-sidemenu a {
	display: inline-block;
    padding: 10px 10px;
    font-size: 14px;
	color: #2f7d8a;
	font-weight: 500;
}
.left-btm-sidemenu a:hover {
	color: #fff;
}
.smenu-icon {
    margin-right: 10px;
}
.smenu-icon img {
    max-height: 32px;
}
.dropdown-menu.languages {
    background: rgb(0, 0, 0, 0.85);
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
}
.dropdown-menu.languages a.dd-item {
	display: block;
}
a.dd-item:hover {
	background: #2f7d8a;
	color: #fff;
}
.top-slot-game-wrapper {
    position: relative;
    background: url(../images/index/top-pick-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 20px 20px;
	border-radius: 12px;
	overflow: hidden;
}
.top-slot-title {
    font-size: 22px;
    color: #7df9ff;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.tstext-1 {
    font-weight: 700;
}
.tstext-2 {
    font-size: 85%;
	color: #b7ecfc;
}
.tgbox {
    position: relative;
    max-width: 16%;
    display: inline-block;
}
.tg-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 78%;
    margin: auto;
    border-radius: 10px;
    border: 1px solid #41d0c4;
    height: 83%;
	overflow: hidden;
}
.tg-img img {
    object-fit: cover;
    height: 100%;
}
.tg-img:hover img {
	animation: spin360 0.4s linear; 
}
@keyframes spin360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.index-wrapper .product-wrapper {
    max-height: 538px;
    overflow: auto;
}
.index-wrapper .product-wrapper::-webkit-scrollbar {
	width: 8px;
}
.index-wrapper .product-wrapper::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgb(255,255,255,0.8);
	background: #285a84;
	border-radius: 40px;
}
.index-wrapper .product-wrapper::-webkit-scrollbar-thumb {
	border-radius: 40px;
	box-shadow: inset 0 0 5px rgb(255,255,255,0.8);
	background: linear-gradient(180deg,rgba(153, 252, 251, 1) 0%, rgba(121, 219, 213, 1) 8%, rgba(106, 204, 195, 1) 53%, rgba(60, 154, 179, 1) 100%);
}
.product-wrapper {
	position: relative;
}
.prdbox {
    position: relative;
	cursor: pointer;
    width: 15%;
    margin: 0.2% 0.5%;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
	transition: 0.3s ease;
}
.hvbg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
	visibility: hidden;
	opacity: 0;
}
span.play-hover {
    background: rgb(255, 255, 255, 0.2);
    font-size: 26px;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
	visibility: hidden;
	opacity: 0;
	transform: scale(0.2);
	transition: 0.3s;
}
.prdbox:hover {
	transform: translateY(-10px);	
}
.prdbox:hover .hvbg {
	visibility: visible;
	opacity: 1;
}
.prdbox:hover .hvbg span.play-hover {
	visibility: visible;
	opacity: 1;
	transition: 0.3s;
	transform: scale(1);
}
.filter-button .menu-button {
	text-transform: inherit;
	font-size: 13px;
}
.best-casino-wrapper {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(3 21 33 / 70%) 100%);
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px 1px #0b3155;
	text-align: center;
	margin-bottom: 20px;
}
.best-title-wrap {
    margin-bottom: 30px;
}
.best-title-1 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(141, 142, 148, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    filter: drop-shadow(1px 1px 0px #00529f) drop-shadow(0px -1px 1px #00529f);
}
.best-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #7df9ff;
    line-height: 1.2;
}
.busp-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 23%;
    margin: 5px 0.5%;
    font-size: 12px;
}
.uspicon {
    max-width: 90px;
    margin: 0 auto 10px;
}
.busp-text-1 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(141, 142, 148, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 110%;
    font-weight: 800;
    text-transform: uppercase;
    filter: drop-shadow(1px 1px 0px #00529f) drop-shadow(0px -1px 1px #00529f);
    margin-bottom: 5px;
}
.busp-text-2 {
    color: #b7ecfc;
    line-height: 1.2;
}
.home-seo-footer {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(3 21 33 / 70%) 100%);
    padding: 20px 20px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px 1px #0b3155;
	background: #051723 url("../images/seo-bg.png")no-repeat top center;
	background-size: 100%;
}
.seo-wrapper {
    position: relative;
    max-height: 150px;
	margin-bottom: 10px;
    overflow: hidden;
	font-size: 13px;
	color: #5593a6;
    transition: 0.3s;
}
.seo-wrapper.active {
    max-height: none;
}
.seo-wrapper h1 {
	font-size: 140%;
	font-weight: 700;
}
.seo-wrapper h2 {
	font-size: 130%;
	font-weight: 700;
}
.seo-wrapper h3 {
	font-size: 120%;
	font-weight: 600;
}
.seo-wrapper h4 {
	font-size: 110%;
	font-weight: 600;
}
.seo-wrapper h5 {
	font-size: 100%;
	font-weight: 500;
}
.seo-wrapper a {
	color: #5593a6;
	text-decoration: underline;
}
.seo-wrapper a:hover {
	color: #fff;
}
button.read-more {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    border-radius: 45px;
    border: 1px solid #affbff;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #affbff;
    width: 40px;
    height: 20px;
    padding: 0;
    font-size: 12px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
button.read-more:hover {
	color: #fff;
}
button.read-more.active i {
    transform: rotate(180deg);
    transform-origin: center;
    transition: 0.3s;
}
.footer_submenu p.whtext {
	color: #fff;
}
.game-license img {
    max-height: 30px;
    margin: 0 3% 2% 0;
    filter: grayscale(1);
}
.gmlicense {
	color: #7d7d7d;
    font-size: 12px;
}
.footer-provider-sec {
    position: relative;
    padding: 30px 0;
    border-top: 1px solid #364448;
    border-bottom: 1px solid #364448;
}
.title-partner {
    margin-bottom: 10px;
}
.partner-icon {
    margin-right: 10px;
}
.partner-icon img {
    max-height: 30px;
}

/** Floating Live Chat **/
@-webkit-keyframes float {
  0% {
	transform: translateY(0);
  }
  50% {
	transform: translateY(-15px);
  }
  100% {
	transform: translateY(0);
  }
}
.contact-float {
    position: fixed;
    right: 0px;
    bottom: 100px;
    z-index: 99;
    animation: float 2s ease-in-out infinite;
}
.contact-float.active {
	animation: none;
}
.main-ct-img {
    cursor: pointer;
    max-width: 135px;
    transition: 0.2s;
}
.main-ct-img:hover {
	transform: scale(1.03);
	filter: brightness(1.05);
	transition: 0.2s;
}
.float-pop {
    position: absolute;
	left: 0;
    right: 0;
    bottom: 120px;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
	transition-delay: 0.2s;
}
.contact-float.active .float-pop {
	opacity: 1;
	visibility: visible;
	transition: 0.1s;
}
.close-float-wrap {
    position: absolute;
    right: 5%;
}
button.close-float-btn {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
    padding: 2px;
    font-size: 12px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ctfloat-box {
	max-width: 55px;
    margin: 7px auto;
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
}
.ctfloat-box a img {
	transition: ease 0.3s;
}
.ctfloat-box a:hover img {
	transform: scale(1.07);
	transition: ease 0.3s;
}
.contact-float.active .float-pop .ctfloat-box:first-child {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease-in-out 0.1s;
	transition-delay: 0.25s;
}
.contact-float.active .float-pop .ctfloat-box:nth-child(2) {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease-in-out 0.1s;
	transition-delay: 0.2s;
}
.contact-float.active .float-pop .ctfloat-box:nth-child(3) {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease-in-out 0.1s;
	transition-delay: 0.15s;
}
.contact-float.active .float-pop .ctfloat-box:nth-child(4) {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease-in-out 0.1s;
	transition-delay: 0.1s;
}
.contact-float .float-pop .ctfloat-box:first-child {
	transition: ease-in-out 0.1s;
	transition-delay: 0.1s;
}
.contact-float .float-pop .ctfloat-box:nth-child(2) {
	transition: ease-in-out 0.1s;
	transition-delay: 0.15s;
}
.contact-float .float-pop .ctfloat-box:nth-child(3) {
	transition: ease-in-out 0.1s;
	transition-delay: 0.2s;
}
.contact-float .float-pop .ctfloat-box:nth-child(4) {
	transition: ease-in-out 0.1s;
	transition-delay: 0.25s;
}
.product-inner-wrapper {
    position: relative;
    text-align: left;
}
.product-inner-wrapper .prdbox {
    width: 18.2%;
    margin: 0.2% 0.5%;
}
.slots-lobby .prdbox {
    width: 23.5%;
    margin: 0.2% 0.5%;
}
.slots-lobby .prdbox img {
	height: 200px;
	width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}
.sgname {
    background-color: #0c263b;
    box-shadow: inset 0 0 8px 1px #15446b;
    padding: 1px 5px;
    height: 40px;
    font-size: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}
.contact-top-banner {
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
}
.contact-us-wrapper {
    position: relative;
    background: #051626;
    border: 1px solid #00e2ff;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 40% auto;
    padding: 20px 30px;
}
.support-girl {
    position: relative;
    margin: -20% 0 -17% -18%;
    display: flex;
    align-items: center;
}
.ctw-text {
    color: #7df9ff;
    font-weight: 700;
    font-size: 20px;
}
.ctinfo-inner {
    position: relative;
    padding-top: 10px;
}
.ctbox {
    position: relative;
    background: #051626;
    border: 1px solid #245c76;
    margin: 10px 0;
    padding: 12px 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 90px auto 130px;
    align-items: center;
}
.ctcicon {
    text-align: center;
}
.ct-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}
.cti-title {
    font-size: 17px;
    font-weight: 700;
    color: #c5ffff;
}
button.blue-btn {
    background: linear-gradient(180deg, rgba(2, 136, 211, 1) 0%, rgba(1, 73, 142, 1) 100%);
    border: none;
    color: #fff;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    height: 40px;
    border-radius: 6px;
    font-size: 14px;
}
button.green-btn {
    background: linear-gradient(180deg,rgba(47, 150, 61, 1) 0%, rgba(23, 102, 42, 1) 100%);
    border: none;
    color: #fff;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    height: 40px;
    border-radius: 6px;
    font-size: 14px;
}
button.blue-btn:hover, button.green-btn:hover {
	box-shadow: inset 0 0 5px rgb(0,0,0,0.7);
}
.prd-top-banner {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}
.mix {
    display: none;
}
.pmbox {
    max-width: 48%;
    margin: 10px 0.5%;
}
.promo-content-area {
    text-align: center;
}
.pmcbox {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    vertical-align: top;
    height: 43px;
    min-width: 115px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 7px;
	cursor: pointer;
}
.pminner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.pmcbox.active {
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
.blog-outer-wrapper {
	background: #051626;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}
.search-blog {
    background: #03151f;
    border: 1px solid #1a2d3a;
    max-width: 280px;
    border-radius: 6px;
    padding: 5px 7px;
    display: flex;
    align-items: center;
    margin: 5px 0 15px;
}
button.search-blog-btn {
	color: #b7ecfc;
    border: none;
    background: none;
	margin-right: 5px;
}
input.search-input {
	height: 30px;
    background: none;
    border: none;
    color: #fff;
    width: 100%;
}
.blog-wrapper {
    position: relative;
}
a.blog-box {
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 32%;
    margin: 0 0.4% 10px;
    overflow: hidden;
    border-radius: 12px;
    background: #0c263b;
    box-shadow: inset 0 0 9px 2px #15446b;
}
.blog-img {
	position: relative;
    overflow: hidden;
    /*height: 250px;*/
}
.blog-img::after {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,rgba(12, 38, 59, 0) 90%, rgba(12, 38, 59, 1) 100%);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.blog-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
	transition: ease 0.3s;
}
a.blog-box:hover .blog-img img  {
	transform: scale(1.07);
	transition: ease 0.3s;
}
.blog-details {
    position: relative;
    padding: 10px 15px 0px;
    font-size: 12px;
    color: #627787;
}
.blog-title {
    color: #c9c7c8;
    font-size: 140%;
    font-weight: 600;
    line-height: 1.1;
    height: 40px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-caption {
    color: #627787;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.blog-date {
    margin-bottom: 10px;
}
button.blog-more-btn {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
    width: 100%;
    height: 40px;
}
button.blog-more-btn:hover  {
	background: #03151f;
    color: #7df9ff;
    border: 1px solid #1a2d3a;
    box-shadow: inset 0 0 4px 0px #15446b;
}
.blog-pagination {
    position: relative;
    padding: 10px 0;
    text-align: center;
}
button.bgpage-btn {
    background: none;
    border: none;
    color: #fff;
}
button.bgpage-btn.active, button.bgpage-btn:hover {
    color: #7df9ff;
}
.blog-inner-wrapper {
    background: #051626;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}
.top-blog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #b7ecfc;
}
.top-blog-date {
	color: #7fb2c1;
	margin-bottom: 10px;
}
.top-blog-img {
    overflow: hidden;
    border-radius: 12px;
}
.blog-article-content {
	padding: 15px 0;
	font-size: 15px;
}
.blog-article-content h1 {
	font-size: 160%;
	font-weight: 600;
}
.blog-article-content h2 {
	font-size: 150%;
	font-weight: 600;
}
.blog-article-content h3 {
	font-size: 140%;
	font-weight: 600;
}
.blog-article-content h4 {
	font-size: 130%;
	font-weight: 600;
}
.blog-article-content h5 {
	font-size: 120%;
	font-weight: 500;
}
.blog-article-content a {
	color: #7fb2c1;
	text-decoration: underline;
}
a.back-blog-btn {
    background: #0e4961;
    border: 1px solid #1d89a0;
    border-radius: 6px;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
    font-size: 14px;
    max-width: 100px;
    height: 40px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
a.back-blog-btn i {
	margin-right: 10px;
}
a.back-blog-btn:hover {
	background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #0b3155;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
}

.lottery-top-banner {
    position: relative;
    max-width: 890px;
    margin: 0 auto 15px;
    text-align: center;
}
.lucky-number-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 18%;
    color: #7df9ff;
    font-size: 20px;
    font-weight: 700;
}
.number-box-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 29%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    max-width: 440px;
    margin: 0 auto;
}
.numbox {
    background: url(../images/products/4d/numbox.png) no-repeat center;
    background-size: 100%;
    width: 105px;
    height: 107px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 800;
}
button.draw-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 66%;
    max-width: 140px;
    margin: 0 auto;
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    border-radius: 6px;
    color: #fff;
    height: 35px;
    text-transform: uppercase;
}
button.draw-btn:hover {
	box-shadow: inset 0 0 3	px rgb(0,0,0,0.7);
	transform: scale(0.98);
}
.bet-btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 81%;
}
button.payout-btn {
    background: linear-gradient(90deg, rgba(73, 148, 255, 1) 0%, rgba(14, 62, 136, 1) 100%);
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    border: 1px solid #0d4493;
    border-radius: 6px;
    color: #fff;
    height: 35px;
    text-transform: uppercase;
}
button.betnow-btn {
	background: linear-gradient(90deg,rgba(163, 93, 253, 1) 0%, rgba(69, 42, 168, 1) 100%);
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    border: 1px solid #a144cd;
    border-radius: 6px;
    color: #fff;
    height: 35px;
    text-transform: uppercase;
}
.bet-btn-wrap button {
	margin: 0 4px;
}
.bet-btn-wrap button:hover {
	box-shadow: inset 0 0 3px rgb(0,0,0,0.7);
	transform: scale(0.98);
}
.extra-note {
    padding: 5px;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}
.lottery-result-wrapper {
    background: #051626;
    padding: 10px;
    border-radius: 5px;
}
.dresult-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #b7ecfc;
    text-transform: uppercase;
	margin-bottom: 10px;
}
.draw-date-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto;
    align-items: center;
    background: linear-gradient(130deg, rgb(255 255 255 / 2%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    border-radius: 7px;
    box-shadow: inset 0 0 5px 1px #0b3155;
    height: 42px;
    text-align: center;
    color: #7ce6e6;
    font-weight: 700;
	text-transform: uppercase;
}
.ddtext i {
	margin-right: 10px;
}
.ddinput {
    border: 1px solid #0f84a7;
    border-radius: 7px;
    box-shadow: inset 0 0 12px 3px #002845;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 15px;
}
input.date4d-input {
    background: none;
    border: none;
    color: #7ce6e6;
    font-weight: 700;
	width: 100%;
}
.lottery-content {
    text-align: center;
    margin: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
}
.lotto-box {
    background: #001725;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #00e9d9;
    display: inline-block;
}
.lott-title-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 2px 5px 5px;
    text-transform: uppercase;
}
.lott-title-box {
    text-align: right;
	color: #b7ecfc;
	line-height: 1.2;
}
.lott-type {
	font-weight: 700;
	font-size: 17px;
}
.cal-date {
	font-size: 13px;
}
.result-table {
    background: #001926;
    color: #fff;
}
.result-table table tr th {
    background: #002a40;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 2px;
    font-size: 13px;
    border: 1px solid #00e9d9;
    text-shadow: 0 0 2px #00e9d9, 0 0 4px #00e9d9;
    font-weight: 500;
}
.result-table table tr td {
    padding: 2px 1px;
	border: 1px solid #00e9d9;
	font-size: 14px;
}
.lottery-mobile {
	display: none;
}	
.log-reg-frame {
    background: url(../images/register/reg-bg.png) no-repeat top right;
    background-size: cover;
    border-radius: 12px;
    padding: 15px 15px;
	position: relative;
}
.log-reg-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(3, 21, 31, 1) 0%, rgba(6, 33, 49, 1) 69%, rgba(11, 59, 86, 1) 97%);
    box-shadow: inset 0 0 9px 2px #15446b;
    border-radius: 12px;
    max-width: 70%;
    margin: 0 0 0 auto;
    overflow: hidden;
}
.reg-title-top {
    position: relative;
    background: #051726;
    box-shadow: inset 0 0 6px 1px #15446b;
    padding: 23px 25px 15px;
    color: #6084a5;
    line-height: 1.3;
	text-transform: uppercase;
	font-size: 13px;
}
.regtitle {
    font-size: 30px;
    font-weight: 800;
    color: #7df9ff;
    letter-spacing: 1px;
}
form.reg-form-wrapper {
    position: relative;
    padding: 30px 30px;
}
.input-row {
    display: grid;
    grid-template-columns: 150px auto;
    grid-gap: 5px 10px;
	align-items: center;
	margin-bottom: 10px;
}
.reg-label {
    color: #6491bc;
    display: flex;
    align-items: center;
	font-size: 14px;
	line-height: 1.1;
}
span.rgicon {
    font-size: 130%;
    margin-right: 15px;
}
.inpwrap {
    position: relative;
}
input.reginput, select.reginput  {
    background: #03151f;
    border: 1px solid #1a2d3a;
    color: #fff;
    height: 50px;
    border-radius: 8px;
    padding: 0 15px;
}
input::placeholder {
	color: #b7ecfc;
}
.field-icon {
    position: absolute;
    right: 17px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 17px;
    cursor: pointer;
    color: #b3b3b3;
}
ul.list-valid {
    padding-left: 15px;
    list-style: none;
    margin: 0 0 6px;
	font-weight: 500;
	font-size: 11px;
	color: #a9a9a9;
}
ul.list-valid li i {
	color: #E20003;
}
ul.list-valid li .text-success i {
    color: #28a745 !important;
}
.phone-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 140px auto;
    grid-gap: 10px;
}
span.verify-img {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
span.verify-img img {
    max-height: 30px;
}
.field-check {
    color: #6084a5;
    padding: 10px 5px 20px;
    cursor: pointer;
    margin: 0;
	font-size: 13px;
}
.field-check a {
	color: #7df9ff;
	text-decoration: underline;
}
.field-check a:hover {
	color: #fff;
}
.agree-text {
    padding-left: 35px;
}
.check_box_wrap {
    position: relative;
}
.check_box_wrap input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
    position: absolute;
	top: -2px;
    left: 0;
    height: 23px;
    width: 23px;
    border-radius: 6px;
    border: 1px solid #3089c6;
}
.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}
.check_box_wrap input:checked ~ .checkmark:after {
	display: block;
}
.check_box_wrap .checkmark:after {
    left: 8px;
    top: 3px;
    width: 6px;
    height: 13px;
    border: solid white;
    border-width: 0px 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
button.reg-login-submit-btn {
    background: linear-gradient(180deg, rgba(253, 178, 0, 1) 0%, rgba(213, 100, 0, 1) 100%);
    border: 1px solid #e4830e;
    color: #000;
    width: 80%;
	margin: 0 auto;
    border-radius: 15px;
    height: 60px;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
}
button.reg-login-submit-btn:hover {
	transform: scale(0.99);
	box-shadow: inset 0 0 5px rgb(0,0,0,0.7);
}
.ald-note {
    padding: 20px 0 10px;
    text-align: center;
    color: #6084a5;
    font-size: 16px;
}
.ald-note a {
    color: #b7ecfc;
}
.ald-note a:hover {
	color: #fff;
	text-decoration: underline;
}
.log-reg-frame.login {
	background: url(../images/register/login-bg.png) no-repeat top right;
    background-size: cover;
}
a.forgot-pw {
    color: #7df9ff;
    padding: 0 5px;
}
a.forgot-pw:hover {
	color: #fff;
	text-decoration: underline;
}
.register-inner {
	position: relative;
	padding: 30px 20px;
}
ul.nav.nav-activation {
	margin-bottom: 20px;
}
ul.nav.nav-activation li.nav-item {
    width: 32%;
    margin: 0 auto;
    text-align: center;
}
ul.nav.nav-activation li.nav-item a.nav-link {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #0b3155;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
    text-transform: uppercase;
    font-size: 13px;
}
ul.nav.nav-activation li.nav-item a.nav-link.active {
	background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
span.atvicon {
    margin-right: 10px;
}
span.atvicon img {
    max-width: 30px;
}

.activation-wrapper {
    position: relative;
    background: #031220;
    border: 1px solid #1a2d3a;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 20px;
}
.sms-wrap {
    display: grid;
    grid-template-columns: 100px auto;
    grid-gap: 10px;
    color: #7aa6ce;
    max-width: 400px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.tac-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 6px;
    max-width: 340px;
    text-align: center;
    margin: 30px auto 10px;
}
input.tacbox {
    background: #061c30;
    border: 1px solid #2b4c63;
    border-radius: 10px;
    width: 80px;
    height: 100px;
    text-align: center;
    font-size: 54px;
    font-weight: 700;
}
.livechat-activate-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 41% auto;
    align-items: center;
}
.livechat-neon {
    margin-left: -17%;
}
.atv-step-box {
    display: grid;
    grid-template-columns: 50px auto;
    grid-gap: 0 10px;
    align-items: center;
    color: #c1e0e4;
    margin: 15px 0;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 700;
}
.stepnum {
    background: #002442;
    border: 2px solid #318eaf;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 700;
}
.atv-step-box  code {
    color: #c1e0e4;
    font-size: 100%;
}
.activate-img {
    max-width: 300px;
    margin: 0 auto;
}
.congrat-text {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #c1e0e4;
}
.activated-sub {
    font-size: 20px;
    color: #6491bc;
}
.player-vip-top {
    display: grid;
    grid-template-columns: 300px auto;
    grid-gap: 10px;
	margin-top: 65px;
}
.class-vip-wrap {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    text-align: center;
}
.class-vip-inner {
    position: relative;
    background: url(../images/vip/user-vip-frame.png) no-repeat;
    background-size: 100% 100%;
    padding: 0 0 45px;
}
.vip-badge {
    max-width: 200px;
    width: 67%;
    margin: 0 auto;
    filter: drop-shadow(0px 4px 2px rgb(0, 0, 0, 0.6));
}
.vip-badge img {
    margin-top: -32%;
}
.current-vip-name {
    background: url(../images/vip/class-bar-bg.png) no-repeat center;
    background-size: 90% 100%;
    font-weight: 800;
    font-size: 18px;
    color: #b7ecfc;
    line-height: 1.2;
    padding: 4px 0 2px;
    margin: 0 auto 12px;
    max-width: 81%;
    text-transform: uppercase;
}
.current-vip {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: 1px solid #48aeb6;
    color: #fff;
    padding: 6px 10px;
    max-width: 150px;
    margin: 0 auto;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 13px;
}
.vip-progress-wrap {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.prog-vip-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
	margin-bottom: 10px;
}
.nowb {
    position: relative;
    text-align: center;
    color: #b7ecfc;
}
.pgbvip {
    max-width: 95px;
    filter: drop-shadow(0px 4px 2px rgb(0, 0, 0, 0.5));
    margin-bottom: 3px;
}
.nextb {
    position: relative;
    text-align: center;
    color: #686868;
}
.prgbar-bar {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    border-radius: 40px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    height: 20px;
    padding: 6px 8px;
	margin-bottom: 10px;
}
.prgbar-inner {
    height: 100%;
    border-bottom: 1px solid #05a7be;
    background: linear-gradient(180deg, rgba(255, 253, 253, 1) 0%, rgba(210, 212, 212, 1) 67%, rgba(100, 102, 109, 1) 100%);
    display: flex;
    border-radius: 30px;
    box-shadow: 0 0 9px #00f5ff;
}
.depo-prg-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #b7ecfc;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 2px 10px;
	letter-spacing: 0.5px;
}
.depoprg-text-1 {
    font-size: 85%;
}
.depoprg-text-2 {
    font-size: 150%;
    font-weight: 700;
}
.prg-percent {
    font-size: 240%;
    font-weight: 800;
}
.vip-container-sec {
    position: relative;
    background: #051626;
    padding: 20px 15px;
    border-radius: 10px;
    margin: 15px 0;
	color: #b7ecfc;
}
.vip-title {
    font-size: 28px;
    font-weight: 700;
}
.vip-club-levels {
    position: relative;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    text-align: center;
    grid-gap: 0 5px;
    line-height: 1.2;
    font-size: 14px;
    padding: 15px 0 30px;
    text-transform: uppercase;
}
.level-box {
    position: relative;
    border-radius: 5px 5px 0 0;
    border-left: 2px solid #081d2d;
    border-right: 2px solid #081d2d;
	border-image: linear-gradient(to top, transparent, #081d2d 50%, transparent) 1;
	color: #b7ecfc;
	padding: 0 3px;
	line-height: 1.1;
	cursor: pointer;
}
.viplvl-img {
	margin-bottom: 2px;
}
.level-box.current {
    border-color: #2fdbff;
    border-image: linear-gradient(to top, transparent, #2fdbff 50%, transparent) 1;
    background: linear-gradient(180deg, rgb(255 255 255 / 8%) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 1px solid #081d2d;
    border-right: 1px solid #081d2d;
}
.lvnum {
	font-weight: 500;
	margin-bottom: 4px;
}
.vpntext {
    font-size: 77%;
}
.crlabel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14%;
    background: #000;
    color: #9e7a76;
    font-size: 9px;
    font-weight: 500;
    padding: 3px 1px;
    max-width: 82%;
    margin: 0 auto;
    border-radius: 45px;
}
.crt-vip-tag {
    background: rgb(0, 0, 0, 0.3);
    color: #d7a4a3;
    text-align: center;
    max-width: max-content;
    margin: 0 auto;
    font-size: 11px;
    padding: 0px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    z-index: 1;
}
.swiper-slide-prev .crt-vip-tag {
	color: #cecfd1;
}
.swiper-slide-next .crt-vip-tag {
	color: #ffd879;
}
.vip-slider-wrapper {
    position: relative;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
}
button.left_level_pre {
    background: none;
    border: none;
    max-width: 45px;
    position: absolute;
    left: 0;
    top: 37%;
    z-index: 3;
	filter: drop-shadow(0 1px 3px rgb(0,0,0,0.7));
}
button.right_level_next {
    background: none;
    border: none;
    max-width: 45px;
    position: absolute;
    right: 0;
    top: 37%;
    z-index: 3;
	filter: drop-shadow(0 1px 3px rgb(0,0,0,0.7));
}
button.left_level_pre:hover, button.right_level_next:hover {
	transform: scale(0.97);
	filter: brightness(1.1);
}
.vip-frame-box {
	background: #051626 url("../images/vip/vip-frame-bg.png")no-repeat top center;
	background-size: cover;
	position: relative;
    border: 2px solid #68f4ff;
    border-radius: 14px;
    padding: 15px 5px 10px;
    box-shadow: inset 0 0 9px #276098;
	color: #b7ecfc;
	font-size: 14px;
}
.vips-badge-img {
    max-width: 140px;
    margin: 5px auto;
    filter: drop-shadow(0px 2px 3px rgb(0, 0, 0, 0.7));
}
.vips-level-class {
    color: #b7ecfc;
    text-align: center;
    font-weight: 800;
    font-size: 140%;
    text-transform: uppercase;
    line-height: 1.1;
}
.vips-depo-monthly {
    font-size: 85%;
    text-align: center;
}
.vip-info-box {
    position: relative;
    background: url(../images/vip/vip-frame.png) no-repeat center;
	background-size: 100% 100%;
    padding: 8% 8%;
	min-height: 310px;
}
.viplist-row {
    display: grid;
    grid-template-columns: 8% auto;
    grid-gap: 6px;
    align-items: center;
    color: #fff;
    margin: 6px auto;
    font-size: 95%;
}
.vip-swiper .swiper-slide {
	transform: scale(0.9);
	transform-origin: center;
	transition: 0.3s;
}
.vip-swiper  .swiper-slide.swiper-slide-active {
	transform: scale(1);
	transition: 0.3s;
}
.vip-perks-wrapper {
    position: relative;
    text-align: center;
}
.perk-box {
    position: relative;
	padding: 5px 2px;
    max-width: 200px;
    width: 18%;
    margin: 10px 0.5%;
    display: inline-block;
    border-image: linear-gradient(to top, transparent, #2fdbff 50%, transparent) 1;
    background: linear-gradient(180deg, rgb(255 255 255 / 10%) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 1px solid #2fdbff;
    border-right: 1px solid #2fdbff;
    border-radius: 10px 10px 0 0;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
	vertical-align: top;
}
.perk-img {
    max-width: 70%;
    margin: 0 auto 10px;
}
.app-download-wrapper {
    position: relative;
    background: #051626;
    border: 1px solid #00e2ff;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 40% auto;
    padding: 40px 30px;
	margin: 60px 0;
}
.mb-app-img {
    position: relative;
    margin: -32% -17% -31% -15%;
}
.app-content {
    position: relative;
    text-align: center;
    font-size: 16px;
}
.app-title {
    font-size: 24px;
    font-weight: 700;
    color: #c5ffff;
	margin-bottom: 15px;
}
.app-instruct-wrap {
    display: flex;
    align-items: center;
	justify-content: center;
    column-gap: 20px;
}
.qrcode-dlbox {
    position: relative;
    max-width: 180px;
}
.dlqrcode {
    max-width: 180px;
}
.android-tag {
    background: linear-gradient(90deg, rgba(59, 161, 176, 1) 13%, rgba(127, 238, 255, 1) 100%);
    color: #000;
    padding: 7px 5px 3px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
    border: 3px solid #5dc3ed;
    border-top: 3px solid #87fefe;
}
.android-tag i {
    margin-right: 5px;
    font-size: 110%;
}
button.btn_container.instruct {
    font-size: 15px;
}
button.btn_container.instruct:hover {
    box-shadow: inset 0 0 5px rgb(0,0,0,0.6);
	background: #fff;
    color: #318a90;
}
.modal-dialog.instruct {
    max-width: 800px;
}

.modal-content.instruct {
    background: linear-gradient(180deg, rgba(42, 58, 73, 1) 0%, rgba(6, 22, 38, 1) 100%);
    border: 1px solid #48aeb6;
    border-radius: 10px;
    padding: 0;
}
button.close-instruct {
    background: none;
    font-size: 24px;
    padding: 0;
    border: none;
    color: #fff;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 12px;
    z-index: 2;
}
.title-guide {
    position: absolute;
    left: 5%;
    top: 24%;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}
.gdtext {
    color: #7df9ff;
}
.guide-step {
    height: 580px;
    position: relative;
    color: #000;
}
.step-info {
    position: absolute;
    left: 5%;
    top: 45%;
    max-width: 48%;
    font-size: 19px;
    color: #c9c7c8;
}
.sptitle {
    font-weight: 700;
    font-size: 120%;
    margin-bottom: 5px;
}
.phone-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 62%;
}
.btn-right .carousel-control-next-icon, .btn-left .carousel-control-prev-icon {
    width: 30px;
    height: 30px;
    background-color: #071a29;
    border-radius: 50%;
    background-size: 60%;
}
a.carousel-control-prev.btn-left {
    left: 49%;
}
a.carousel-control-next.btn-right {
    right: -3%;
}
.step-claim-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(5, 22, 38, 1) 0%, rgba(5, 22, 38, 1) 6%, rgba(17, 31, 43, 1) 17%, rgba(5, 22, 38, 1) 51%, rgba(5, 22, 38, 1) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
    border: 1px solid #0b3155;
	margin-bottom: 15px;
}
.sctext {
    color: #b7ecfc;
    text-transform: uppercase;
}
.claim-step-info {
    color: #b7ecfc;
    position: relative;
    display: inline-block;
    width: 32%;
}
.step-inner {
    position: absolute;
    left: 26%;
    right: 15%;
    top: 17%;
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 10px;
    align-items: center;
    line-height: 1.1;
    font-size: 14px;
    font-weight: 300;
}
.sctext-1 {
    font-size: 120%;
    font-weight: 500;
    text-transform: uppercase;
}
.step3 .step-inner {
    left: 30%;
    right: 7%;
}
.mission-wrapper {
    position: relative;
    background: linear-gradient(90deg, rgba(5, 22, 38, 1) 0%, rgba(5, 22, 38, 1) 6%, rgba(17, 31, 43, 1) 17%, rgba(5, 22, 38, 1) 51%, rgba(5, 22, 38, 1) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0b3155;
    border: 1px solid #0b3155;
}
.mission-box {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 32%;
    max-width: 300px;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
	border: 1px solid #164262;
    border-top: 1px solid #62d1d9;
    overflow: hidden;
    margin: 5px 0.3%;
}
.mslabel {
    position: absolute;
    left: -1%;
    top: 5%;
    max-width: 34%;
    color: #000;
    line-height: 1;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	filter: drop-shadow(0 1px 2px rgb(0,0,0,0.7))
}
.mslabel-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 9%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msr-info {
    position: absolute;
    left: 0%;
    right: 0;
    top: 21%;
    line-height: 1.1;
    text-transform: uppercase;
    font-size: 16px;
    max-width: 90%;
    margin: 0 auto;
}
.msr-prize {
    font-size: 200%;
    font-weight: 800;
    color: #8df9fc;
    filter: drop-shadow(0px 1px 2px rgb(0, 0, 0, 0.8));
}
.msbtn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 68%;
    text-align: center;
}
.msr-progress {
    position: relative;
    background: #053552;
    border-radius: 40px;
    border: 1px solid #074e5f;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    height: 12px;
    padding: 2px 5px;
    margin-bottom: 10px;
}
.msr-prg-inner {
    height: 100%;
    border-bottom: 1px solid #05a7be;
    background: linear-gradient(180deg, rgba(255, 253, 253, 1) 0%, rgba(210, 212, 212, 1) 67%, rgba(100, 102, 109, 1) 100%);
    display: flex;
    border-radius: 30px;
    box-shadow: 0 0 9px #00f5ff;
}
button.claim-mission-btn {
    background: linear-gradient(180deg, rgba(253, 178, 0, 1) 0%, rgba(213, 100, 0, 1) 100%);
    border: 1px solid #e4830e;
    border-radius: 40px;
    color: #000;
    width: 90%;
    height: 35px;
    margin: 0 auto;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
span.right-circle {
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: #0f3550;
    color: #78eff3;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
button.ms-detail {
    border: none;
    background: none;
    color: #d6d6d6;
    font-size: 11px;
    text-decoration: underline;
}
button.ms-detail i {
    margin-left: 3px;
    font-size: 90%;
}
.msr-comingsoon {
    position: absolute;
    top: 23%;
    left: 5%;
    font-size: 15px;
    line-height: 1.2;
}
.more-soon {
    color: #7df9ff;
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid #7df9ff;
    padding-bottom: 6px;
}
.event-wallet-wrapper {
    position: relative;
    max-width: 690px;
    margin: 15px auto;
}
.ewtitle {
    position: absolute;
    left: 25%;
    top: 35%;
    background: linear-gradient(180deg, rgba(244, 244, 243, 1) 13%, rgba(134, 136, 141, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 31px;
    font-weight: 500;
    text-transform: uppercase;
    filter: drop-shadow(1px 0px 1px black) drop-shadow(0px 0px 1px black) drop-shadow(0px 0px 3px #00f5ff);
}
.ew-amt {
    position: absolute;
    left: 63%;
    right: 7%;
    top: 32%;
    color: #b3e7f7;
    font-size: 34px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}
.reward-btn-top {
    text-align: right;
    margin-bottom: 10px;
}
button.rwbtn {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 6px 15px 4px;
    border-radius: 7px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px #12436c;
    color: #b7ecfc;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    margin-left: 7px;
    height: 40px;
}
button.rwbtn img {
	margin-right: 8px;
	max-height: 18px;
	margin-bottom: 3px;
}
button.rwbtn:hover {
	background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
.redeem-stepbox {
    display: inline-block;
    width: 32%;
    vertical-align: top;
    text-align: center;
    color: #d7fdff;
    font-weight: 500;
	margin: 0 auto 10px;
}
.rdstep-img {
    margin-bottom: 10px;
}

.hot-popular-sec {
    background: #051626;
    border-radius: 10px;
    position: relative;
    padding: 10px 10px;
	margin-bottom: 10px;
}
.hot-item-title {
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hot-item-title img {
    margin-right: 5px;
}
.reward-filter-wrapper .filter-menu {
    text-align: center;
	padding-bottom: 15px;
}
.rwsitem {
    width: 24%;
    margin: 5px 0.3%;
}
.rwsitem-box {
    position: relative;
    background: #011825;
    padding: 15px 15px;
    border: 1px solid #064760;
    border-radius: 10px;
    box-shadow: inset 0 0 10px 1px #0b3155;
    max-width: 250px;
	cursor: pointer;
}
.rwitem-img {
	margin-bottom: 10px;
}
.rwitem-name {
    text-align: left;
    color: #c9c7c8;
    font-size: 14px;
    font-weight: 500;
    height: 70px;
	line-height: 1.2;
}
.pts-text {
    text-align: left;
    color: #c9c7c8;
    font-size: 13px;
	margin-bottom: 5px;
}
span.pts-num {
    color: #6ef1f6;
    font-size: 160%;
    font-weight: 500;
    margin-right: 3px;
}
button.rsredeem-btn {
    background: linear-gradient(180deg, rgba(4, 129, 150, 1) 0%, rgba(4, 72, 102, 1) 100%);
    color: #fff;
    border: 1px solid #48aeb6;
    border-radius: 7px;
    width: 100%;
    height: 37px;
	font-size: 13px;
	letter-spacing: 0.5px;
    text-transform: uppercase;
}
button.rsredeem-btn:hover {
	transform: scale(0.99);
	box-shadow: inset 0 0 7px rgb(0,0,0,0.5);
}
.reward-shop-wrapper {
    background: #051626;
    border-radius: 10px;
    position: relative;
    padding: 15px 10px;
    margin-bottom: 15px;
}
.modal-content.reward {
    padding: 20px 20px;
    color: #fff;
	border-radius: 12px;
    background: #0c263b;
    box-shadow: inset 0 0 4px 1px #15446b;
}
button.close-pop {
    background: none;
    color: #fff;
    border: none;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 1;
}
.rw-img {
    text-align: center;
}
.reward-item-name {
    text-align: center;
}
.rwprod-detail .pts-text {
	text-align: center;
}
.rws-desciption {
	padding: 0 0 15px;
}
.rwtitle-1 {
    color: #b7ecfc;
	margin-bottom: 5px;
}
.rws-desciption ul {
	padding-left: 16px;
}
.rws-desciption ul li {
    list-style: disc;
}

.af-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px auto;
    grid-gap: 15px;
    position: relative;
    padding: 0 10px;
}
.mainwallet-wrap {
    display: grid;
    grid-template-columns: auto 200px 200px;
    grid-gap: 5px;
    align-items: center;
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px 15px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    position: relative;
    line-height: 1.2;
	border-radius: 15px 15px 0 0;
}
.player-vip-box {
    display: flex;
    align-items: center;
	column-gap: 10px;
}
.vip-badge-img {
    max-width: 100px;
	width: 100px;
    position: relative;
    filter: drop-shadow(0px 3px 4px rgb(0, 0, 0, 0.8));
}
.mblvl-text-1 {
    color: #6084a5;
    font-size: 16px;
    text-transform: uppercase;
}
.mblvl-text-2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b7ecfc;
}
.afmenu-box {
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px 15px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    position: relative;
    border-radius: 15px;
}
ul.nav.afmenuside-nav {
	flex-direction: column;
}
ul.nav.afmenuside-nav li.nav-item {
	margin-bottom: 5px;
}
ul.nav.afmenuside-nav li.nav-item a.mslink {
    display: block;
    color: #fff;
    padding: 2px 10px;
    border-radius: 8px;
	font-size: 16px;
    height: 42px;
    display: flex;
    align-items: center;
	position: relative;
}
.afn-icon {
	margin-right: 15px;
}
.afn-icon img {
	max-height: 24px;
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active, ul.nav.afmenuside-nav li.nav-item a.mslink:hover {
    background: #0e4961;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
ul.nav.afmenuside-nav li.nav-item a.mslink.active img, ul.nav.afmenuside-nav li.nav-item a.mslink:hover img {
	filter: brightness(5) contrast(1);
}
.mail-noitce {
    border-radius: 10px;
    background: #FF0004;
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
a.mslink.expand-arrow::after {
	content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    color: #00a194100;
    right: 15px;
    top: 14px;
	transform: rotate(180deg);
	transition: 0.3s;
}
a.mslink.expand-arrow.collapsed::after {
	content: '\f107';
    font-family: 'Font Awesome 5 Free';
	transform: none;	
	transition: 0.3s;
}
.af-submenu-box {
    position: relative;
    padding: 0 5px 0 35px;
    margin-top: 5px;
}
.af-submenu-box::before {
    content: '';
    background: #78848b;
    height: 100%;
    width: 2px;
    margin: auto;
    position: absolute;
    left: 21px;
    top: 0;
}
.af-submenu-box a {
    display: block;
    color: #fff;
    margin: 3px 0;
    padding: 10px 15px;
    border-radius: 8px;
}
.af-submenu-box a:hover, .af-submenu-box a.active {
	background: linear-gradient(to left, rgba(248,236,127,1) 0%, rgba(201,158,66,1) 100%);
	color: #0a1941;
}
.afcolumn-right {
    position: relative;
}
.afinner {
    border-radius: 15px;
    overflow: hidden;
    background: #061727;
}
.mwtext {
    color: #ffe27f;
    font-size: 15px;
    padding: 5px 0;
}
.mwtext i, .mwtext img {
	margin-right: 8px;
}
.player-wallet-box {
    background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px 15px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    position: relative;
    border-radius: 15px;
    margin-bottom: 10px;
	text-align: center;
	margin-top: 48px;
	text-transform: uppercase;
}
.mwbalance {
    font-size: 200%;
    font-weight: 700;
}
.mwallet-img {
    max-width: 110px;
    margin: -56px auto 5px;
}
span.myr-text {
    font-size: 50%;
    margin-right: 5px;
    vertical-align: super;
}
button.mwreload-btn {
    font-size: 15px;
    background: none;
    border: none;
    color: #3da6b1;
    vertical-align: middle;
    padding: 3px;
    margin-left: 5px;
}
button.mwreload-btn:hover {
	color: #fff;
}
.aform-wrapper {
	background: #061727;
    padding: 15px 25px;
	height: 100%;
	color: #fff;
}
.aform-wrapper.trans {
    border-radius: 0 0 25px 25px;
    margin-bottom: 15px;
}
a.afsub-btn {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px;
    border-radius: 7px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
    margin: 0.5% 0.5% 0.5% 0;
    display: inline-block;
	min-width: 180px;
    text-align: center;
    font-size: 16px;
}
a.afsub-btn.active, a.afsub-btn:hover {
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
span.aficon {
    margin-right: 15px;
}
.afsub-btn.active .aficon img, .afsub-btn:hover .aficon img {
	filter: contrast(1) brightness(5);
}
.af-field-wrap {
    margin-bottom: 10px;
}
.label-col {
    color: #6084a5;
    margin-bottom: 5px;
}
.af-field {
    position: relative;
}
input.afinput, select.afinput, textarea.afinput {
    background: #03151f;
    color: #fff;
    border: 1px solid #1a2d3a;
    height: 42px;
    padding: 4px 15px;
    border-radius: 8px;
    width: 100%;
}
input.afinput::placeholder {
	color: #6084a5;
}
button.qamt-btm {
    background: #07273e;
    color: #94b6be;
    border: none;
    font-weight: 600;
    font-size: 15px;
    min-width: 75px;
    border-radius: 8px;
    padding: 11px 5px;
    margin: 7px 5px 7px 0;
}
button.qamt-btm:hover {
	background: #1c4861;
}
.afinput.upload {
	padding: 8px 15px;
}
.bank-pay {
    position: relative;
    cursor: pointer;
    display: inline-block;
    text-align: center;
	vertical-align: top;
}
.input-hide input {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
}
.bank-acct-btn {
	background: linear-gradient(130deg, rgb(255 255 255 / 9%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 10px 10px;
    box-shadow: inset 0 0 5px 1px #0a3d6c;
    position: relative;
    border-radius: 7px;
    border: 1px solid #12436c;
    width: 120px;
	margin-bottom: 5px;
    font-size: 13px;
    color: #b7ecfc;
    cursor: pointer;
}
.bank-acct-btn img {
	position: relative;
}
.input-hide[type="radio"], .input-hide input[type="checkbox"] {
	appearance: none;
	display: none;
}
.input-hide .bank-pay input:active + .bank-acct-btn, .input-hide .bank-pay input:checked + .bank-acct-btn {
	background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
.bank-acct-btn.bnk {
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 17px;
	font-weight: 600;
	color: #94b6be;
	padding: 5px;
}
label.bank-acct-btn.bnk img {
	max-height: 35px;
	margin-right: 10px;
}
.banking .bank-acct-btn {
    font-size: 13px;
    font-weight: 500;
    color: #f8f8f8;
    height: 60px;
    vertical-align: top;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    border-radius: 8px;
}
#depo-dgpay {
    display: none;
}
.greytext {
    color: #5a6c77;
    font-size: 14px;
}
button.submit-af-btn {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: none;
    color: #fff;
    font-size: 16px;
    min-width: 160px;
    height: 42px;
    border-radius: 6px;
    padding: 1px 10px;
}
button.submit-af-btn:hover {
	transform: scale(0.99);
	box-shadow: inset 0 0 7px rgb(0,0,0,0.7);
}
.af-field-submit {
    padding: 15px 0;
    text-align: center;
}
.note-depo {
    font-size: 13px;
    color: #ff0000;
    padding: 10px 0 15px;
}
.wbank-table {
    text-align: center;
    margin-bottom: 20px;
}
.transfrom-amt-wrapper {
    display: grid;
    grid-template-columns: 345px 345px;
    align-items: center;
    position: relative;
    grid-gap: 30px;
    padding: 15px 0px;
    max-width: 720px;
    margin: 0 auto;
}
.upload-box {
    display: grid;
    grid-template-columns: auto 180px;
    grid-gap: 10px;
}
input.upload-custom {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    height: 100%;
    cursor: pointer;
}
.trans-card {
    background: #0b2e42;
    border-radius: 10px;
    padding: 15px 20px 25px;
}
.tc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    padding-bottom: 10px;
}
button.max-btn {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 1px 7px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
}
button.max-btn:hover {
	background: linear-gradient(to right, rgba(248,236,127,1) 0%, rgba(201,158,66,1) 100%);
	color: #131313;
	border: 1px solid transparent;
}
.prod-amt-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
}
select.trans-input {
    background: none;
    color: #fff;
    border: none;
    width: 150px;
    font-weight: 600;
    padding: 0;
}
select.trans-input option {
	color: #000;
}
input.trans-input-1 {
    text-align: right;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}
input.trans-input-1.edit {
    padding-right: 25px;
}
.pdatext {
    font-size: 12px;
    color: #607e8f;
    font-weight: 500;
}
.edit-icon {
    position: absolute;
    right: 0;
    top: 7px;
}
input.trans-input-1.locked {
	color: #607e8f;
}
.swap-icon {
    text-align: center;
	max-width: 42px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
}
button.swap-btn {
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 2;
}
button.swap-btn:hover {
	transform: scale(0.95);
	filter: brightness(5) contrast(1);
}
.trans-note {
    max-width: 450px;
    margin: 0 auto;
    border: 2px solid #94b6be;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 30px auto;
    color: #94b6be;
    padding: 15px;
	font-size: 13px;
}
button.balance-btn {
    background: #063252;
    color: #fff;
    border: none;
    padding: 15px 38px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    text-align: left;
    position: relative;
}
button.balance-btn::after {
	content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    color: #789ca8;
    right: 30px;
    top: 17px;
    transform: rotate(180deg);
    transition: 0.3s;
}
button.balance-btn.collapsed::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    transform: none;
    transition: 0.3s;
}
.all-balance-card {
	background: #08202f;
    padding: 20px 30px;
}
.abtitle {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 9px;
}
.pvd-balance-wrapper {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 8px;
	padding-bottom: 10px;
}
.prvdbox {
	width: 100%;
    background: #0b2e42;
    padding: 15px 15px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
	max-width: 250px;
}
.pvb-col-1 {
    text-align: left;
    font-size: 15px;
    color: #94b6be;
    font-weight: 600;
}
button.allin-btn {
    border: 1px solid #94b6be;
    color: #fff;
    background: none;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 2px 7px;
    margin-top: 6px;
}
button.allin-btn:hover {
	color: #dec672;
	border: 1px solid #dec672;
}
.pvb-col-2 {
    text-align: right;
    font-size: 18px;
}
.crcy-text {
    font-size: 80%;
}
.date-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.history-date-wrapper {
    display: flex;
    align-items: center;
}
.date-icon {
    position: absolute;
    left: 10px;
    top: 7px;
    color: #78848b;
    font-size: 20px;
}
.hsword {
    margin: 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #78848b;
}
input.afinput.history {
    background: #1c4861;
    padding-left: 40px;
	max-width: 170px;
}
button.join-reg-btn.history {
    height: 40px;
    padding: 5px;
    font-size: 18px;
    min-width: 150px;
    margin-left: 10px;
}
.depo-divider {
    height: 2px;
    background: #0b2e42;
    margin: 0 auto 15px;
    max-width: 95%;
}
.af-submenu-wrap.history a.afsub-btn {
    min-width: 15.5%;
    font-size: 15px;	
}

.history-table-wrap {
	margin: 10px 0;
}
table.history-table {
	text-align: center;
	color: #f8f8f8;
	font-size: 14px;
}
table.history-table tr.hstop td {
	background: #0b2e42;
	font-weight: 600;
}
table.history-table tr.hstop td:first-child {
	border-radius: 8px 0 0 8px;
}
table.history-table tr.hstop td:last-child {
	border-radius: 0 8px 8px 0;
}
table.history-table tr td {
	padding: 12px 1px;
}
span.pending-st {
    font-size: 14px;
    font-weight: 500;
    color: #08202f;
    background: #ff9600;
    padding: 1px 5px;
    border-radius: 6px;
}
span.success-st {
    font-size: 14px;
    font-weight: 500;
    color: #08202f;
    background: #49d166;
    padding: 1px 5px;
    border-radius: 6px;
}
span.fail-st {
    font-size: 14px;
    font-weight: 500;
    color: #08202f;
    background: #f05f5f;
    padding: 1px 5px;
    border-radius: 6px;
}
.paginiation-history {
    text-align: center;
    padding: 12px 0;
}  
button.page-arrow-btn {
    background: none;
    border: none;
    color: #fff;
}
button.page-arrow-btn:hover {
	color: #ffe27f;	
}
span.page-num-btn {
	letter-spacing: 1px;
	padding: 0 5px;
}
button.btncopy {
	background: none;
	border: none;
	padding: 0;
	color: #fff;
}
button.btncopy:hover {
	color: #ffe27f;	
}
.profile-top-wrapper {
    background: #0b2e42;
    position: relative;
    padding: 20px 25px;
    border-radius: 10px;
	margin-bottom: 15px;
}
.pf-ftitle {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.pfrow {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.pfcol {
    border-right: 2px solid #17405f;
    padding-right: 20px;
}
.pfrow .pfcol:last-child {
	border: none;
	padding-left: 20px;
	padding-right: 0;
}
.pf-label {
    color: #607e8f;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1px;
}
input.profile-input {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 0;
}
button.edit-btn {
    position: absolute;
    right: 15px;
    top: 6px;
    z-index: 2;
    background: none;
    border: none;
    color: #94b6be;
}
button.edit-btn:hover {
    color: #fff;
}
.pfrow-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
	margin-bottom: 15px;
}
.pfcolumn {
    background: #0b2e42;
    position: relative;
    padding: 20px 25px;
    border-radius: 10px;
}
.pw-note {
    color: #f8f8f8;
    padding: 5px 0;
}
.pw-btn-wrap {
	padding-top: 15px;
	text-align: center;
}
button.update-btn {
    background: #ffea8d;
    border: 1px solid transparent;
    color: #0a1941;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    padding: 7px 10px;
    height: 37px;
}
button.update-btn:hover {
	background: #0e212f;
	border: 1px solid #ffea8d;
	color: #ffea8d;
}
.crypto-note {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    background: #0d2436;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cytext {
    font-weight: 400;
    color: #607e8f;
}
.crypto-btn-wrap {
    display: grid;
    grid-template-columns: auto 75px;
    grid-gap: 10px;
	align-items: center;
}
input.crypto-input {
    background: #224d6e;
    height: 37px;
    color: #fff;
    border: none;
    padding: 2px 15px;
    border-radius: 8px;
}
button.update-btn.copy {
    padding: 5px;
}
.bank-profile-wrap {
	margin-top: 15px;
}
button.update-btn.add-bank {
    position: absolute;
    right: 25px;
    top: 13px;
}
.bank-profile-wrap table.history-table tr.hstop td {
    background: #0d2436;
    font-weight: 600;
}
.bank-profile-wrap table.history-table {
    font-size: 15px;
}
.pm-box {
    display: grid;
    grid-template-columns: 55% 35% 10%;
    text-align: center;
    color: #f8f8f8;
    padding: 10px 5px;
    border-bottom: 1px solid #0e4961;
    margin: 3px auto;
	cursor: pointer;
}
.pm-box.top-title {
	background: #0e4961;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    max-width: 100%;
}
.mail-icon {
    position: relative;
}
.unread .mail-icon::after {
    content: '';
    background: #FF0004;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    position: absolute;
    right: -2px;
    top: 0px;
    z-index: 2;
}
.mtitle {
    display: grid;
    grid-template-columns: 26px auto;
    grid-gap: 15px;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: hidden;
}
.unread .mtitle {
	font-weight: 700;
}
button.delete-btn {
    background: none;
    color: #f8f8f8;
    border: none;
    padding: 2px;
}
button.delete-btn:hover {
	color: #7df9ff;
}
.mbtext {
	white-space: nowrap;
    overflow: hidden;
	text-overflow: ellipsis;
}
.bank-info-depo {
    position: relative;
    background: #011825;
    padding: 15px 15px;
    border: 1px solid #064760;
    border-radius: 7px;
    box-shadow: inset 0 0 10px 1px #0b3155;
}
.exrate {
    display: grid;
    grid-template-columns: 80px 130px;
    align-items: center;
}
.submit-note {
    font-style: italic;
}
.reminder-crypto {
    position: relative;
    padding: 10px 0;
	font-size: 14px;
	color: #b7ecfc;
}
ul.terms {
    padding-left: 17px;
	line-height: 1.2;
}
ul.terms li {
    list-style: disc;
}
.quick-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
	color: #7df9ff;
}
.quick-menu-wrapper {
    padding: 15px 0;
	display: none;
}
.topmain-btn {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
    grid-gap: 1%;
}
a.tpm-btn {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    border-radius: 7px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
}
a.tpm-btn.active {
	background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
    color: #fff;
}
a.tpm-btn img {
    margin-bottom: 4px;
	max-height: 25px;
}
a.tpm-btn.active img {
    filter: contrast(1) brightness(5);
}
.bank-info {
	border: 1px solid #1d89a0;
    border-radius: 8px;
}
.table-banking {
	font-size: 14px;
	text-align: center;
}
.table-banking tr td {
    color: #fff;
    padding: 8px 1px;
    background: #041622;
}
.table-banking tr th {
    padding: 8px 1px;
    font-weight: 600;
    background: #0e4961;
    color: #fff;
}
.transfer-input-wrap {
    position: relative;
    max-width: 94%;
}
.transfer_right {
    position: absolute;
    right: -38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 48px;
}
.transfer_right span {
    width: 14px;
    height: 26px;
    border: 1px solid #b7ecfc;
    display: inline-block;
}
.transfer_right .btm {
    border-left: 0px;
    border-top: 0px;
	border-radius: 0 0 20px 0;
}
.transfer_right .top {
    border-left: 0px;
    border-bottom: 0px;
	 border-radius: 0 20px 0 0;
}
button.swap-btn {
	max-width: 25px;
}
button.swap-btn:focus img {
	transform: rotate(180deg);
	transition: linear 0.4s;
}
button.default-btn {
    background: #03151f;
    border: 1px solid #1a2d3a;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    padding: 1px 4px;
    min-width: 92px;
    height: 22px;
}
button.default-btn.active {
    background: linear-gradient(0deg, rgba(46, 115, 161, 1) 0%, rgba(64, 178, 180, 1) 100%);
    border: none;
}
.provider-balance-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 5px;
	padding: 15px 0;
}
.provider-box {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    border-radius: 7px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px #0b3155;
    color: #b7ecfc;
    border-radius: 10px;
    text-align: center;
    max-width: 130px;
    width: 100%;
    margin: auto;
    padding: 8px 5px;
    cursor: pointer;
}
.prov-img {
    margin-bottom: 5px;
    filter: drop-shadow(0px 1px 0px rgb(0, 0, 0, 0.7));
}
.prov-img img {
	max-height: 45px;
}
.prov-amt {
    background: #03151f;
    border: 1px solid #1a2d3a;
    border-radius: 40px;
    max-width: 110px;
    color: #b7ecfc;
    height: 27px;
    font-size: 14px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wl-box-wrap {
    position: relative;
    background: #011825;
    padding: 15px 15px;
    border: 1px solid #064760;
    border-radius: 7px;
    box-shadow: inset 0 0 10px 1px #0b3155;
    text-align: center;
	margin-bottom: 10px;
}
.notice-quick {
    color: #b7ecfc;
    font-size: 13px;
    font-style: italic;
    padding: 5px;
}
.history-input-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.date-info-wrap {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 10px;
}
.inbox-pagination {
    text-align: center;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}
button.mailpage-btn {
    color: #fff;
    padding: 3px;
    font-weight: 600;
    background: none;
    border: none;
    margin: 0 3px;
}
button.mailpage-btn.active {
    color: #7df9ff;
}
.reg-btm-banner {
    position: relative;
    padding: 15px 0;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 8px;
}
.regbn {
	border-radius: 10px;
	overflow: hidden;
}



/** Gashapon **/
.fortune-twist-sec {
	background: url("../images/fortune-twist/bg.jpg")no-repeat top center;
	background-size: cover;
	text-align: center;
	position: relative;
	padding: 0 10px 45px;
}
.rules-btn-wrap {
    padding: 30px 0 0;
}
.title-fortune {
    margin-bottom: -1%;
}
.twist-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #b7ecfc;
	margin-bottom: 20px;
}
.fortune-token-wrap {
    position: relative;
    max-width: 309px;
    margin: 0 auto;
}
.token-num {
    position: absolute;
    left: 20%;
    right: 5%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.maxplay-note {
    color: #a0fdff;
    font-size: 14px;
	text-transform: uppercase;
}
.deco {
	position: absolute;
}
.deco.coin-1 {
    left: -31%;
    top: 29%;
    max-width: 37%;
	animation: float 2s ease-in-out infinite;
}
.deco.coin-2 {
    right: -31%;
    top: 29%;
    max-width: 37%;
	animation: float 2.2s ease-in-out infinite;
}
@-webkit-keyframes float {
0% {
	transform: translateY(-11px);
}
50% {
	transform: translateY(0);
}
100% {
	transform: translateY(-11px);
}
}
.gashapon-wrapper {
    position: relative;
    max-width: 480px;
    margin: 80px auto -9%;
}
.gsp-base-img {
    position: relative;
    z-index: 5;
    margin-top: -13%;
}
.gsp-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: -9.5%;
    pointer-events: none;
    z-index: 4;
    max-width: 100%;
    margin: 0 auto;
}
.spin-btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 53%;
    z-index: 6;
    max-width: 21%;
    margin: 0 auto;
}
.btn-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 70%;
    z-index: 6;
    max-width: 100%;
    margin: 0 auto;
}
button.gach-spin-btn {
	background: none;
	border: none;
	padding: 0;
    margin: 0px auto;
    width: 30%;
}
.gsp-back-img {
    max-width: 96%;
    margin: 0 auto;
}
.ball {
	position: absolute;
	max-width: 15%;
}
.ball.red-1 {
    left: 37%;
    top: 33%;
}
.ball.red-2 {
    right: 23%;
    top: 45%;
    z-index: 3;
}
.ball.red-3 {
    right: 23%;
    top: 31%;
    transform: rotate(10deg);
    z-index: 1;
}
.ball.red-4 {
    right: 51%;
    top: 21%;
    transform: rotate(80deg);
    z-index: 1;
}
.ball.blue-1 {
    left: 29%;
    top: 43%;
}
.ball.blue-2 {
    right: 34%;
    top: 37%;
    z-index: 2;
}
.ball.blue-3 {
    left: 23%;
    top: 30%;
    z-index: 1;
    transform: rotate(-30deg);
}
.ball.blue-4 {
    right: 11%;
    top: 26%;
    z-index: 1;
    transform: rotate(-80deg);
}
.ball.yellow-1 {
    left: 43%;
    right: 0;
    top: 46%;
}
.ball.yellow-2 {
    left: 15%;
    top: 40%;
    z-index: 1;
    transform: rotate(49deg);
}
.ball.yellow-3 {
    right: 11%;
    top: 38%;
    z-index: 1;
    transform: rotate(25deg);
}
.ball.yellow-4 {
    left: 12%;
    right: 0;
    top: 25%;
    margin: 0 auto;
    z-index: 1;
    transform: rotate(21deg);
}
.ball.yellow-5 {
    left: 6%;
    top: 32%;
    margin: 0 auto;
    z-index: 1;
    transform: rotate(86deg);
}

button.gach-spin-btn:hover {
	transform: scale(0.98);
}
.spin-img {
    transition: transform 1s ease;
}
.rotate {
    transform: rotate(270deg);
}

@keyframes tilt-shaking {
	0% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(5px, 5px) rotate(5deg); }
	50% { transform: translate(0, 0) rotate(0eg); }
	75% { transform: translate(-5px, 5px) rotate(-5deg); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
.shaking .ball.blue-3 img, .shaking .ball.yellow-1 img, .shaking .ball.red-3 img {
	animation: tilt-shaking infinite 0.3s;
}
.shaking .ball.blue-1 img, .shaking .ball.yellow-2 img, .shaking .ball.red-2 img {
	animation: tilt-shaking infinite 0.3s;
}
.shaking .ball.blue-2 img, .shaking .ball.yellow-3 img, .shaking .ball.yellow-4 img, .shaking .ball.red-1 img {
	animation: tilt-shaking infinite 0.5s;
}
.shaking .ball.blue-4 img, .shaking .ball.yellow-5 img, .shaking .ball.red-4 img {
	animation: tilt-shaking infinite 0.4s;
}

.dropball {
    position: absolute;
    left: 0;
    right: 0;
    top: 83%;
    z-index: 7;
    max-width: 46%;
    height: 80px;
    margin: 0 auto;
    overflow: hidden;
}
.reward-ball {
    max-width: 32%;
    margin: 0 auto;
	opacity: 0;
	visibility: hidden;
	display: none;
	transform-origin: center;
	animation: dropshake 1.5s ease-in-out;
}
.reward-ball.ball-1.active, .reward-ball.ball-2.active, .reward-ball.ball-3.active  {
	visibility: visible;
	opacity: 1;
	display: block;
}

@keyframes dropshake {
	0% { transform: translateY(-100%) }
	20% {transform: translateY(0) }
	30% {transform: translateY(-8px)}
	40% {transform: translateY(0px) }
	50% {transform: translateY(0) translateX(10px) rotate(10deg)}
	60% { transform: rotate(-10px) translateX(-10px)}
	70% { transform: rotate(10px) translateX(10px)}
	100% { transform: rotate(0) translateX(0px)}
}

/** Modal **/
.modal-content.gashapoon {
    background: none;
    border: none;
	max-width: 300px;
    margin: 0 auto;
}
.reward-box {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
	cursor: pointer;
	animation: glowing infinite linear 1.5s;
}
img.open {
	position: absolute;
	left: 0;
	right: 0;
	transition: 0.2s;
}
img.open {
    opacity: 0;
    visibility: hidden;
	transition: 0.2s;
}
.reward-box.active img.closed {
    opacity: 0;
    visibility: hidden;
	transition: 0.2s;
}
.reward-box.active img.open {
    opacity: 1;
    visibility: visible;
	transition: 0.2s;
}
.prize-get {
    position: absolute;
    left: 0;
    right: 0;
    top: 43%;
	font-size: 40px;
    font-weight: 800;
    color: #03151f;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    transform: scale(0.2);
    z-index: 3;
}
.reward-box.active .prize-get {
	opacity: 1;
    visibility: visible;
	transform: scale(1);
	transition: ease 0.3s;
	transition-delay: 0.3s;
}
.reward-box.active .prize-shine-img {
	opacity: 1;
    visibility: visible;
	transform: scale(1);
	transition: ease 0.3s;
}
@keyframes glowing {
	0% { filter: drop-shadow(0 0 3px rgb(255,255,255,1))}
	50% { filter: drop-shadow(0 0 10px rgb(255,255,255,1)) brightness(1.1)}
	100% { filter: drop-shadow(0 0 3px rgb(255,255,255,1))}
}
button.close-btn {
    color: #fff;
    max-width: max-content;
    margin: 0 auto;
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: linear 0.3s;
}
.reward-box.active ~ button.close-btn {
	opacity: 1;
	visibility: visible;
	transition: linear 0.3s;
}

button.close-x {
    position: absolute;
    color: #000;
    right: 9px;
    top: 10px;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
}

@keyframes glowing {
	0% { filter: drop-shadow(0 0 3px rgb(255,255,255,1))}
	50% { filter: drop-shadow(0 0 10px rgb(255,255,255,1)) brightness(1.1)}
	100% { filter: drop-shadow(0 0 3px rgb(255,255,255,1))}
}
button.close-btn {
    color: #fff;
	background: none;
	padding: 0;
	border: none;
    max-width: max-content;
    margin: 0 auto;
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: linear 0.3s;
}
.reward-box.active ~ button.close-btn {
	opacity: 1;
	visibility: visible;
	transition: linear 0.3s;
}
.token-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.8%;
    z-index: 6;
    font-size: 22px;
    text-transform: uppercase;
    font-family: "Luckiest Guy", cursive;
    text-shadow: 0 1px 5px rgb(0, 0, 0, 0.8);
    letter-spacing: 1px;
}



@media (max-width: 1440px) {
.top-half {
    background: none;
}
	
}


@media (max-width: 1080px) {
.container {
	max-width: 100%!important;
}
button.chat_btn {
    display: none;
}
.lotto-bn-img {
    height: 300px;
	border-radius: 8px;
	overflow: hidden;
}	
.lotto-bn-img img {
    height: 100%;
    object-fit: cover;
	object-position: 54%;
}	
}


@media (max-width: 991px) {	
.log-reg-frame {
	padding: 0;
	background: none;
}	
.log-reg-wrapper {
    max-width: 100%;
}
.lottery-content {
    display: none;
}
.lottery-mobile {
	display: block;
	margin-top: 30px;
}	
.list-toto {
    display: flex;
    align-items: center;
    justify-content: space-around;
	margin-bottom: 15px;
}	
button.lotto-btn {
    background: linear-gradient(130deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 0%) 43%, rgb(255 255 255 / 0%) 100%);
    padding: 5px 0;
    border-radius: 6px;
    border: 1px solid #12436c;
    box-shadow: inset 0 0 5px 1px;
    width: 100%;
    margin: 0 0.5%;
}	
button.lotto-btn.active {
    background: #0e4961;
    border: 1px solid #1d89a0;
    box-shadow: inset 0 0 7px 1px #1d89a0;
}
.lotto-mobile-content .lotto-box {
    width: 100%;
    text-align: center;
}	
.class-vip-wrap {
	display: none;
}	
.player-vip-top {
	margin-top: 15px;
    grid-template-columns: auto;
}	
.reward-mission-boxes {
    text-align: center;
}	
.mission-box {
	width: 100%;
}
.step-inner {
    font-size: 1.4vw;
    grid-template-columns: 25% auto;
    grid-gap: 1.2vw;
}
.contact-top-banner {
    margin-bottom: 15px;
}	
.contact-us-wrapper {
    grid-template-columns: auto;
    padding: 20px 15px;
}
.support-girl {
    margin: 0 auto;
    max-width: 45%;
	grid-row: 2/3;
}	
.ct-detail {
    display: block;
}
.af-container {
    display: block;
	padding: 0;
}
.afcolumn-left {
    display: none;
}	
.provider-balance-wrapper {
	display: none;
}
.quick-menu-wrapper {
    display: block;
}	
.afterlogin_wrap {
    padding: 0 0 30px;
}	
}

@media (max-width: 767px) {		
.btn_dropup_lang button img {
    margin-right: 12px;
}	
.btn_dropup_lang .dropdown-toggle::after {
    right: 5px;
    font-size: 16px;
}	
.tgbox {
    max-width: 24%;
}
.product-inner-wrapper .prdbox, .prdbox {
    width: 23%;
}	
.header_btn_dep {
    border-radius: 30px;
    padding: 0 10px;
    font-size: 13px;
    height: 35px;
	line-height: 1.1;
}	
.btn_dep {
	display: none;
}	
.header_btn_dep .rd-color {
    font-size: 13px;
    padding: 0;
    margin-left: 5px;
}
.head_afterlogin_custom .btn_dropup_lang {
    width: auto;
}	
.head_afterlogin_custom .btn_dropup_lang button {
    max-width: 55px;
}	
.bs-username {
    display: none;
}
.busp-box {
    max-width: 48%;
}	
.uspicon {
    max-width: 75px;
}
.input-row {
    grid-template-columns: auto;
}	
a.blog-box {
    width: 48%;
    margin: 0 0.5% 10px;
}
.vip-club-levels {
    overflow-x: scroll;
}
.level-box {
    width: 70px;
}	
.perk-box {
    width: 31%;	
}
.reward-btn-top {
    text-align: center;
}	
.rwsitem {
    width: 32%;
    margin: 5px 0.3%;
}
.redeem-stepbox {
    width: 48%;
}
.title-fortune {
    margin-bottom: -5%;
}	
.twist-subtitle {
    font-size: 15px;
}	
.podium-base {
    margin: 0 -10px;
    height: 200px;
}	
.podium-base img {
    object-fit: cover;
    height: 100%;
}
.deco.coin-1,.deco.coin-2 {
	display: none;
}
.fortune-twist-sec {
    margin: 0 -15px;
}
.event-wallet-wrapper {
    max-width: 80%;
}	
.ewtitle {
    font-size: 3.5vw;
}
.ew-amt {
    font-size: 4.2vw;
}
.app-download-wrapper {
    grid-template-columns: auto;
    padding: 20px 15px;
    margin: 20px 0;
}	
.mb-app-img {
    position: relative;
    margin: 0 auto;
    max-width: 50%;
}
.aform-wrapper {
    padding: 15px 15px;
}	
.mainwallet-wrap {
    grid-template-columns: 55% 30% 15%;
}
.vip-badge-img {
    max-width: 70px;
    width: 100%;
}	
.mblvl-text-1 {
    font-size: 14px;
}	
.mblvl-text-2 {
    font-size: 18px;
}	
.history-input-wrap {
    display: block;
}
.mtitle {
    grid-template-columns: 20px auto;
    grid-gap: 10px;
}	
.pm-box.top-title {
    font-size: 15px;
}	
.pm-box {
    font-size: 13px;
}	
.transfer_right {
    right: -33px;
}
.upload-box {
    grid-template-columns: auto 140px;
}	
.upload-box button.submit-af-btn {
    min-width: auto;
    font-size: 15px;
}	
.guide-step {
    height: auto;
}	
.title-guide {
    font-size: 4vw;
}	
.step-info {
    font-size: 2.5vw;
}
.phone-img {
    position: initial;
    max-width: 70%;
    margin: 0 0 0 auto;
}
.slots-lobby .prdbox {
	width: 31.5%;
}
.slots-lobby .prdbox img {
    height: 28vw;
}	
}



@media (max-width: 480px) {
.footer-in ul li a .mbm-img {
    width: 30px;
}
.footer-in ul li a .mbm-img.wallet {
    width: 55px;
}	
.contact-float {
    animation: none;
    transform: scale(0.75);
    transform-origin: right bottom;
}	
.ann-wrap {
    font-size: 13px;
}	
.top-slot-game-wrapper {
    background-size: cover;
}	
.top-slot-title {
    font-size: 18px;
}	
.top-slot-game-wrapper {
	background-size: 100% 105%;
	background-position: center;
	border: 1px solid #174e79;
	padding: 15px 10px;
}
.topgame-wrap {
    text-align: center;
}	
.tgbox {
	max-width: 32%;
}
.product-wrapper {
    text-align: center;
}	
.product-inner-wrapper .prdbox, .prdbox {
    width: 31%;
}		
.best-title-1 {
    font-size: 20px;
	margin-bottom: 10px;
}
button.reg-login-submit-btn {
    width: 100%;
    font-size: 22px;
    height: 50px;
    border-radius: 10px;
}	
.reg-btm-banner {
	grid-template-columns: auto;
	grid-gap: 15px;
}
.sms-wrap {
    grid-template-columns: 80px auto;
}
ul.nav.nav-activation li.nav-item a.nav-link {
    padding: 10px 2px;
	font-size: 11px;
}	
span.atvicon {
    margin-right: 6px;
}	
span.atvicon img {
    max-width: 20px;
}	
input.tacbox {
    width: 24%;
    height: 80px;
    font-size: 44px;
}
.regtitle {
    font-size: 22px;
}	
.livechat-neon {
    margin-left: -17%;
    max-width: 70%;
    margin: 0 auto;
}	
.activate-img {
    max-width: 70%;
}	
.congrat-text {
    font-size: 24px;
}	
.activated-sub {
    font-size: 16px;
}	
a.blog-box {
    width: 100%;
    margin: 0 0 10px;
}
.top-blog-title {
    font-size: 20px;
}
.lotto-bn-img {
	height: 280px;
}	
.number-box-wrapper {
    max-width: 90%;
}
.numbox {
    width: 100%;
    height: 21.5vw;
    font-size: 16vw;
}	
.modal-content.download {
    padding: 15px 15px;
    font-size: 14px;
}	
.table-banking {
    font-size: 12px;
}
.depo-prg-wrap {
    font-size: 9px;
}
.vip-title {
    font-size: 24px;
}
.rwsitem {
    width: 48%;
}	
.rwitem-name {
    font-size: 13px;
}
.quick-title {
    font-size: 20px;
}	
.gashapon-wrapper {
    margin: 80px auto -16%;
}	
.podium-base {
	height: 48vw;
}	
.app-instruct-wrap {
    flex-direction: column;
    row-gap: 15px;
}
.ctbox {
	grid-template-columns: auto;
	grid-gap: 7px;
	font-size: 13px;
	text-align: center;
}
.ct-detail {
    padding-right: 0;
}	
.bank-pay {
    width: 32%;
}	
.bank-acct-btn {
	width: 100%;
	font-size: 12px;
}
form.reg-form-wrapper {
    padding: 20px 20px;
}	
.phone-wrap {
    grid-template-columns: 110px auto;
}	
a.afsub-btn {
    min-width: auto;
    width: 32%;
    font-size: 14px;
    padding: 10px 5px;
}
.bank-acct-btn.bnk {
    font-size: 13px;
}
label.bank-acct-btn.bnk img {
    max-height: 30px;
    margin-right: 5px;
}
table.bank-depo {
    font-size: 14px;
}
.mainwallet-wrap {
    padding: 10px 10px;
}
.vip-badge-img {
	max-width: 60px;
}	
.mblvl-text-1 {
	font-size: 12px;
}	
.mblvl-text-2 {
	font-size: 14px;
}
.info-wrap .intro {
    min-height: auto;
    padding: 15px 0;
}	
.intro_promotion_title {
    font-size: 26px;
}	
.info-wrap .intro_subtitle {
    line-height: 1.2;
    font-size: 15px;
    margin-bottom: 10px;
}
.info-wrapper {
	font-size: 14px;
}
button.btn-tnc {
    font-size: 13px;
}
.tnc-body {
    padding: 15px 10px 10px;
    line-height: 1.2;
    font-size: 13px;
}	
a.tpm-btn {
    font-size: 12px;
    padding: 5px 0;
}	
.livechat-activate-wrap {
    grid-template-columns: auto;
}	
.pmcbox {
    padding: 10px 5px;
    font-size: 12px;
    height: auto;
    min-width: 100px;	
}
.pmbox {
    max-width: 100%;
    margin: 10px 0;
}
.slots-lobby .prdbox {
	width: 48%;
}
.slots-lobby .prdbox img {
    height: 42vw;
}	
.prd-top-banner, .contact-top-banner {
    border-radius: 7px;
}	
button.default-btn {
    font-size: 11px;
    padding: 1px 2px;
    min-width: 80px;
}	
}














