/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #a1a1a1 ; 
  border-radius: 5px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #232424; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555555 ; 
}

* a{
	color: inherit;
	text-decoration: none;
}

html{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f5f3fa;
    color: #232424;
}

a {
    text-decoration: none;
    color: inherit;
}


.loader-bg{	
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.479);
	z-index: 98;
}

.loader{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	border-radius: 15px;
}

.spinner{
	display: block;
	margin-top: 20px;
	text-align: center;
}
.initiatedLoader {
	width: 64px;
	height: 48px;
	position: relative;
	display: inline-block;
	animation: split 1s ease-in infinite alternate;
  }
.initiatedLoader::before , .initiatedLoader::after {
	content: '';
	position: absolute;
	height: 48px;
	width: 48px;
	border-radius: 50%;
	left: 0;
	top: 0;
	transform: translateX(-10px);
	background: #ff7900;
	opacity: 0.75;
	backdrop-filter: blur(20px);
  }
  
.initiatedLoader::after {
	left: auto;
	right: 0;
	background: #FFF;
	transform: translateX(10px);
  }
  
  @keyframes split {
   0% , 25%{ width: 64px }
   100%{ width: 148px }
  }


.prompter{
	display: none;
	position: fixed;
	width: 300px;
	height: 80px;
	top: 30px;
	right: 5px;
	background-color: #232424;
	border-radius: 8px;
	padding: 10px;
	z-index: 99;
	backdrop-filter: blur(200px);
    box-shadow: 0 0 8px #000;
}


.prompter-close i{
	font-size: 20px;
	color: #fff;
}

.prompter-text{
	color: #fff;
	padding: 10px;
	font-size: 11px;
}

@keyframes loadingEffect{
	0% {
	  width: 0%;
	}
	100% {
	 	width: 100%;
	}

}

.promter-loader{
	width: 100%;
	height: 4px;
	background-color: #fff;
	animation: loadingEffect;
	animation-duration: 5s;
	animation-fill-mode: forwards;
	border-radius: 6px;
}

.login-area{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #232424;
    color: #ffffff;
}

.login{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(200px);
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 8px #000;
    padding: 20px;
}

.login-heading{
    padding: 0;
    padding-bottom: 5px;
    margin: 0;
    text-align: center;
}

.login-heading img{
    display: inline-block;
    width: 60px;
}

.login-heading h3{
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #d1d1d1;
    text-align: center;
}


.loginsubmit-area{
    display: flex;
    gap: 10px;
    margin-top: 10px;
	padding: 6px;
	align-items: center;
}

.loginsubmit-area input[type=submit]{
    padding: 8px;
    background-color: #ffffff;
    color: #242424;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 11;
    flex: 1;
}

.loginsubmit-area input[type=submit]:hover{
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.login input[type=text],
.login input[type=password]{
	backdrop-filter: blur(10px);
	color: #ffffff;
}

.login input[type=text]:focus,
.login input[type=password]:focus{
	backdrop-filter: blur(10px);
	color: #ffffff;
}
.login input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
  color: #ffffff;
}

.btn3{
    width: 90px;
    border: 1px solid #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 9px;
    font-size: 11px;
    color: #ffffff;
    background-color: transparent;
    cursor: pointer;
}

.btn3 i{
	margin-right: 5px;
	font-size: 14px;
}

.btn3:hover{
	background-color: #424242;
	color: #fff;
}

.btn4{
    width: 90px;
    border: 1px solid #424242;
    text-align: center;
    border-radius: 6px;
    padding: 9px;
    font-size: 11px;
    color: #ffffff;
    background-color: #424242;
    cursor: pointer;
}

.btn4 i{
	margin-right: 5px;
	font-size: 14px;
}

.btn4:hover{
	background-color: transparent;
	color: #424242;
}

#password{
	width: 80%;
}

.remember-me {
	display: flex;
	align-items: center;
	justify-content: start;
	margin-bottom: 20px;
	font-size: 12px;
	color: #a1a1a1;
}
.remember-me input {
	margin-right: 10px;
	accent-color: #a1a1a1;
	cursor: pointer;
}

.remember-me label{
	cursor: pointer;
}


.forgot{
	flex: 1;
	font-size: 12px;
	text-align: right;	
}

.forgot-text{
	display: inline-block;
	cursor: pointer;
}

.support-area{
	display: block;
	color: #a9a9a9;
	margin: 0;
	padding: 10px;
}

.support-area li{
	display: flex;
	list-style: none;
	padding: 4px;
	margin-bottom: 10px;
	border-radius: 4px;
	font-size: 12px;
	place-items: center ;
}

.support-area li i{
	width: 20px;
}


.mm-area{
	display: block;
	color: #a9a9a9;
	margin: 0;
}

.mm-area li{
	display: flex;
	list-style: none;
	margin-bottom: 5px;
	border-radius: 4px;
	font-size: 11px;
	place-items: center ;
}

label{
	font-size: 11px;
}

.popup-bg{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.664);
	z-index: 97;
}

.popup{
	position: absolute;	
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 80%;
	background-color: #f5f3fa;
	border-radius: 10px;
	color: #232424;
	padding: 20px;
	overflow-y: auto;
}

.popup-close{
	text-align: right;
}

.popup-close i{
	cursor: pointer;
}
.popup-body{
	font-size: 11px;
}


.popup-split{
	display: flex;
	height: 90%;
	padding-top: 0;
	margin-top: 0;
	gap: 10px;
}

.popup-split-left{
	width: 340px;
}

.popup-split-right{
	flex: 1;
	height: 100%;
	overflow-y: auto;
}
.popup-header{
	display: flex;
	background-color: #d8d8d8;
	padding: 10px;
	border-radius: 6px;
	align-items: center;
	margin: 10px;
	margin-bottom: 0;
}

.popup-header .heading{
	font-size: 16px;
	color: #232424;
	flex: 1;
	font-weight: 700;
}

.popup-header i{
	font-size: 13px;
	color: 1;
}


.platform-bg{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.664);
	z-index: 97;
}

.platform{
	position: absolute;	
	top: 50%;
	left: 50%;
  	transform: translate(-50%, -50%);
	width: 400px;
  	max-height: 600px;
	overflow-y: auto;
  	background-color: #f5f3fa;
	border-radius: 10px;
	padding: 20px;
	color: #232424;
}

.platform-close{
	text-align: right;
}

.platform-close i{
	cursor: pointer;
}

.platform-body{
	font-size: 13px;
}

.platform-body h2{
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.platform-body h3{
  	margin: 0;
  	padding: 0;
  	font-size: 16px;
	font-weight: 700;
  	color: #232424;
  	text-align: center;
	margin-bottom: 5px;
}

.alert-bg{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.664);
	z-index: 97;
}

.alert{
	position: absolute;	
	top: 50%;
	left: 50%;
  	transform: translate(-50%, -50%);
	width: 400px;
  	max-height: 500px;
	overflow-y: auto;
  	background-color: #f5f3fa;
	border-radius: 10px;
	padding: 20px;
	color: #232424;
}

.alert-close{
	text-align: right;
}

.alert-close i{
	cursor: pointer;
}

.alert-body{
	font-size: 13px;
}

.alert-body h2{
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.alert-body h3{
  	margin: 0;
  	padding: 0;
  	font-size: 16px;
	font-weight: 700;
  	color: #232424;
  	text-align: center;
	margin-bottom: 5px;
}

.resend{
	font-size: 15px;
	text-align: left;
	color: #232323;
	margin-bottom: 10px;
	margin-top: 10px;
}

.resend-text{
	display: inline-block;
	cursor: pointer;
	color: #ff7900;
}

.verifymsg{
	margin: 0;
	color:#ff7900;
	font-size: 11px;
	text-align: center;
}
.container{
  padding: 20px;
  display: flex;
  height: calc(100vh - 40px);
  gap: 10px;
}

.menu-area{
  width: 80px; 
  background-color: #232424;
  color: #999999;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  min-height: 600px;
}

.menu-area li{
  list-style: none;
  text-align: center;
  cursor: pointer;
}

.menu-area li i{
  font-size: 18px;
}

.menu-area li .menu-text{
  font-size: 11px;
  margin-top: 5px;
}

.active{
  color: #f5f3fa;
}

.menu-area li:hover{
  color: #f5f3fa;
}

.content-area{
  flex: 1;
}

.ribon{
  padding: 20px;
  display: flex;
}

.logo{
  width: 100px;
}

.logo img{
  width: 100%;
}

.account-area{
  flex: 1;
  text-align: right;
  font-size: 13px;
  color: #232424;
}

.content{
  padding: 20px;
  padding-top: 0;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.balance-area{
	display: block;
	margin-bottom: 15px;
}

.balance-title{
	font-size: 13px;
	color: #ff7900;
	margin-bottom: 3px;
}

.balance{
	font-size: 30px;
	color: #555555;
	font-weight: 700;
}

.action-area{
	text-align: left;
	margin-bottom: 30px;
}

.action-btn{
	display: inline-block;
	text-align: center;
	cursor: pointer;
	margin-right: 20px;
}

.action-icon{
	display: inline-block;
	border-radius: 50%;
	background-color: #555555;
	color: #f3f3f3;
	font-size: 15px;
}

.action-top{
	width: 40px;
	height: 40px;
	display: grid;
    place-items: center;
}

.action-text{
	font-size: 10px;
	margin-top: 5px;
	color: #555555;
}

.action-btn:hover .action-icon{
	background-color: #b4b4b4;
	color: #232424;
}


.section-area{
	display: flex;
	gap: 10px;
}

.section-area .section{
	flex: 1;
}

.section-area .section-color{
  background-color: #fafafa;
}

.graph-container {
	width: 97%;
	height:calc(100vh - 300px);
	min-height: 300px;
	background-color: #fafafa;
	border-radius:8px;
	padding: 10px;
}

.graph-area{
	display: flex;
	height:calc(100vh - 320px);	
	min-height: 280px;
}


.x-axis{
	width: auto;
	padding: 6px;
	padding-bottom: 0;
	font-size: 9px;
	color: #232424;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.amounts{
	flex: 1;
	margin-bottom: 2px;
}


.graph {
	flex: 1;
	height: 100%;	
	border-left: solid 1px #232424;	
	border-bottom: solid 1px #232424;
	display: flex;
	gap: 5px;
}

.graph-bars{
	flex: 1;
	display: flex;
	margin-top: 10px;
	flex-direction: column;
}

.bars-top{
	flex:1;
	font-size: 10px;
	color: #232424;
	text-align: center;
  display: flex;
  align-items:end;
  text-align: center;
}
.bars-bottom{
	background-color: #232424;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.graph-bottom{
	display: flex;
	padding: 0;
	padding-top: 4px;	
}

.y-axis{
	display: flex;
	flex: 1;
	gap: 5px;
	margin-left: 20px;
}

.month{
	flex: 1;
	text-align: center;
	font-size: 10px;
	color: #232424;
	margin: 0;
	
}

.dash-section{
  min-height: 300px;
}

.list{
	display: block;
	color: #232424;
	margin: 0;
	padding: 10px;
}

.list h3{
	margin: 0;
	margin-bottom: 10px;
	padding: 8px;
	border-radius: 6px;
	font-size: 15px;
	box-shadow: 0 0 20px -9px;
}

.list li{
	display: flex;
	list-style: none;
	padding: 4px;
	margin-bottom: 10px;
	border-radius: 4px;
	font-size: 12px;
	place-items: center ;
}

.list li i{
	width: 15px;
	border-radius: 6px;
	padding: 3px;
	font-size: 13px;
	display: grid;
	margin: 0;
	margin-right: 10px;
    place-items: center;
}


.header{
	font-weight: 700;
	background-color: #d6d6d6;
	color: #232424;
}

.body{
	color: #5e5e5e;
	background-color: #eeeeee;
}

.name{
	flex: 1;
}

.color1{	
	color: #ff7900;
}

.color2{
	color: #0fa802;
}

.color3{
	color: #ff0000;
}

.color4{
	color: #acacac;
}

.qrcodeIMG{
	width: 150px;
}

.section-header{
  background-color: #d8d8d8;
  color: #232424;
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin: 10px;
  margin-bottom: 0;
  padding: 5px;
  display: flex;
}

.section-header h3{
  font-size: 16px;
  margin: 0;
  padding: 10px;
  flex: 1;
}


.btn-area{
	width: auto;
    text-align: right;
    padding: 5px;
}


.btn-section{
    width: auto;
    border-radius: 15px;
    background-color: #424242;
    color: #fff;
	display: flex;
    gap: 10px;
}

.btn{
    flex: 1;
    padding: 10px;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
	width: 100px;
	text-align: center;
}

.btn i{
	width: 20px;
}
.btn-active{
    background-color: #fff;
    color: #000;
    border-radius: 15px;
}


.cards-area{
	width: 100%;
}

.card{
	display: inline-block;
	width: 180px;
	padding: 15px;
	padding-bottom: 0;
	border-radius: 8px;
	background-color: #232424;
	text-align: center;
	margin: 10px;
	cursor: pointer;
}

.card i{
	font-size: 20px;
	color: #ffffff;
	text-align: right;
	width: 20px;
}

.card h3{
	color: #ffffff;
	font-size: 14px;
	margin: 0;
	padding: 0;
}

.card hr{
	color: #ffffff;
	display: inline-block;
	width: 80%;
	margin-top: 10px;
	margin-bottom: 10px;
	height: 1px;
}

.card-list{
	color: #ffffff
}

.card-list li{
	list-style: none;
	margin-bottom: 15px;
	display: flex;
	text-align: left;
}

.card-list li .item-name{
	flex: 1;
	font-size: 11px;
}

.card-list li .item-title{
	flex: 1;
	font-size: 11px;
	font-weight: 700;
}

.card-list li i{
	width: 10px;
	font-size: 12px;
	margin-right: 15px;
}

.card-list li .item-price{
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	background-color: #ff7900;
	color: #263838;
	text-align: center;
	padding: 5px;
	margin-top: 10px;
	border-radius: 6px;
}

.box{
	display: flex;
	align-items: center;
}

.box i{
	width: 30px;
	text-align: center;
}
.search-area{
	display: flex;
	align-items: center;
	gap: 10px;
}
.search-box{
	width: 200px;
	align-items: center;
	background-color: #e0e0e0;
	border-radius: 6px;
	padding: 5px;
	border: 1px solid #c0c0c0;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
select,
input[type=file],
input[type=time],
textarea,
input[type=search]{
    padding: 0.7em 0.5em 0.9em 0.5em;
    border: 0;
    background-color: transparent;
    color: #666666;
    font-size: 11px;
    flex: 1;
	outline: none;
}


input[type=number]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
select:focus,
input[type=time]:focus,
textarea:focus,
input[type=search]:focus{
    outline: 0;
    color: #232424;
}


fieldset{
    padding: 0;
    border: 1px solid #808080;
    border-radius: 8px;
    /*background-color: #424242;*/
    margin-top: 10px;
    margin-bottom: 15px;
}

fieldset:focus-within{
    border-color: #808080;
}


legend{
    margin-left: 0.75em;
    padding-inline: 0.5em;
    font-size: 11px;
}

input[type=checkbox]{
	margin: 10px;
	accent-color: #424242;
}

.submit-area{
    display: flex;
    gap: 10px;
    margin-top: 10px;
	align-items: center;
}

input[type=submit]{
    padding: 8px;
    background-color: #232424;
    color: #ffffff;
    border: 2px solid #232424;
    border-radius: 8px;
    font-size: 11;
    flex: 1;
}

input[type=submit]:hover{
    background-color: transparent;
    color: #232424;
    border: 2px solid #232424;
}


.btn2{
    width: 90px;
    border: 1px solid #343535;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    font-size: 11px;
    color: #424242;
    background-color: transparent;
    cursor: pointer;
}

.btn2 i{
	margin-right: 5px;
	font-size: 14px;
}

.btn2:hover{
	background-color: #232424;
	color: #fff;
}

.copybtn{
	cursor: pointer;
	font-size: 18px;
}

.label{
	font-size: 11px;
	color: #424242;
}

.powered{
	text-align: center;
	font-size: 11px;
	color: #424242;
}

.smsNotification,
.whatsappNotification,
.email_reports,
.payGateway,
.smsGateway,
.whatsappGateway,
.subscribe,
.subscribeHistory,
.viewVoucher,
.editProfile,
.editPassword,
.editBusiness,
.viewCustomPass,
.viewCustomPass2,
.viewOldPass,
.viewPackage,
.delVoucher,
.viewAd,
.switch-organic,
.switch-sponsored,
.requestWithdraw{
	cursor: pointer;
}

.footer {
	font-size: 13px;
	color: #dadada;
	text-align: center;
}

.footer strong {
	color: #232424;
}

.network-logos{
	display: block;
	text-align: center;
	margin-top: 20px;
}

.network-logos img{
	display: inline-block;
	width: 30px;
	margin-left: 5px;
	margin-right: 5px;
	border-radius: 10px;
}


.strength-display{
	display: none;
	font-size: 13px;
	color: #424242;
	text-align: left;
	margin-bottom: 5px;
}
.password-strength{
	display: none;
	width: 100%;
	background-color: #aaaaaa;
	margin-bottom: 15px;
	border-radius: 4px;
	overflow: hidden;
}

.strength-bar{	
	background-color: #242424;
	width: 0%;
	font-size: 8px;
	color: #636363;
}

.strength-filler{
	flex: 1;
	padding: 2px;
	background-color: transparent;
}

.loginForm .viewPass{
	font-size: 11px;
	cursor: pointer;
}

.voucher-card{
	background-color: #f5f3fa;
}

.pagination-area{
	text-align: right;
}

.pagination{
	width: 60px;
	display: inline-block;
	background-color: #424242;
	color: #ffffff;
	border-radius: 8px;
	padding: 8px;
	text-align: center;
	font-size: 11px;
	cursor: pointer;
	margin-right: 10px;
	margin-left: 10px;
}

.paybtn{
	background-color: #424242;
	color: #fff;
	border: 1px solid #424242;
	border-radius: 3px;
	font-size: 11px;
	width: 50px;
	padding: 3px;
	text-align: center;
}

.paybtn:hover{
	background-color: transparent;
	color: #424242;
}

.linkTelegram{
	cursor: pointer;
}

.adImage {
	margin: 10px;
	margin-bottom: 0;	
	width: 320px;
	height: 180px;
	border: 1px solid #424242;
	border-radius: 10px;
	background-color: #424242;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.adImage img {
	max-width: 320px;
	max-height: 160px;
	width: auto;
	height: auto;
	display: inline-block;
}


.ad-warning{
	background-color: #ba0101;
	color: #ffffff;
	text-align: center;
	padding: 10px;
	border-radius: 6px;
	font-size: 11px;
	margin-bottom: 10px;
}


@media only screen and (max-width: 1000px) {
	.login{		
		width: 80%;
		padding: 20px;
	}

	.btn3{
		width: 60px;
	}

	.prompter{
		display: none;
		position: fixed;
		min-width: 100px;
		max-width: 80%;
		height: 80px;
		top: 30px;
		right: 5px;
		background-color: #232424;
		border-radius: 8px;
		padding: 10px;
		z-index: 99;
		backdrop-filter: blur(200px);
		box-shadow: 0 0 8px #000;
	}

		
	.platform{
		position: absolute;	
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 85%;
		max-height: 90%;
		overflow-y: auto;
		background-color: #f5f3fa;
		border-radius: 10px;
		padding: 20px;
		color: #232424;
	}

	.alert{
		position: absolute;	
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 70%;
		max-height: 500px;
		overflow-y: auto;
		background-color: #f5f3fa;
		border-radius: 10px;
		padding: 20px;
		color: #232424;
	}

	.menu-area{
		position: fixed;
		padding-left: 10px;
		padding-right: 10px;
		bottom: 5px;
		left: 50%;
		transform: translate(-50%);
		width: 90%; 		
		border-radius: 10px;
		flex-direction: row;
		gap: 15px;
		min-height: 50px;		
  		background-color: #232424;
	}

	.menu-area li{
		list-style: none;
		text-align: center;
		cursor: pointer;
	}

	.menu-area li i{
		font-size: 18px;
	}

	.menu-area li .menu-text{
		font-size: 8px;
		margin-top: 2px;
		display: block;
	}

	.container{
		padding: 0;
		display: block;
		height: calc(100vh - 100px);
		gap: 10px;
		overflow-x: auto;
	}

	.content-area{
		flex: none;
		padding: 5px;
		padding-top: 0;
		padding-bottom: 0;
		overflow-y: auto;
	}

	.ribon{
		display: block;
		margin-bottom: 0;
	}

	.logo{
		width: 100%;
		text-align: center;
	}

	.logo img{
		width: 100px;
		display: inline-block;
	}

	.account-area{
		flex: 1;
		text-align: center;
		font-size: 11px;
		color: #232424;
	}

	.content{
		padding: 10px;
		padding-bottom: 10px;
		padding-top: 0;
		max-height: inherit;
		overflow-y: none;
		padding-bottom: 40px;
	}
	
	.balance-area{
		display: block;
		padding: 20px;
		padding-bottom: 0;
	}

	.balance-title{
		font-size: 13px;
		color: #ff7900;
		margin-bottom: 3px;
	}

	.balance{
		font-size: 25px;
		font-weight: 700;
	}

	.action-area{
		text-align: left;
		padding: 20px;
		padding-top: 0;
		margin-bottom: 20px;
	}

	.action-btn{
		display: inline-block;
		text-align: center;
		cursor: pointer;
		margin-right: 10px;
	}

	.action-icon{
		display: inline-block;
		border-radius: 50%;
		font-size: 12px;
	}

	.action-top{
		width: 40px;
		height: 40px;
		display: grid;
		place-items: center;
	}

	.action-text{
		font-size: 10px;
		margin-top: 5px;
	}
		
	.section-area{
		display: block;
		gap: none;
	}

	.section-area .section{
		flex: none;
		margin-bottom: 10px;
	}

	.section-header{
		display: block;
	}
	
	.section-bg{
		width: 97%;
		height:auto;
		min-height: auto;
		background-color: #263838;
		border-radius:8px;
		padding: 10px;
		overflow-y: auto;
	}

		
	.graph-container {
		width: 97%;
		height:320px;
		min-height: 300px;
		background-color: #fafafa;
		border-radius:8px;
		padding: 10px;
	}

	.graph-area{
		display: flex;
		height: 300px;	
		min-height: 280px;
	}
	.expendable{
		display: none;
	}

		
	.list{
		display: block;
		color: #232424;
		margin: 0;
		padding: 10px;
	}

	.list h3{
		margin: 0;
		margin-bottom: 10px;
		padding: 8px;
		border-radius: 6px;
		font-size: 15px;
		box-shadow: 0 0 20px -9px;
	}

	.list li{
		display: flex;
		list-style: none;
		padding: 4px;
		margin-bottom: 11px;
		border-radius: 4px;
		font-size: 10px;
		place-items: center ;
		gap: 10px;
	}

	.list li i{
		width: 15px;
		border-radius: 6px;
		padding: 3px;
		font-size: 13px;
		display: grid;
		margin: 0;
		margin-right: 10px;
		place-items: center;
	}

		
	.btn-area{
		width: auto;
		text-align: right;
		padding: 5px;
		overflow: hidden;
	}


	.btn-section{
		width: auto;
		border-radius: 8px;
		background-color: #424242;
		color: #fff;
		display: flex;
		gap: 5px;
	}

	.btn{
		flex: 1;
		padding: 5px;
		font-size: 8px;
		color: #fff;
		display: inline-block;
		cursor: pointer;
		width: 70px;
		text-align: center;
	}

	.btn i{
		width: 20px;
		font-size: 10px;
	}
	.btn-active{
		background-color: #fff;
		color: #000;
		border-radius: 8px;
	}


	.card{
		display: inline-block;
		width: 160px;
		padding: 15px;
		padding-bottom: 0;
		border-radius: 8px;
		background-color: #232424;
		text-align: center;
		margin: 10px;
		cursor: pointer;
	}

	.popup{
		position: absolute;	
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 80%;
		height: 80%;
		background-color: #f5f3fa;
		border-radius: 10px;
		color: #232424;
		padding: 20px;
		overflow-y: auto;
	}

	.popup-split{
		display: block;
		height: 90%;
		padding-top: 0;
		margin-top: 0;
		gap: 10px;
	}

	.popup-split-left{
		width: 100%;
	}

	.popup-split-right{
		flex: none;
		height: 100%;
		overflow-y: auto;
	}

	.qrcodeIMG{
		display: none;
	}
}