/* Preloader */
#preloader {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0px;
	top: 0px;
	z-index: 99999;
	background: var(--PRELOAD_BG);
}

#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dstg-loader_img{
	width: 250px;
}
/* Preloader */

body {
    position: relative;
	font-family: var(--PRIMARY_FONT_FAMILY);
	font-size: var(--DEFAULT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
	background: var(--BODY_BG);
}

main {
	display: block
}

.main-wrap {
	margin-top: 100px;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 10px
}

*::-webkit-scrollbar-track {
    background-color: var(--SCROLLBAR_BG);
    color: var(--SCROLLBAR_BG);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
	background-color: var(--SCROLLBAR_COLOR);
	color: var(--SCROLLBAR_COLOR);
	border-radius: 10px;
}

*::-ms-scrollbar {
	width: 6px;
    height: 10px
}

*::-ms-scrollbar-track-piece {
	background-color: var(--SCROLLBAR_BG);
    color: var(--SCROLLBAR_BG);
}

*::-ms-scrollbar-thumb {
	background-color: var(--SCROLLBAR_COLOR);
	color: var(--SCROLLBAR_COLOR);
}

/* MODAL */
.modal-content {
	border-radius: 10px;
	background: var(--MODAL_BG);
    color: var(--MODAL_TXT_COLOR);
    border: var(--MODAL_BORDER);
    box-shadow: var(--MODAL_BOX_SHADOW);
}

.modal-header {
	position: relative;
    border: none;
    border-radius: 10px 10px 0 0;
    padding: 1rem 1rem;
    align-items: center;
    justify-content: center;
    background: var(--MODAL_HEADER_BG);
    color: var(--MODAL_HEADER_TXT_COLOR);
}

.modal-header:after {
	content: "";
    position: absolute;
    width: 95%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%)
}

.modal-header .title {
	font-family: var(--SECONDARY_FONT_FAMILY);
	letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
	font-size: var(--SUBHEADER_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
}

.modal-header .btn-modalClose {
	position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--MODAL_CLOSE_BTN_BG);
    color: var(--MODAL_CLOSE_BTN_COLOR);
    font-size: var(--ICON_XSMALL_FONT_SIZE);
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
}
/* MODAL */

.dstg-bg-gradient-primary {
    background: var(--PRIMARY_BTN_BG);
    color: var(--PRIMARY_BTN_COLOR);
    border: var(--PRIMARY_BTN_BORDER);
    box-shadow: var(--PRIMARY_BTN_SHADOW);
}

.dstg-bg-gradient-primary:hover {
	filter: var(--PRIMARY_BTN_HOVER_FILTER_BG);
	color: var(--PRIMARY_BTN_HOVER_COLOR);
	border: var(--PRIMARY_BTN_HOVER_BORDER);
}

.important-icon {
    color: var(--IMPORTANT_COLOR);
}

.icon-box {
	border-radius: 10px;
    background: var(--THIRD_BTN_BG);
    color: var(--THIRD_BTN_COLOR);
    border: none;
    box-shadow: var(--THIRD_BTN_SHADOW);
    padding: 0;
}

.icon-box[data-tooltip] {
	position: relative;
}

.icon-box[data-tooltip]::after {
	content: attr(data-tooltip);
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    background: var(--CARD_2_BG);
    color: var(--TXT_COLOR_1);
    font-size: 12px;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    font-family: var(--SECONDARY_FONT_FAMILY);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
	background: var(--CARD_2_BG);
    color: var(--CARD_2_TXT_COLOR);
    transition: opacity 0.2s ease;
}

.icon-box[data-tooltip]::before {
	content: "";
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--CARD_2_BG);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.icon-box[data-tooltip]:hover::after, 
.icon-box[data-tooltip]:hover::before {
	opacity: 1;
}

.icon-box:hover {
	filter: var(--THIRD_BTN_HOVER_BG);
	color: var(--THIRD_BTN_HOVER_COLOR);
	border: var(--THIRD_BTN_HOVER_BORDER);
}

.icon-box .icon-btn {
	height: 45px;
	width: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: var(--ICON_FONT_SIZE);
}

/* No result found */
.no-results {
	display: none;
	text-align: center;
	padding-bottom: 20px;
}

.no-results img {
	width: 160px;
	padding-bottom: 14px;
}

.no-results p {
	color: var(--TXT_COLOR_4);
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
}
/* No result found */

/* HEADER */
.dstg-header{
	background: var(--HEADER_BG);
	color: var(--HEADER_TXT_COLOR);
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
}

.dstg-header-content {
	width: 100%;
    align-items: center;
    height: 80px;
    display: flex;
}

.dstg-header-content .dstg-header-left {
	width: 100%;
	height: 60px;
	display: flex;
    align-items: center;
    margin: auto 10px auto 15px;
    gap: 20px;
}

.dstg-header-content .dstg-header-left .dstg-logo {
	max-width: none;
	padding-left: 10px;
}

.dstg-header-content .dstg-header-left a,
.dstg-header-content .dstg-header-left a img {
	height: 85%;
	display: flex;
	align-items: center;
	cursor: pointer;
}

/* header qr element */
.dstg-header-content .dstg-header-left .qrElment {
	cursor: pointer;
    margin: 0 18px;
}

.dstg-header-content .dstg-header-left .qrElment .fa-qrcode {
    font-size: 38px;
    color: var(--color1);
    border: 2px solid var(--color1);
    padding: 4px;
    border-radius: 4px;
}
/* header qr element */

.dstg-header-content .dstg-header-center {
	display: flex;
	margin: auto 2%;
	gap: 12px;
}

.dstg-header-content .dstg-header-center .dstg-traceAmt-box {
    min-width: 180px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: pointer;
    height: 100%;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    vertical-align: middle;
    margin-right: 20px;
    padding: 20px 0
}

/* Wallet List */
.amount-container {
    display: inline-grid;
    padding: 0 10px;
    background: inherit;
    border: var(--THIRD_BTN_BORDER);
    border-radius: 10px;
    color: var(--HEADER_TXT_COLOR);
    height: 45px;
    width: 300px;
    align-items: center;
    grid-template-columns: 55% 10% 35%;
    cursor: pointer;
}

.amount-container .balance-amount {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    padding-left: 10px;
}

.amount-container span i {
	font-size: var(--ICON_XSMALL_FONT_SIZE);
}

.amount-container .deposit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 10px;
    font-size: var(--BUTTON_MED_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    background: var(--PRIMARY_BTN_BG);
    color: var(--PRIMARY_BTN_COLOR);
    border: var(--PRIMARY_BTN_BORDER);
    box-shadow: var(--PRIMARY_BTN_SHADOW);
}

.amount-container .deposit-btn:hover {
	filter: var(--PRIMARY_BTN_HOVER_FILTER_BG);
	color: var(--PRIMARY_BTN_HOVER_COLOR);
	border: var(--PRIMARY_BTN_HOVER_BORDER);
}

.amount-container:not(:has(.deposit-btn:hover)):hover .wallet-bal-list {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.amount-container .wallet-bal-list {
    position: absolute;
    width: 450px;
    max-height: fit-content;
    overflow: hidden;
    right: 142px;
    top: 70px;
    border-radius: 10px;
    transform: translateY(10px);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    color: var(--AFTER_LOGIN_WALLET_LIST_COLOR);
    background: var(--AFTER_LOGIN_WALLET_LIST_BG);
    border: var(--AFTER_LOGIN_WALLET_LIST_BORDER);
    box-shadow: var(--AFTER_LOGIN_WALLET_LIST_BOX_SHADOW);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    z-index: 100;
    transition: all .3s ease-in-out;
    cursor: default;
}

.wallet-bal-list .wallet-list-header {
	margin: 10px 1rem;
}

.wallet-bal-list .wallet-list-header .main-wal-info {
    display: flex;
    align-items: baseline;
}

.wallet-bal-list .wallet-list-header .main-wal-info .main-bal {
    display: flex;
    align-items: baseline;
    gap: 0 5px;
    padding: 0;
}

.wallet-bal-list .wallet-list-header .main-wal-info .refresh-bal {
    display: flex;
    justify-content: right;
    padding-right: 0;
}

.wallet-bal-list .wallet-list-header .main-wal-info .refresh-bal .btn-refresh {
    background: var(--THIRD_BTN_BG);
    color: var(--THIRD_BTN_COLOR);
    border: none;
    box-shadow: var(--THIRD_BTN_SHADOW);
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: var(--BUTTON_MED_FONT_SIZE);
}

.wallet-bal-list .wallet-list-header .main-wal-info .refresh-bal .btn-refresh:hover {
	filter: var(--THIRD_BTN_HOVER_BG);
	color: var(--THIRD_BTN_HOVER_COLOR);
	border: var(--THIRD_BTN_HOVER_BORDER);
}

.wallet-bal-list .wallet-list-header .main-wal-info .refresh-bal .btn-refresh:disabled {
    background: var(--ICON_DISABLED_BG);
    cursor: not-allowed;
}

.wallet-bal-list .wallet-list-header .main-wal-info .refresh-bal .refreshTimer {
    align-content: center;
}

.wallet-bal-list .wallet-list-header .search-list-item {
    position: relative;
    margin: 12px 0;
    width: 100%;
    color: var(--TXT_COLOR_4);
}

.wallet-bal-list .wallet-list-header .search-list-item i {
	position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.wallet-bal-list .wallet-list-header .search-list-item .search-walletList {
    height: 36px;
    width: 100%;
    padding: 8px 32px;
	border-radius: 10px;
	background: inherit;
	color: var(--AFTER_LOGIN_WALLET_LIST_COLOR);
    border: var(--THIRD_BTN_BORDER);
}

.wallet-bal-list .wallet-list-header .search-list-item .search-walletList:focus {
	border-width: 2px;
	outline: none;
}

.wallet-bal-list .wallet-list-header .search-list-item .clear-btn {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: var(--TXT_COLOR_4);
	font-size: var(--ICON_FONT_SIZE);
	display: none;
	user-select: none;
}

.wallet-bal-list .wallet-list-header .search-list-item .clear-btn:hover {
	color: var(--TXT_COLOR_3);
}

.wallet-bal-list .wallet-list-center {
    margin: 8px 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    height: 180px;
}

.wallet-bal-list .wallet-list-center .list-item- {
    display: grid;
    grid-template-columns: 55% 30% 15%;
    margin-bottom: 10px;
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
}

.wallet-bal-list .wallet-list-center .list-item- .locked.hide {
    display: none;
    opacity: 0;
}

.wallet-bal-list .wallet-list-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--AFTER_LOGIN_WALLET_LIST_FOOTER_BG);
    color: var(--AFTER_LOGIN_WALLET_LIST_FOOTER_COLOR);
    padding: 10px 1rem;
}

.wallet-bal-list .wallet-list-footer .btn-restoreAll {
    background: var(--PRIMARY_BTN_BG);
    color: var(--PRIMARY_BTN_COLOR);
    border: var(--PRIMARY_BTN_BORDER);
    box-shadow: var(--PRIMARY_BTN_SHADOW);
    font-size: var(--BUTTON_MED_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
}

.wallet-bal-list .wallet-list-footer .btn-restoreAll:hover {
	filter: var(--PRIMARY_BTN_HOVER_FILTER_BG);
	color: var(--PRIMARY_BTN_HOVER_COLOR);
	border: var(--PRIMARY_BTN_HOVER_BORDER);
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider {
	display: flex;
	justify-content: end;
	padding: 0;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn label {
    font-weight: var(--REG_FONT_WEIGHT);
    margin: 0;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn input[type=checkbox] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn .toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    border-radius: 20px;
    margin-right: 10px;
    text-transform: uppercase;
    transition: .3s linear;
    border: none;
    background: var(--INACTIVE_BTN_BG);
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn .toggle-slider:before {
    content: "";
    position: absolute;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translate(5px, -50%);
    transition: .3s linear;
    background: var(--TXT_COLOR_1);
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn input[type=checkbox]:checked + .toggle-slider {
    background: var(--ACTIVE_BTN_BG);
    border: none;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn input[type=checkbox]:checked + .toggle-slider:before {
    transform: translate(30px, -50%);
}

.toggle-btn .toggle-slider .on {
    width: fit-content;
    margin: auto;
    display: none;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn input[type=checkbox]:checked + .toggle-slider .on {
    display: block;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn .toggle-slider .off {
    width: fit-content;
    margin: auto;
    display: block;
}

.wallet-bal-list .wallet-list-footer .hide-zero-slider .toggle-btn input[type=checkbox]:checked + .toggle-slider .off {
    display: none;
}
/* Wallet List */

.dstg-header-content .dstg-header-right {
	align-items: center;
	display: flex;
	gap: 20px;
	margin-right: 2%;
}

.dstg-header-content .dstg-header-right .dstg-buttons {
	font-family: var(--SECONDARY_FONT_FAMILY);
	font-size: var(--BUTTON_LARGE_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
}

.dstg-header-content .dstg-header-right .dstg-buttons button {
	width: 110px;
	height: 45px;
	border-width: 0;
	transition: all 0.3s ease 0s;
	border-radius: 8px;
	padding: 8px;
	cursor: pointer;
	letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
}

.dstg-header-content .dstg-header-right .dstg-buttons .dstg-sign-in {
	border: var(--THIRD_BTN_BORDER);
	background: inherit;
	color: var(--THIRD_BTN_COLOR);
	box-shadow: 0px 0px 2px 0px #00000040;
}

.dstg-header-content .dstg-header-right .combine-icon-box {
	display: flex;
	background: var(--THIRD_BTN_BG);
    border-radius: 10px;
}

.dstg-header-content .dstg-header-right .combine-icon-box .icon-box:nth-child(1) {
	border-radius: 10px 0 0 10px;
}

.dstg-header-content .dstg-header-right .combine-icon-box .icon-box:last-child {
	border-radius: 0 10px 10px 0;
}

.dstg-header-content .dstg-header-right .combine-icon-box:has(> .icon-box:only-child) > .icon-box {
	border-radius: 10px;
}

.dstg-header-content .dstg-header-right .combine-icon-box .icon-box .icon-btn {
	width: 60px;
}

.dstg-header-content .dstg-header-right .combine-icon-box .combine-icon-box-divider {
	height: 25px;
    border-right: 2px solid #999DA4;
    margin: auto 0;
}

.dstg-header-content .dstg-header-right .profile-btn {
	width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dstg-header-content .dstg-header-right .profile-btn .icon-btn {
    width: 72%;
	justify-content: space-between;
	font-size: var(--ICON_XSMALL_FONT_SIZE);
}

.dstg-header-content .dstg-header-right .profile-btn .icon-btn .dstg-member-img {
	height: 35px;
	width: auto;
}

.dstg-header-content .dstg-header-right .profile-btn:hover + .menu-box, 
.dstg-header-content .dstg-header-right .menu-box:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
}

.dstg-header-content .dstg-header-right .menu-box {
    position: absolute;
    width: 250px;
    max-height: 650px;
    overflow: auto;
    right: 20px;
    top: 70px;
    border-radius: 10px;
    transform: translateY(10px) scaleY(0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    color: var(--MODAL_TXT_COLOR);
    background: #282A30;
    border: var(--MODAL_BORDER);
    box-shadow: var(--MODAL_BOX_SHADOW);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    z-index: 100;
    transition: all .3s ease-in-out;
}

.dstg-header-content .dstg-header-right .menu-box .menu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px;
	margin: 0;
}

.dstg-header-content .dstg-header-right .menu-box .menu-list .menu-link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 10px;
}

.dstg-header-content .dstg-header-right .menu-box .menu-list .menu-link:hover {
	background: var(--THIRD_BTN_BG);
	color: var(--THIRD_BTN_COLOR);
	border: none;
	box-shadow: var(--THIRD_BTN_SHADOW);
	border-radius: 10px;
	cursor: pointer;
}

.dstg-header-content .dstg-header-right .menu-box .menu-list .menu-link i {
	font-size: var(--ICON_SMALL_FONT_SIZE);
}

.dstg-header-content .dstg-header-right .menu-box .menu-list .menu-link .menu-text {
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
}

/* Side Bar */
.sidebar-menu {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 270px;
	padding-top: 80px;
	background: var(--SIDE_NAV_BG);
	color: var(--SIDE_NAV_COLOR);
	transition: width 0.3s ease;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 888;
}

.sidebar-menu ~ main,
.sidebar-menu ~ .footer-9 {
	margin-left: 270px;
}

.sidebar-menu.collapsed {
	width: 80px;
	transition: width 0.3s ease;
}

.sidebar-menu.collapsed ~ main,
.sidebar-menu.collapsed ~ .footer-9 {
	margin-left: 100px;
}

.sidebar-menu .sidebar-box {
	display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-menu .menu-item:has(.active) ~ .sidebar-box {
	height: auto;
}

.sidebar-menu .sidebar-box .sidebar-top {
	display: flex;
    flex-direction: column;
}

.sidebar-menu .menu-item {
	display: flex;
	margin: 10px 15px 0 15px;
	height: 45px;
	background: var(--SIDE_NAV_MENU_LIST_BG);
    border-radius: 10px;
}

.sidebar-menu.collapsed .menu-item {
	margin: 10px 20% 0 15px;
}

#sidebarTooltip {
	position: fixed;
	font-family: var(--SECONDARY_FONT_FAMILY);
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
	background: var(--CARD_2_BG);
	color: var(--CARD_2_TXT_COLOR);
	padding: 6px 10px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
	z-index: 1000;
}

#sidebarTooltip::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -11px;
	transform: translateY(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: transparent var(--CARD_2_BG) transparent transparent; /* arrow pointing left */
}

.sidebar-menu.collapsed .menu-item .menu-link {
	position: relative;
	padding: 4px;
}

.sidebar-menu .menu-item .menu-link {
	display: flex;
	align-items: center;
    justify-content: flex-start;
    color: var(--SIDE_NAV_MENU_LIST_COLOR);
    border-radius: 10px;
    padding: 14px;
    width: 100%;
    height: 100%;
    gap: 6px;
	text-decoration: none;
	cursor: pointer;
}

.sidebar-menu .menu-item .menu-link:hover, 
.sidebar-menu .menu-item.active .menu-link {
	background: var(--SIDE_NAV_MENU_LIST_HOVER_BG);
	color: var(--SIDE_NAV_MENU_LIST_HOVER_COLOR);
}

.sidebar-menu .menu-item .sidebar-icon {
	font-size: var(--ICON_SMALL_FONT_SIZE);
	min-width: 40px;
    display: flex;
	justify-content: center;
    align-items: center;
}

.sidebar-menu .menu-item .sidebar-img-box {
	min-width: 40px;
    display: flex;
	justify-content: center;
    align-items: center;
}

.sidebar-menu .menu-item .sidebar-img {
	width: 20px;
	height: 20px;
}

.sidebar-menu .menu-item .sublist-icon {
    display: flex;
	align-items: center;
    justify-content: flex-end;
    flex: 1;
	font-size: var(--ICON_XSMALL_FONT_SIZE);
}

.sidebar-menu .menu-item .sidebar-txt, 
.sidebar-menu .color-mode {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
  	transition: opacity 0.3s ease, all 0.3s ease 0.2s;
	font-family: var(--SECONDARY_FONT_FAMILY);
	letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
}

.sidebar-menu.collapsed .sidebar-txt, 
.sidebar-menu.collapsed .sublist-icon,
.sidebar-menu.collapsed .color-mode {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.sidebar-menu .menu-item.subNav {
	z-index: 1;
}

.sidebar-menu .menu-item-list {
	max-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	margin: 0 15px;
	padding: 0;
    background: var(--SIDE_NAV_MENU_LIST_BG);
    border-radius: 0 0 10px 10px;
    transition: max-height 0.3s ease;
}

.sidebar-menu .menu-item.active ~ .menu-item-list {
	max-height: 500px;
	margin: 0 15px;
    margin-top: -15px;
    padding-top: 18px;
}

.sidebar-menu .menu-item-list .submenu-link {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    height: 100%;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.sidebar-menu .menu-item-list .submenu-link:hover {
	background: var(--SIDE_NAV_MENU_LIST_HOVER_BG);
	color: var(--SIDE_NAV_MENU_LIST_HOVER_COLOR);
}

.sidebar-menu .menu-item-list .prov-img {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 40px;
}

.sidebar-menu .menu-item-list .prov-img img {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-menu .menu-item-list .submenu-txt {
	font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
    font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--SIDE_NAV_MENU_LIST_COLOR);
}

.sidebar-menu .sidebar-box .sidebar-bottom {
    display: flex;
    flex-direction: column;
    flex: 1;
	justify-content: end;
	padding-bottom: 20px;
}

.sidebar-menu .sidebar-box .sidebar-bottom .color-mode {
    display: grid;
    grid-template-columns: 50% 50%;
	align-items: center;
	padding: 0 10px;
}

.sidebar-menu.collapsed .sidebar-box .sidebar-bottom .color-mode {
	display: none;
}

.sidebar-menu .sidebar-box .sidebar-bottom .color-mode .mode {
	justify-content: center;
    align-items: center;
    margin: auto;
    height: 82%;
    width: 100%;
}

.sidebar-menu .sidebar-box .sidebar-bottom .color-mode .mode .sidebar-icon {
	min-width: 25px;
}

.sidebar-menu .sidebar-box .sidebar-bottom .color-mode .mode:hover, 
.sidebar-menu .sidebar-box .sidebar-bottom .color-mode .mode.active {
	background: inherit;
	color: inherit;
	box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Contact Us Modal */
#contactmodal.show .modal-dialog {
	margin-top: 8%;
}

#contactmodal .modal-body {
	max-height: 390px;
    overflow: auto;
}

.dstg-contact-wrap {
	width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    margin: auto;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(92.42deg, rgba(0, 82, 227, 0.5) 0%, rgba(104, 108, 119, 0.5) 100%);
    color: var(--SECONDARY_COLOR);
}

.contact-item-icon i {
	width: 30px;
	height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: var(--ICON_SMALL_FONT_SIZE);
}

.contact-item {
    display: flex;
	justify-content: center;
    flex-direction: column;
    padding: 6px;
    margin-left: 30px;
}

.contact-item-txt {
	color: inherit;
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    padding-top: 8px;
    cursor: default;
}

.contact-item-link {
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
	padding-top: 6px;
}

.contact-item-link a {
	color: inherit;
}

.contact-item-link a:hover {
	color: var(--SECONDARY_COLOR);
}
/* Contact Us Modal */

/* Language Modal */
#langmodal.show .modal-dialog {
	top: 0;
}

.search-container {
	position: relative;
	width: 100%;
	padding: 10px;
}

.search-container .search-icon {
	position: absolute;
	left: 23px;
	top: 50%;
	color: var(--TXT_COLOR_4);
	transform: translateY(-50%);
	user-select: none;
}

.search-container .search-lang {
	width: 100%;
	padding: 8px 32px;
	border: 1px solid #ccc;
	border-radius: 10px;
	outline: none;
	background: var(--INPUT_BG);
	color: var(--INPUT_TXT_COLOR);
	border: var(--INPUT_BORDER);
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
	transition: border-color 0.2s ease;
}

.search-container .search-lang::placeholder {
	color: var(--INPUT_PLACEHOLDER_TXT_COLOR);
}

.search-container .search-lang:focus {
	border-width: 2px;
}

.search-container .clear-btn {
	position: absolute;
	right: 23px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: var(--TXT_COLOR_4);
	font-size: var(--ICON_FONT_SIZE);
	display: none;
	user-select: none;
}

.search-container .clear-btn:hover {
	color: var(--TXT_COLOR_3);
}

.lang-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: 500px;
    overflow: auto;
	padding: 10px;
}

.lang-list .lang-option {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-radius: 10px;
	cursor: pointer;
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
	transition: background 0.2s;
}

.lang-list .lang-option:hover, 
.lang-list .lang-option:has(input[type="radio"]:checked) {
	background: var(--THIRD_BTN_BG);
	color: var(--THIRD_BTN_COLOR);
	border: none;
}

.lang-list .lang-option input[type="radio"] {
	display: none;
}

.lang-list .lang-option .checkmark {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid var(--TXT_COLOR_4);
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.lang-list .lang-option input[type="radio"]:checked + .lang-text + .checkmark {
	border: 3px solid var(--ACTIVE_BTN_BG);
}
/* Language Modal */
/* Side Bar */

/* Notification Sidebar */
.notif-menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 300px;
	padding-top: 0;
	background: var(--SIDE_NAV_BG);
	color: var(--SIDE_NAV_COLOR);
	overflow: hidden;
	z-index: 1000;
	transition: width 0.3s ease;
}

.notif-menu ~ main,
.notif-menu ~ .footer-9, 
.notif-menu ~ .dstg-header {
	padding-right: 310px;
	transition: padding 0.3s ease;
}

.notif-menu.collapsed {
	width: 0;
	transition: width 0.3s ease;
}

.notif-menu.collapsed ~ main,
.notif-menu.collapsed ~ .footer-9, 
.notif-menu.collapsed ~ .dstg-header {
	padding-right: 0;
	transition: padding 0.3s ease;
}

.notif-menu .notif-header {
	position: relative;
    background: var(--SIDE_NAV_HEADER_BG);
    color: var(--SIDE_NAV_HEADER_TXT_COLOR);
    border: none;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-menu .notif-header .notif-header-title {
	font-family: var(--SECONDARY_FONT_FAMILY);
	letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
	font-size: var(--SUBHEADER_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
}

.notif-menu .notif-header .close-btn {
	position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--THIRD_BTN_BG);
    color: var(--THIRD_BTN_COLOR);
    font-size: var(--ICON_XSMALL_FONT_SIZE);
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
}

.notif-menu .notif-box {
	display: flex;
    flex-direction: column;
    height: 100%;
}

.notif-menu .notif-box .notif-tab {
	margin: 10px;
}

.notif-menu .notif-box .notif-tab ul {
	display: flex;
	justify-content: space-around;
	padding: 0;
	margin: 0;
	background: var(--SIDE_NAV_HEADER_BG);
	color: var(--TAB_TXT_COLOR);
	border-radius: 10px;
	list-style: none;
}

.notif-menu .notif-box .notif-tab li {
	flex: 1;
	text-align: center;
	padding: 10px 0;
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
	cursor: pointer;
	transition: background 0.3s ease;
}

.notif-menu .notif-box .notif-tab li:hover, 
.notif-menu .notif-box .notif-tab li.active {
	background: var(--TAB_HOVER_BG);
	color: var(--TAB_HOVER_COLOR);
	border-radius: 10px;
}

.notif-menu .notif-box .notif-container {
	display: none;
	overflow-y: auto;
	margin-bottom: 80px;
}

.notif-menu .notif-box .notif-container.active {
	display: block;
}

.notif-menu .notif-box .notif-list {
	margin: 10px;
}

.notif-menu .notif-box .notif-list .notif-item {
	padding: 10px;
	background: var(--ANNOUNCEMENT_BAR_BG);
	color: var(--ANNOUNCEMENT_BAR_COLOR);
	border: var(--ANNOUNCEMENT_BAR_BORDER);
	border-radius: 10px;
}

.notif-menu .notif-box .notif-list .notif-item .notif-row {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-icon {
	padding: 4px;
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 8px;
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-title {
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-content {
	font-size: var(--DEFAULT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
	max-height: 94px;
	overflow: hidden;
	transition: max-height 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-content.all {
	max-height: 300px;
	transition: max-height 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-bottom .notif-btn {
	padding: 6px 16px;
	background: var(--PRIMARY_BTN_BG);
	color: var(--PRIMARY_BTN_COLOR);
	border: var(--PRIMARY_BTN_BORDER);
	box-shadow: var(--PRIMARY_BTN_SHADOW);
    border-radius: 5px;
	font-size: var(--DEFAULT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
	opacity: 0;
	pointer-events: none;
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-bottom .notif-btn:hover {
	filter: var(--PRIMARY_BTN_HOVER_FILTER_BG);
	color: var(--PRIMARY_BTN_HOVER_COLOR);
	border: var(--PRIMARY_BTN_HOVER_BORDER);
}

.notif-menu .notif-box .notif-list .notif-item .notif-row .notif-col .notif-bottom .notif-icon {
	padding: 8px;
    font-size: var(--ICON_XSMALL_FONT_SIZE);
    cursor: pointer;
}
/* Notification Sidebar */

/* Profile Modal */
#profmodal .modal-dialog {
	max-width: 650px;
}

#profmodal .member-info {
	text-align: center;
}

#profmodal .member-info img {
	width: 70px;
	height: auto;
}

#profmodal .member-info .member- {
	display: flex;
	align-items: center;
    flex-direction: column;
    margin: 12px 0;
    gap: 6px;
}

#profmodal .member-info .member- .member-name {
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
}

#profmodal .member-info .member- .member-grp {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border-radius: 40px;
    padding: 5px 10px;
    background: var(--SECONDARY_COLOR);
    color: var(--SECONDARY_TXT_COLOR);
    font-family: var(--SECONDARY_FONT_FAMILY);
    letter-spacing: var(--SECONDARY_FONT_LETTER_SPACING);
    font-size: var(--SUBBODY_SMALL_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    line-height: normal;
}

#profmodal .member-data, 
#profmodal .member-profile {
	padding: 20px 0;
    margin: 20px 0;
    border-radius: 10px;
    background: var(--CARD_2_BG);
    color: var(--CARD_2_TXT_COLOR);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
}

#profmodal .member-data .row,
#profmodal .member-profile .row {
	width: 100%;
    justify-content: space-evenly;
	list-style: none;
    margin: 0;
    padding: 0;
}

#profmodal .member-data .row label,
#profmodal .member-profile .row label {
	color: var(--TXT_COLOR_3);
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
	margin-bottom: 6px;
}

#profmodal .member-data .row p,
#profmodal .member-profile .row p {
	margin: 0;
	padding: 0;
	font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
}

#profmodal .member-profile .row .verify-btn, 
#profmodal .member-profile .row .verified-txt  {
	margin-top: 6px;
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
}

#profmodal .member-profile .row .verify-btn a {
	color: var(--INACTIVE_BTN_BG);
	cursor: pointer;
}

#profmodal .member-profile .row .verified-txt {
	color: var(--ACTIVE_BTN_BG);
}

#profmodal .member-data .row button {
	background: var(--PRIMARY_BTN_BG);
	color: var(--PRIMARY_BTN_COLOR);
	border: var(--PRIMARY_BTN_BORDER);
	box-shadow: var(--PRIMARY_BTN_SHADOW);
	font-size: var(--BUTTON_SMALL_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
	border-radius: 10px;
	padding: 5px 10px;
}

#profmodal .member-data .row button:hover {
	filter: var(--PRIMARY_BTN_HOVER_FILTER_BG);
	color: var(--PRIMARY_BTN_HOVER_COLOR);
	border: var(--PRIMARY_BTN_HOVER_BORDER);
}

#profmodal .kyc-progress-card {
	padding: 12px 20px;
    margin: 20px 0;
    border-radius: 10px;
    background: var(--CARD_2_BG);
    color: var(--CARD_2_TXT_COLOR);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--REG_FONT_WEIGHT);
}

#profmodal .kyc-progress-card .kyc-header {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

#profmodal .kyc-progress-card .kyc-header .kyc-header-title {
    font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
}

#profmodal .kyc-progress-card .kyc-header .kyc-header-title .toKycPage {
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--SECONDARY_COLOR);
    padding-left: 10px;
    text-decoration: underline;
    cursor: pointer;
}

#profmodal .kyc-progress-card .kyc-header .kyc-header-title .toKycPage:hover {
	color: var(--SECONDARY_COLOR);
}

#profmodal .kyc-progress-card .kyc-header .kyc-header-title .toKycPage i {
	padding-left: 4px;
}

#profmodal .kyc-progress-card .kyc-header .kyc-info-icon .kyc-status-text {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--DEFAULT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
	color: var(--TXT_COLOR_1);
	text-transform: capitalize;
	border-radius: 10px;
	padding: 6px 8px;
}

#profmodal .kyc-progress-card .kyc-header .kyc-info-icon .kyc-status-text i {
	font-size: var(--ICON_XSMALL_FONT_SIZE);
}

#profmodal .kyc-progress-card .kyc-status-block- .kyc-status-unsubmit {
	background: var(--STATUS_UNVERIFIED_COLOR); /* grey */
}

#profmodal .kyc-progress-card .kyc-status-block- .kyc-status-pending-verified {
	background: var(--STATUS_PENDING_COLOR); /* orange */
}

#profmodal .kyc-progress-card .kyc-status-block- .kyc-status-approved {
	background: var(--STATUS_APPROVED_COLOR); /* green */
}

#profmodal .kyc-progress-card .kyc-status-block- .kyc-status-rejected,
#profmodal .kyc-progress-card .kyc-status-block- .kyc-status-expired {
	background: var(--STATUS_REJECTED_COLOR); /* red */
}

#profmodal .kyc-progress-card .kyc-progress-line {
    position: relative;
	display: flex;
    justify-content: space-between;
    height: 60px;
    width: 90%;
    margin: 20px auto;
    padding-top: 30px;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-line-progress {
	position: absolute;
    top: 19px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--TXT_COLOR_1);
    z-index: 1;
    border-radius: 2px;
}

#profmodal .kyc-progress-card .kyc-progress-line.PENDING .kyc-line-progress {
	background: linear-gradient(to right, var(--PRIMARY_COLOR) 0%, var(--PRIMARY_COLOR) 50%, var(--TXT_COLOR_1) 50%, var(--TXT_COLOR_1) 100%);
}

#profmodal .kyc-progress-card .kyc-progress-line.APPROVED .kyc-line-progress {
	background: linear-gradient(to right, var(--PRIMARY_COLOR) 0%, var(--PRIMARY_COLOR) 100%);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step {
	display: flex;
	text-align: center;
	align-items: center;
	position: relative;
	flex-direction: column;
	flex: 1;
	z-index: 2;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step .kyc-circle {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--CARD_2_BG);
	border: 2px solid var(--NO_STATUS_COLOR);
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.unsb .kyc-circle {
	left: 0;
	transform: none;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.appr .kyc-circle {
	left: 100%;
	transform: translateX(-100%);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.unsb {
	align-items: flex-start;
	text-align: left;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.pend {
	align-items: center;
	text-align: center;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.appr {
	align-items: flex-end;
	text-align: right;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step span {
	margin-top: 16px;
	display: block;
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--LIGHT_FONT_WEIGHT);
	color: inherit;
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.unsb .kyc-circle {
	border-color: var(--STATUS_UNVERIFIED_COLOR);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.pend .kyc-circle {
	border-color: var(--STATUS_PENDING_COLOR);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.appr .kyc-circle {
	border-color: var(--STATUS_APPROVED_COLOR);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.unsb.active .kyc-circle {
	background: var(--STATUS_UNVERIFIED_COLOR);
	border-color: var(--STATUS_UNVERIFIED_COLOR);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.pend.active .kyc-circle {
	background: var(--STATUS_PENDING_COLOR);
	border-color: var(--STATUS_PENDING_COLOR);
}

#profmodal .kyc-progress-card .kyc-progress-line .kyc-step.appr.active .kyc-circle {
	background: var(--STATUS_APPROVED_COLOR);
	border-color: var(--STATUS_APPROVED_COLOR);
}
/* Profile Modal */

/* Transfer Modal */
#transfermodal .modal-dialog {
	max-width: 600px;
}

#transfermodal .modal-body {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

#transfermodal .transfer-to, 
#transfermodal .transfer-amt, 
#transfermodal .promo-select {
	width: 100%;
}

#transfermodal label {
	font-size: var(--SUBBODY_TXT_FONT_SIZE);
	font-weight: var(--MED_FONT_WEIGHT);
	color: var(--TXT_COLOR_4);
}

#transfermodal input, 
#transfermodal select {
	width: 100%;
	height: 42px;
    padding: 10px 16px;
    background: var(--INPUT_BG);
    color: var(--INPUT_TXT_COLOR);
    border: var(--INPUT_BORDER);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    border-radius: 10px;
}

#transfermodal input:disabled {
	background: var(--DISABLED_INPUT_BG);
    color: var(--DISABLED_INPUT_COLOR);
    border: var(--DISABLED_INPUT_BORDER);
    cursor: not-allowed;
}

#transfermodal select {
    appearance: none;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    background: var(--INPUT_BG);
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='44' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='44' height='40' rx='8' fill='%233a3a3a' stroke='%234a4a4a' stroke-width='1'/%3E%3Cpolyline points='15,17 24,26 33,17' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 35px auto;
}

#transfermodal .submit-btn {
	width: 30%;
	padding: 12px 0;
    background: var(--PRIMARY_BTN_BG);
    color: var(--PRIMARY_BTN_COLOR);
    border: var(--PRIMARY_BTN_BORDER);
    box-shadow: var(--PRIMARY_BTN_SHADOW);
    font-size: var(--BUTTON_MED_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    border-radius: 10px;
    margin: auto;
    cursor: pointer;
}
/* Transfer Modal */