#modal-mask.visible {
    z-index: 99999;
}
.notif-dot{
    margin-top: -30px !important;
    margin-left: -80px !important;
    color: #2196F3;
    background: #F44336;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.jq-toast-wrap {
	z-index: 999999!important;
}
html, body {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}
button, input {
  touch-action: manipulation;
}
.announcement-bar {
    z-index: 998 !important;
}
.announcement-bar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: 22px;
    background: #536973;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 6px;
    z-index: 999;
    overflow: hidden;
}

.announcement-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-left: 25px;
    position: relative;
}
.announcement-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #ffe22b;
    margin-right: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.announcement-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    position: relative;
}
.announcement-text {
    font-size: 13px;
    font-weight: 500;
    color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.dark_mode .announcement-bar {
	background: #1a2c38!important;
}
.announcement-text {
	opacity: 1;
	transition: opacity 0.6s ease;
	white-space: nowrap;
}

.announcement-text.fade-out {
	opacity: 0;
}
.announcement-content {
	overflow: hidden;
}
.announcement-bar {
	width: 100%;
}

.announcement-container {
	overflow: hidden;
	height: 32px;
	position: relative;
}

.announcement-content {
	position: relative;
	height: 100%;
}

.announcement-text {
	position: absolute;
	width: 100%;
	top: 100%;
	white-space: nowrap;
	transition: top 0.5s ease, transform 0.5s ease;
}
.nav_top {
	border-bottom: none;
	box-shadow: none;
}
.slide_menu_container {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Chrome / Edge / Safari */
.slide_menu_container::-webkit-scrollbar {
    width: 5px;
}

.slide_menu_container::-webkit-scrollbar-track {
    background: transparent;
}

.slide_menu_container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.35);
    border-radius: 10px;
}

.slide_menu_container::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.55);
}

/* Firefox */
.slide_menu_container {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.4) transparent;
}
.slide_menu_container {
    width: 7rem;
    overflow-y: auto;
}
.slide_menu_container > div:last-child {
	padding-bottom: 100px;
}

.slide_menu_inner {
    width: 100%;
    padding-right: 8px;
}
.select_bar_drop_down {
    position: relative;
    cursor: pointer;
	margin-left: 10px;
}

.balance_dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
	min-width: 342px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 0px;
    display: none;
    z-index: 1001;
	border: 1px solid rgba(74, 85, 104, 0.3);
}
.balance_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.2s;
}

.balance_item:hover {
    background: #f5f7fb;
}
.balance_item .left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.balance_item .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
	background: #e5e5e578;
    border: 1px solid #dddddd5e;
}
.balance_item .icon img {
    width: 20px;
}
.balance_item .info {
    display: flex;
    flex-direction: column;
}

.balance_item .title {
    font-size: 13px;
	color: #555;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.balance_item .value {
    font-size: 15px;
    font-weight: 600;
}
.balance_item .right {
    display: flex;
    align-items: center;
}
.claim_commission_btn {
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
	width: 50px;
    height: 35px;
}
.balance_footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    padding: 10px;
}
.balance_dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.drop_down_header {
    user-select: none;
}
.balance_arrow {
	font-size: 11px;
	margin-right: 5px;
}
.balance_arrow i {
    display: inline-block;
    transition: transform 0.25s ease;
}

.balance_arrow.active i {
    transform: rotate(180deg);
}
.dark_mode .balance_dropdown {
	background: #1a2c38 !important;
}
.dark_mode .balance_header {
    border-bottom: 1px solid rgba(74, 85, 104, 0.2);
    background: rgba(45, 55, 72, 0.3);
}
.dark_mode .balance_item:hover {
    background: rgba(0, 0, 0, 0.25);
}
.dark_mode .balance_item .title {
	color: #C5C5C5;
}
.dark_mode .balance_item .icon {
	background: #254d6b45 !important;
    border: 1px solid #0a384ec9;
}
.claim_commission_btn:disabled {
    background: #cbd5e1; 
    color: #64748b;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}
@media screen and (min-width: 769px) {
    .nav_container_wrapper_middle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        max-width: 700px;
        z-index: 0;
    }
}

.user_profile_wrapper {
	position: relative;
}

.user_profile_button {
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 5rem;
    height: 4rem;
    background: hsla(0, 0%, 100%, .05) !important;
    border: 1px solid hsla(0, 0%, 100%, .1) !important;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    color: #fff !important;
    margin-left: 5px;
    gap: 6px;
	font-size: 11px;
}

.user_profile_dropdown {
	position: absolute;
    top: 120%;
    right: 0;
    width: 100%;
    min-width: 342px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 0px;
    display: none;
    z-index: 1001;
    border: 1px solid rgba(74, 85, 104, 0.3);
}

.user_profile_dropdown.show {
	display: block;
}

/* arrow */
.user_arrow i {
	font-size: 11px;
	transition: transform 0.25s ease;
}
.user_arrow.active i {
	transform: rotate(180deg);
}

.user_profile_header {
	display: flex;
    justify-content: space-between;
    padding: 0px;
    font-weight: 600;
    border-bottom: 1px solid #DDD;
    background: #e9edf2;
    border-radius: 1rem 1rem 0px 0px;
}

/* menu */
.user_profile_menu {
	padding: 0px;
}

.user_item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	cursor: pointer;
	color: #555;
	transition: background 0.2s;
	font-size: 15px;
}
.user_item:last-child{
	border-radius: 0px 0px 1rem 1rem;
}
.user_item:hover {
	background: #f5f7fb;
}

.user_item i {
	width: 16px;
	text-align: center;
}

/* DARK MODE */
.dark_mode .user_profile_dropdown {
	background: #1a2c38;
}

.dark_mode .user_item:hover {
	background: rgba(0,0,0,0.25);
}
.nav_container_wrapper_middle {
	padding-left: 10px;
}
.balance_actions {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    font-weight: 600;
	border-bottom: 1px solid #DDD;
    background: #e9edf2;
	border-radius: 1rem 1rem 0px 0px;
	gap: 10px;
}
.balance_actions a {
    width: 50%;
}

.balance_actions .btn_deposit,
.balance_actions .btn_withdraw {
	flex: 1;
	border: none;
	padding: 8px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}

.balance_actions .btn_deposit {
	background: #4CAF50;
	color: #fff;
}

.balance_actions .btn_withdraw {
	background: #2196f3;
	color: #fff;
}
.dark_mode .balance_actions {
    border-bottom: 1px solid rgba(74, 85, 104, 0.2);
    background: rgba(45, 55, 72, 0.3);
}
.dark_mode .user_profile_header {
	background: rgba(45, 55, 72, 0.3);
	border-bottom: 1px solid rgba(74, 85, 104, 0.2);
}
.dark_mode .user_item {
	color: #DDD;
}
.notification_wrapper {
	margin-left: 0px !important;
}