:root {
	--color-theme:#ce9f41;
	--color-secondary:#c39741;
}
body{
	font-size:14px;
}
a{
	color:#fff !important;
	transition:all ease .3s;
	cursor:pointer;
	text-decoration: none;
}
a:hover{
	color:#fff;
	opacity:1;
	text-decoration: none;
}
.color-theme{
	color:var(--color-theme) !important;
} 
.color-gold{
	color:#ce9f41;
} 
.underline {
	text-decoration: underline;
}
hr{
	border-top:1px solid rgba(255,255,255,.25);
}
/*** Button css ***/
.btn-theme{
	padding:5px 10px;
	border-radius:10px;
	background:var(--color-theme);
	font-size:14px;
	color:#000;
	transition:all ease .3s;
}
.btn-theme:hover{
	color:rgba(255,255,255,.5) !important;
}

/***** *****/
.topbar{
	padding:5px 0;
	color:#fff;
	background:#000;
	display:flex;
	border-bottom:1px solid #222;
}
.select-lang{
	font-size:14px;
	color:#fff;
	padding:15px;
	margin-left:auto;
	display:flex;
	align-items:center;
}
.custom-lang-select{
	background:transparent;
	padding:3px 5px;
	color:#fff;
	border-radius:10px;
}
.custom-lang-select option{
	background:#111;
}

.vodiapicker{
	display: none; 
}
.btn-select img{
	width: 12px;  
}
#a{
	padding-left: 0px;
	margin-bottom:0;
}
#a img, .btn-select img{
	width: 12px;
}
#a li{
	list-style: none;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size:80%;
	transition:all ease .3s;
	cursor:pointer;
}
#a li:hover{
	background-color:rgba(255,255,255,.15);
	color:#fff;
}
#a li img{
	margin: 5px;
}
#a li span, .btn-select li span{
	margin-left:10px;
}
/* item list */
.b{
	display: none;
	width: 100%;
	max-width:150px;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 5px;
	position:absolute;
	right:0;
	background:#000;
}
.open{
	display: show !important;
}
.btn-select{	
	width:120px;
	max-width: 350px;
	height: 30px;
	border-radius: 5px;
	background-color:transparent;
	border: 1px solid #444;
}
.btn-select li{
	list-style: none;
	float: left;
	padding-bottom: 0px;
	font-size:80%;
	color:#fff;
}
.btn-select:hover li{
	margin-left: 0px;
}

.btn-select:hover{
	background-color: rgba(255,255,255,.15);
	border: 1px solid transparent;
	box-shadow: inset 0 0px 0px 1px #ccc;
}
.btn-select:focus{
	outline:none;
}
.lang-select{
	margin-left:10px;
}


.main-wrapper{
	height:100vh;
}
.view-wrapper{
	display:flex;
	flex-direction:column;
	margin:0 auto;
	max-width:500px;
	height:100vh;
	background:#111 url(../images/background.jpg);
	background-position:center top;
	background-size:cover;
	overflow:auto;
	position:relative;
}
.bottom-nav-bar{
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	max-width: 500px;
    margin: auto;
	padding:0px;	
}
.bottom-nav-bar ul{
	margin:0;
	padding:0;
	display:flex;
	justify-content: space-around;
	align-items:center;
	height:100%;
	border-radius:10px 10px 0 0;
	background:linear-gradient(0deg, #121212, #565656);
}
.bottom-nav-bar li{
	display:block;
	list-style:none;
	text-align:center;
}
.bottom-nav-bar li a{
	padding:15px 0;
	display:flex;
	align-items:center;
	flex-direction:column;
	font-size:80%;
	position:relative;
}
.bottom-nav-bar li a:hover{
	text-decoration:none;
}
.bottom-nav-bar li a.active{
	position:relative;
	color:var(--color-theme) !important;
}
.bottom-nav-bar li a.active:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:3px;
	background:#ce9f41;
}
.bottom-nav-bar li img{
	max-width:32px;
}
.dropup {
	position: relative;
}
.dropup-content {
	display: none;
	position: absolute;
	background-color:#000;
	min-width: 160px;
	bottom: 82px;
	right:0;
	z-index: 1;
}

.dropup-content a {
	color: #fff;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropup-content a:hover {background-color: #ccc}

.dropup:hover .dropup-content {
	display: block;
}

.logo-bloomex{
	max-width:260px;
	display:block;
	margin:0 auto;
	margin-bottom:1em;
}
.login-box{
	width:100%;
	height:auto;
	margin:auto;
	padding:2em;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	color:#fff;
}
.login-form{
	width:100%;
	max-width:320px;
}
.login-form label{
	margin-bottom:0.25rem;
}
.login-form input::placeholder{
	color:rgba(0,0,0,.35);
}
.border-0{
	border:none;
}
.border-radius-30{
	border-radius:30px;
}
.toggle-password{
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	color:#000;
	z-index:1;
}
.btn-submit{
	width:100%;
	padding:10px;
	background:rgba(255,255,255,0);
	border:2px solid #fff;
	border-radius:30px;
	color:#fff;
	font-weight:bold;
	transition:all ease .3s;
}
.btn-submit:hover{
	background:rgba(255,255,255,1);
	color:#000;
}
.input-required{
	color:#d00;
}
/*** Sign up ***/
.check-icon{
	font-size:20px;
	margin-left:6px;
	filter:grayscale(1);
	color:#38cd5a;
}
.check-icon.active{
	color:#38cd5a;
	filter:grayscale(0);
}
/*** Dashboard ***/
.home-banner{
	position:relative;
	margin-bottom:15px;
}
.carousel-inner img {
	width: 100%;
	height: 100%;
}
.content-wrapper{
	padding:0 15px;
	padding-bottom:100px;
	color:#fff;
}
.content-wrapper p{
	text-align:justify;
}
.username-grid h4{
	font-size:1.2rem;
	margin-bottom:0px;
}
.invite-community{
	display:flex;
	flex-direction:column;
	align-items:center;
	width:100%;
	padding:10px 15px;
	margin:1px;
	margin-bottom:10px;
	/*background:linear-gradient(0deg, #fff0c3, #e5cd88);*/
	background:radial-gradient(#444444, black);
	border-radius:10px;
	border:1px solid #ce9f41;
	box-shadow:0 0 5px rgba(0,0,0,.35);
	color:#ce9f41 !important;
	font-weight:600;
	font-size:14px;
	line-height:normal;
	text-align:center;
	transition:all ease .3s;
	position:relative;
}
.invite-community:hover{
	opacity:1;
	color:#896f0c;
	text-decoration:none;
}
.invite-community-icon{
	border-radius:50%;
	background:#896f0c;
	width:36px;
	height:36px;
	display:inline-block;
}
.invite-community-icon img{
	width:100%;
	height:100%;
}
.add-invite{
	position:absolute;
	top:5px;
	right:5px;
	font-size:16px;
}
.dashboard-gadget{
	display:flex;
	flex-direction:column;
	align-items:center;
	width:33.33%;
	padding:10px 10px;
	margin:1px;
	margin-bottom:10px;
	/*background:radial-gradient(#444444, black);*/
	border-radius:10px;
	border:1px solid #ce9f41;
	box-shadow:0 0 5px rgba(0,0,0,.35);
	color:#ce9f41 !important;
	font-weight:600;
	font-size:14px;
	line-height:normal;
	text-align:center;
	transition:all ease .3s;
	position:relative;
}
.dashboard-gadget:hover{
	opacity:1;
	color:#896f0c;
	text-decoration:none;
}
.dashboard-gadget-icon{
	/*border-radius:5px;
	border:1px solid #fff;
	background:#896f0c;*/
	width:45px;
	height:45px;
	display:inline-block;
	position:relative;
}
.dashboard-gadget-icon img{
	width:100%;
	height:100%;
}
.updates-notice{
	position:absolute;
	top:-5px;
	right:-5px;
	width:22px;
	height:22px;
	border-radius:10px;
	background:#d00;
	padding:0px;
	color:#fff;
	font-weight:bold;
	font-size:10px;
	display:flex;
	justify-content:center;
	align-items:center;
}
@media (max-width:500px){
	.dashboard-gadget{
		padding:5px;
		font-size:12px;
	}
}
.dashboard-card{	
	background:radial-gradient(#444444, black);
	border-radius:10px;
	border:1px solid #ce9f41;
	color:#fff;
	margin-bottom:10px;
}
.dashboard-card-body{
	padding:10px 15px;
}
.dashboard-card-body p{
	margin-bottom:0;
}
.amount-grid{
	font-size:.675rem;
}
.amount-grid span{
	font-size:1.75em;
}
.wallet-grid ul{
	margin:0;
	padding:0;
	display:flex;
	gap:1px;
}
.wallet-grid li{
	display:block;
	list-style:none;
	font-size:80%;
	padding: 6px;
    /*background: rgb(197 169 43);*/
    border-radius: 10px;
    border: 1px solid #fbf3d0;
	position:relative;
}
.wallet-grid li img{
	display:block;
	width:30px;
	height:30px;
	margin:0 auto;
}
.wallet-grid li a{
	display:block;
}
.wallet-grid li a:hover{
	text-decoration:none;
}
.disable-wallet{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	transition:all ease .3s;
}
.disable-wallet:before{
	content:'';
	width:100%;
	height:100%;
	background: rgba(0,0,0,.35);
    position: absolute;
    border-radius: 10px;
}
.disable-wallet.active{
	opacity:1;
}
.icon-wallet-lock{
	width:30px;
	height:30px;
	padding:5px;
	text-align:center;
	border-radius:50%;
	background:#d1af2a;
	position:relative;
	box-shadow: 0 0 5px rgba(0,0,0,.35);
}
.btn-close{
	border:none;
	border-radius:50%;
	width:36px;
	height:36px;
	font-weight:bold;
	color:#999;
	transition:all ease .3s;
}
.btn-close:hover{
	color:#eee;
	background:#aaa;
}
.unlock-wallet-type{
	margin:15px 0;
}
.unlock-wallet-type ul{
	margin:0;
	padding:0;
	display:flex;
	justify-content:center;
	gap: 5px;
}
.unlock-wallet-type li{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	padding:10px;
    background: #ddd;
    border-radius: 10px;
    width: 100px;
	font-size:14px;
}
.unlock-wallet-type li img{
	width:36px;
	margin:5px 0;
}
.collapse-assets{
	margin-left:5px;
	transition:all ease .3s;
}
.collapse-assets i{
	transition:all ease .3s;
}
.collapse-assets[aria-expanded="true"] i{
	transform:rotate(180deg);
}
.fund-balance-grid{
	border:1px solid rgba(255,255,255,.35);
	border-radius:10px;	
	margin-bottom:10px;
}
.fund-balance-card{
	border-radius:10px;	
	font-size:14px;
	padding:10px;
	background:rgba(255,255,255,.15);	
}
.fund-balance-card .amount-grid span{
	font-size:14px;
}
.broker-house-icon{
	margin-right:5px;
	width:25px;
	height:25px;
	background:#fff;
	border-radius:50%;
	overflow:hidden;
}
.btn-open-chart{
	font-size:12px;
	padding:5px 10pt;
	background:var(--primary);
	border-radius:10px;
}
#chartContainer{
	max-width:320px;
	margin:0 auto;
}
/*** Community ***/
.page-header{
	padding:10px 0;
	display:flex;
	color:#fff;
}
.page-header h4{
	font-size:20px;
	position:relative;
}
.page-header h4:before{
	content:'';
	position:absolute;
	left:0;
	bottom:-10px;
	width:100%;
	height:2px;
	background:var(--color-theme);
}
@media(max-width:500px){
	.page-header h4{
		font-size:100%;
	}
}
.my-community-card{
	background:#ce9f41;
	border-radius:6px;
	margin-bottom:10px;
}
.cc-grid{
	border-bottom:1px solid rgba(255,255,255,.35);
}
.cc-grid ul{
	margin:0;
	padding:0;
	display:flex;
}
.cc-grid ul li{
	padding:10px;
	display:block;
	list-style:none;
}
.cc-grid ul li:nth-child(2){
	margin-left:auto;
}
.cc-grid ul li h4{
	font-size:18px;
	margin-bottom:0;
}
.cc-grid ul li p{
	margin-bottom:0;
}
.btn-register{
	margin:5px 0;
	border:none;
	border-radius:10px;
	background:#edc473;
	padding:3px 5px;
	font-size:80%;
}
.btn-register i.fa{
	font-size:10px;
}
@media(max-width:500px){
	.cc-grid ul li:first-child{
		max-width:50%;
	}
	.cc-grid ul li h4{
		font-size:100%;
		word-wrap: break-word;
	}
	.cc-grid ul li p{
		font-size:80%;
	}
	.register-form{
		font-size:80%;
	}
	.register-form input.form-control{
		font-size:100%;
	}
}
.invest-princ-grid{
	padding:10px 0;
	text-align:center;
}
.invest-princ-grid h4{
	margin-bottom:0;
}
@media(max-width:500px){
	.invest-princ-grid h4{
		font-size:20px;
	}
}
.link-invite-new-comm{
	display:block;
	padding:10px 15px;
	border-radius:30px;
	background:#ce9f41;
	border:1px solid #333;
	transition:all ease .3s;
	font-size:80%;
	text-decoration: none;
}
.link-invite-new-comm:hover{
	background:rgba(0,0,0,.35);
	opacity:1;
	text-decoration: none;
}
.level-tabs{
	display:flex;
	justify-content:space-between;
}
.level-tabs li a.nav-link{
	width: 30px;
    height: 30px;
    padding: 5px;
	margin-right:3px;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
	background:rgb(206 159 65 / 50%);
}
.level-tabs li a.nav-link.active{
	background:#ce9f41;
}
.table-community tr td{
	background:rgba(100,100,100,.15);
	border-bottom:1px solid #444;
	font-size:14px;
}
.refferal-join-info{
	font-size:12px !important;
}
/*** Community ***/
.broker-card{
	padding:6px;
	background:rgba(100,100,100,.35);
	border-radius:10px;
}
.broker-card a{
	display:block;
}
.broker-house-logo{
	width:36px;
	height:36px;
	margin-right:10px;
	border-radius:50%;
	border: 1px solid #ccc;
	background:#fff;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
}
.broker-house-logo img{
	width:32px;
	height:32px;
}
/*** More ***/
.setting-card{
	margin-top:0px;
	padding-top:15px;
	height:100vh;
	background:#fff;
	border-radius:30px 30px 0 0;
}
.setting-list{
	margin-bottom:15px;
	color:#222;
	line-height:normal;
}
.setting-list ul{
	margin:0;
	padding:0;
}
.setting-list li{
	display:block;
	list-style:none;
	padding:0 10px;
	padding-bottom:10px;
	margin-bottom:15px;
	border-bottom:1px solid #ccc;
}
.setting-list li h4{
	font-size:16px;
	font-weight:bold;
	margin-bottom:10px;
}
.setting-list-icon{
	width:36px;
	height:36px;
	padding:5px;
	margin-right:10px;
	background:#ccc;
	border-radius:50%;
}
.setting-list-icon img{
	max-width:100%;
}
.setting-list-link{
	color:#222 !important;
	text-decoration:none !important;
}
.setting-list li.coming-soon-row{
	color:#888 !important;
}
.setting-list li.coming-soon-row .setting-list-link{
	color:#888 !important;
}
.setting-list li.coming-soon-row a{
	cursor:not-allowed;
}
.coming-soon-label{
	background:var(--color-theme);
	padding:5px 10px;
	margin:0 5px;
	border-radius:10px;
	font-size:12px;
	font-weight:600;
	color:#fff;
}
.btn-log-out{
	background:linear-gradient(0deg, #111, #000);
	display: block;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}
.change-lang-grid ul{
	margin:0;
	padding:0;
	display:flex;
	flex-wrap:wrap;
	gap: 10px;
    justify-content: space-between;
}
.change-lang-grid li{
	list-style:none;
	width:48%;
	display:flex;
	align-items:center;
	background: #efefef;
    border-radius: 10px;
	transition:all ease .3s;
}
.change-lang-grid li:hover{
	background: #ddd;
}
.change-lang-grid li img{
	width:16px;
	height:auto;
}
.change-lang-grid li a{
	color:#000 !important;
	padding: 10px;
    width: 100%;
}
.change-lang-grid li a:hover{
	text-decoration:none;
}
@media (max-width:500px){
	.setting-list{
		font-size:14px;
	}
	.setting-list-icon{
		width:30px;
		height:30px;
		padding:3px;
	}
}
/*** Leader Board ***/
.leader-board-grid{
	margin:20px 0;
}
.leader-board-tab{
	width:100%;
	display:flex;
	justify-content:space-around;
}
.leader-board-tab li{
	width:33.33%;
	text-align:center;
}
.leader-board-tab .nav-link{
	position:relative;
	color:#ccc !important;
}
.leader-board-tab .nav-link:before{
	content:'';
	position:absolute;
	left:-10px;
	bottom:0;
	width:100%;
	height:3px;
	background:var(--color-theme);
	transition:all ease .3s;
	opacity:0;
	z-index:1;
}
.leader-board-tab .nav-link:after{
	content:'';
	position:absolute;
	left:0px;
	bottom:0;
	width:100%;
	height:3px;
	background:rgba(255,255,255,.15);
}
.leader-board-tab .nav-link.active, .leader-board-tab .show>.nav-link{
	background:transparent;
	color:var(--color-theme) !important;
	position:relative;
}
.leader-board-tab .nav-link.active:before, .leader-board-tab .show>.nav-link:before{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:3px;
	background:var(--color-theme);
	opacity:1;
}
.leader-board-place{
	margin:25px 0 15px;
}
.leader-board-place ul{
	margin:0;
	padding:0;
	display:flex;
	align-items:end;
}
.leader-board-place li{
	display:block;
	list-style:none;
	width:33.33%;
}
.leader-board-card{
	display:flex;
	flex-direction:column;
	align-items:center;
}
.leader-icon{
	position:relative;
	margin-bottom:10px;
}
.leader-board-avatar{
	width:60px;
	height:60px;
	background:rgba(255,255,255,.15);
	border:3px solid #999;
	border-radius:5px;
	overflow:hidden;
}
.leader-place{
	width:25px;
	height:25px;
	border-radius:50%;
	background:#eee;
	color:#000;
	text-align:center;
	font-weight:bold;
	position:absolute;
	top:20px;
	right:-10px;
}
.leader-details{
	text-align:center;
	line-height:normal;
}
.leader-name{
	font-size:14px;	
}
.sales-amount{
	font-size:16px;
	font-weight:bold;
	color:var(--color-theme);
}
.place-first{
	margin-bottom:30px;
}
/*** change account ***/
.switch-account{
	cursor:pointer;
	padding:15px;
	margin-bottom:10px;
	background:rgba(100,100,100,.35);
	border-radius:10px;
	transition:all ease .3s;
	color:#888;
	position:relative;
}
.switch-account:hover{
	background:rgba(150,150,150,.35);
}
.switch-account.active{
	color:#fff;
	position:relative;
	box-shadow: 0 0 10px rgba(255,255,255,.5);
    background: #222;
    border: 1px solid #666;
}
.switch-account.active:before{
	content:'\f00c';
	position:absolute;
	top:10px;
	right:10px;
	width:25px;
	height:25px;
	padding:2px;
	border-radius:50%;
	background:var(--color-theme);
	text-align:center;
	font-family:"FontAwesome";
}
.user-label{
	font-size:12px;
	padding:0 5px;
	margin-left:5px;
	border-radius:5px;
	border:1px solid var(--color-theme);
	color:var(--color-theme);
}
.change-lang-grid ul li.selected {
      border: 1px solid #000;
}
/*** Broker fund ***/
.register-step{
	margin:20px 0;
}  
.register-step ul{
	margin:0;
	padding:0;
}
.register-step li{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	margin-bottom:1rem;
	text-align:center;
}
.register-step li img{
	max-width:150px;
	border-radius:10px;
}
.register-step li h3{
	font-size:18px;
	line-height:2;
}
.register-step li p{
	margin-bottom:10px;
}
.step{
	padding:6px 15px;
	margin-bottom:10px;
	border-radius:10px;
	background:var(--color-theme);
}
.user-guideline{
	text-align:center;
}
.user-guideline h3{
	font-size:18px;
	line-height:2;
}
.user-guideline ul{
	margin:0;
	padding:0;
}
.user-guideline li{
	display:block;
	list-style:none;
	margin-bottom:10px;
}
.guideline-step{
	display:block;
	width:100%;
	color:var(--color-theme) !important;
	padding:10px;
	background:#000;
	border-radius:2px;
	text-align:left;
	font-weight:500;
	position:relative;
}
.guideline-step:before{
	content: "" ;
	position:absolute;
	top:10px;
	right:10px;
	width:20px;
	height:20px;
	text-align:center;
	font-family:"FontAwesome";
	transition:all ease .3s;
}
.guideline-step[aria-expanded="true"]:before{
	content:"";
}
.user-guideline-card{
	padding:20px;
	background:rgba(100,100,100,.35);
	color:#fff;
	border-radius:0 0 5px 5px;
	text-align:left;
}
.user-guideline-card ul{
	margin:0;
	padding:0;
}
.user-guideline-card li{
	display:block;
	list-style:none;
	padding-bottom:15px;
	margin-bottom:15px;
	border-bottom:2px solid rgba(255,255,255,.35);
}
.user-guideline-card li h4{
	font-size:14px;
}
.user-guideline-card li .get-url-link{
	padding:5px 15px;
	padding-right:25px;
	transition:all ease .3s;
	background:transparent;
	border-radius:30px;
	border:1px solid rgba(255,255,255,.15);
	position:relative;
}
.user-guideline-card li .get-url-link:before{
	content: "";
	position:absolute;
	top:5px;
	right:10px;	
	font-family:FontAwesome;
}
.user-guideline-card li .get-url-link:hover{
	background:rgba(0,0,0,.65);
}
.brokerhouse-grid a.nav-link{
	opacity:.75;
	filter:brightness(.85);
	position:relative;
}
.brokerhouse-grid a.nav-link.active{
	background:transparent;
	opacity:1;
	filter:brightness(1) grayscale(0);
}
.brokerhouse-grid a.nav-link.active:before {
	content:'';
	position:absolute;
	left:50%;
	bottom:0;
	width:100%;
	height:1px;
	transform:translate(-50%, 0);
	background:var(--color-theme);
}
.brokerhouse-grid a.nav-link .broker-logo{
	max-height:36px;
}

/*** Broker detail ***/
.broker-detail-card{
	padding:20px 0 ;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
}
.broker-detail-card ul{
	margin:0;
	padding:0;
}
.broker-detail-card li{
	display:block;
	list-style:none;
	padding-bottom:20px;
	border-bottom:1px solid #efefef;
}
.broker-detail-card li:last-child{
	padding-bottom:0px;
	border-bottom:0;
}
.form-input{
	width:100%;
	border-radius:5px;
	border:1px solid #ccc;
}
.add-broker-house{
	padding:15px 0;
}
.add-more-mt4{
	text-align:center;
}
.add-account-icon{
	display:flex;
	justify-content:center;
	align-items:center;
	margin:0 auto 15px;	
	width:30px;
	height:30px;
	color:var(--color-theme);
    border: 1px solid var(--color-theme);
    border-radius: 50%;
}
.add-account-icon i{
	color:var(--color-theme);
}
.add-mt4-account{
	background:#151f28;
}
.add-mt4-account h5{
	color:var(--color-theme);
}
.add-mt4-account .modal-header{
	border-bottom:0;
}
.btn-close-modal{
	border:0;
	color:#fff;
	font-size:20px;
	background:transparent;
}
.broker-house-grid{
	max-width:80%;
	margin:0 auto;
}
.broker-house-grid label{
	color:#fff;
}
.broker-house-title{
	display:flex;
	align-items:center;
	margin-bottom:10px;
}
.broker-house-name{
	color:#fff;
}
.btn-confirm{
	width:100%;
	padding:10px;
	background:var(--color-theme);

	border-radius:30px;
	color:#fff;
	font-weight:bold;
	transition:all ease .3s;
}
.btn-confirm:hover{
	background:var(--color-secondary);
	color:#000;
}

.switch input
{
  display: none;
}

.switch 
{margin:0 6px;
  display: inline-block;
  width: 50px; /*=w*/
  height: 20px; /*=h*/
  margin: 4px;
  margin-top:10px;
  /*transform: translateY(50%);*/
  position: relative;
}

.slider
{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  box-shadow: 0 0 0 2px #dc3545, 0 0 4px #dc3545;
  cursor: pointer;
  border: 4px solid transparent;
  overflow: hidden;
  transition: 0.2s;
}

.slider:before
{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color:#dc3545;
  border-radius: 30px;
  transform: translateX(-50px); /*translateX(-(w-h))*/
  transition: 0.2s;
}

input:checked + .slider:before
{
  transform: translateX(8px); /*translateX(w-h)*/
  background-color: limeGreen;
}

input:checked + .slider
{
  box-shadow: 0 0 0 2px limeGreen, 0 0 8px limeGreen;
}

.switch200 .slider:before
{
  width: 200%;
  transform: translateX(-82px); /*translateX(-(w-h))*/
}

.switch200 input:checked + .slider:before
{
  background-color: red;
}

.switch200 input:checked + .slider
{
  box-shadow: 0 0 0 2px red, 0 0 8px red;
}

.text-unbind{
	color:#dc3545;
	display:none;
}
.text-binding{
	color:limeGreen;
	display:none;
}
.text-unbind.active, .text-binding.active{
	display:block;
}
/*** Withdrawal ***/
.default-card{
	padding:15px;
	border-radius:10px;
	background:rgba(100,100,100,.35);
}
.amount-usd-grid, .amount-usdt-grid{
	font-size:1.5em;
	font-weight:600;
	line-height:normal;
	width:45%;
}
.amount-usd-grid span, .amount-usdt-grid span{
	font-size:12px;
}
.input-usd-wrapper{
	width:100%;
	display:flex;
	align-items:center;
}
.input-usd, .input-usdt{
	width:80%;
	height:fit-content;
	padding:0 5px;
	border:none;
	background:transparent;
	color:#fff;
	text-align:center;
}
.input-usd{
	background:rgba(0,0,0,.15);
	border:1px solid rgba(255,255,255,.5);
	border-radius:5px;
}
.input-usd:focus, .input-usdt:focus{
	outline:none;
}
.input-usd::placeholder{
	color:rgba(255,255,255,.35);
}
.input-usdt::placeholder{
	color:#fff;
}
.available-balance{
	font-size:12px;
}
.withdrawal-tips{
	margin-bottom:10px;
	font-size:12px;
	font-weight:normal;
	color:rgba(255,255,255,.5);
}
.btn-request-withdrawal{
	filter:grayscale(1);
}
.btn-request-withdrawal.active{
	filter:grayscale(0);
}
.commission-wallet-card img.icon{
	width:16px;
	height:auto;
}
.tx-id{
	display:block;
	max-width:65px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow: ellipsis;
	margin-right:5px;
}
.withdrawal-history-grid ul{
	margin:0 0 15px;
	padding:0;
}
.withdrawal-history-grid li{
	list-style:none;
	display:block;
	margin-bottom:5px;
}
.withdrawal-history-card{
	padding:10px;
	background:rgba(100,100,100,.35);
	border-radius:10px;
	font-size:12px;
}
.whc-wrapper{
	display:flex;
	align-items:center;
}
.whc-title{
	font-weight:bold;
}
.whc-date-time{
	font-size:10px;
}
.whc-status{
	display:flex;
	align-items:center;
}
.whc-status-dot{
	width:8px;
	height:8px;
	margin-right:5px;
	background:#555;
	border-radius:50%;
}
.whc-status-dot.processed{
	background:#00d0ff;
}
.whc-status-dot.successful{
	background:#28a745;
}
.whc-status-dot.rejected{
	background:#d00;
}
.whc-right{
	margin-left:auto;
	display:flex;
	align-items:center;
}
.collapse-whc-details .whc-right i.fa{
	transition:all ease .3s;
}
.collapse-whc-details[aria-expanded="true"] .whc-right i.fa.icon-collapse{
	transform:rotate(180deg);
}
.icon-usdt{
	width:16px;
	height:16px;
}
@media(max-width:500px){
	.amount-usd-grid, .amount-usdt-grid{
		text-align:center;
	}
	.input-usd, .input-usdt{
		width:100%;
		font-size:16px;
	}
	.input-usd-wrapper{
		flex-wrap:wrap;
		justify-content:center;
	}
}
/*** earning ***/
.commission-earn{
	font-size:18px;
	font-weight:600;
}
.choose-time-transaction{
	padding:3px 5px;
	border:1px solid var(--color-theme);
	border-radius:6px;
	background:transparent;
	color:#fff;
	font-size:12px;
}
.choose-time-transaction option{
	background:#fff;
	color:#000;
}
.choose-time-transaction option:hover{
	background:var(--color-theme);
}
/*** view transaction ***/
.action-label{
	width:10px;
	height:10px;
	background:var(--color-secondary);
	display:inline-block;
}
.transaction-date-badge{
	font-size:10px;
	line-height:normal;
	letter-spacing:1.2;
	margin-bottom:5px;
}
.transaction-date-badge span{
	display:block;
}

.transaction-list-grid ul{
	margin:0 0 15px;
	padding:0;
}
.transaction-list-grid li{
	list-style:none;
	display:block;
	margin-bottom:5px;
}
.transaction-list-card{
	padding:10px;
	background:rgba(100,100,100,.35);
	border-radius:10px;
	display:flex;
	font-size:12px;
}
.tlc-left{
	width:70%;
}
.tlc-right{
	width:30%;
}
.transaction-title{
	font-weight:600;
}
.transaction-time{
	font-size:10px;
}
.transaction-fund{
	font-size:10px;
}
.transaction-amount{
	font-size:14px;
	font-weight:600;
	text-align:right;
}
.transaction-amount.plus{
	color:#28a745;
}
.transaction-amount.minus{
	color:#dc3545;
}
/*** view transaction details ***/
.transaction-details-main{
	padding:10px 0;
}
.transaction-grand-amount{
	font-size:22px;
	font-weight:600;
	line-height:normal;
}
.transaction-grand-amount.plus{
	color:#28a745;
}
.transaction-grand-amount.minus{
	color:#dc3545;
}
.transaction-details-title{
	color:var(--color-theme);
	margin-bottom:5px;
}
.transaction-date-time-created{
	font-size:10px;
}
.transaction-details-desc{
	padding:10px;
	border-radius:10px;
	background:rgba(100,100,100,.35);
	display:flex;
	gap:5px;
	font-size:small;
}
.transaction-details-desc-left{
	width:70%;
}
.transaction-details-desc-right{
	width:30%;
}
/*** message centre ***/
.custom-tabbed{
	display:flex;
	justify-content:start;
	gap:2px;
}
.custom-tabbed .nav-link{
	border-radius:15px;
	padding:5px 10px;
	display:flex;
	align-items:center;
	font-size:14px;
}
.custom-tabbed .nav-link.active, .custom-tabbed .show>.nav-link{
	background-color:var(--color-theme);
	border-radius:15px;
	padding:5px 15px;
}
.all-notice{
	background:#eee;
	border-radius:20px;
	border:1px solid #ccc;
	padding:2px;
	color:#000;
	font-size:10px;
}
.notice-dot{
	background:#d00;
	border-radius:20px;
	padding:2px;
	color:#fff;
	font-size:10px;
}
.inbox-message-card{
	background:var(--color-secondary);
	padding:10px;
	margin-bottom:10px;
	border-radius:10px;	
}
.inbox-message-date{
	margin-bottom:10px;
	font-size:12px;
}
.inbox-message-text{
	display:flex;
	gap:5px;
}
.icon-message-left{
	position:relative;
}
.icon-message-reddot{
	width:10px;
	height:10px;
	border-radius:50%;
	background:#d00;
	position:absolute;
	top:2px;
	right:2px;
}
.inbox-message-icon{
	width:45px;
	height:45px;
	border-radius:50%;
	background:#efefef;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
}
.inbox-message-icon img{
	max-width:25px;
}
.inbox-message-content{
	width:80%;
	font-size:12px;
}
/*** Ranking ***/
.default-tabs .nav-link.active, .default-tabs .show>.nav-link{
	background:transparent;
	position:relative;
}
.default-tabs .nav-link.active:before, .default-tabs .show>.nav-link:before{
	content:'';
	position:absolute;
	left:10%;
	bottom:0;
	width:80%;
	height:2px;
	background:var(--color-theme);
}
.table-ranking tr td{
	padding:5px;
	text-align:center;
}
.rank-place{
	margin:20px 0;
}
.rank-place ul{
	margin:0;
	padding:0;
	display:flex;
	justify-content:center;
	align-items: end;
	gap:3px;
}
.rank-place li{
	width:25%;
	list-style:none;
	display: flex;
    justify-content: center;
    align-items: end;
}
.rank-place-card{
	display:flex;
	justify-content:center;
	flex-direction:column;
	text-align:center;
	width:100%;
}
.place-stage{
	margin-top:10px;
	padding:20px;
	background:var(--color-secondary);
	text-align:center;
	display: flex;
    justify-content: center;
    align-items: center;
}
.place-stage span{
	background:rgba(0,0,0,.15);
	border-radius:50%;
	padding:2px;
	width:36px;
	height:36px;
	font-size:20px;
	font-weight:bold;
}
.place-stage.rank-place-top{
	height:100px;
	border-radius:10px 10px 0 0;
}
.place-stage.rank-place-2{
	height:60px;
	border-radius:10px 0 0 0;
}
.place-stage.rank-place-3{
	height:45px;
	border-radius:0px 10px 0 0;
}
/*** Current Ranking ***/
.current-rank-card{
	width:100%;
	min-height:52px;
	display: flex;
    justify-content: center;
	align-items:center;
}
.current-rank-card span{
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	background:var(--color-theme);	
	max-width: 100%;
    width: 52px;
    height: 52px;
    font-size: 12px;
	filter: brightness(0.5) grayscale(.5);
}
.current-rank-card.active span{
	width:75px;
	height:75px;
	font-size: 14px;
	font-weight:600;
	filter: brightness(1) grayscale(0);
}
.next-rank-requirement-grid{
	padding:15px;
	background:rgba(100,100,100,.35);
	border-radius:15px;
	text-align:center;
}
.next-rr{
	font-size:16px;
	font-weight:600;
	margin-bottom:5px;
}
.next-rr span{
	margin:0 5px;
	color:var(--color-secondary);
}
.direct-group-community{
	width:50%;
	padding:15px;
	background:rgba(100,100,100,.35);
	border-radius:15px;
	text-align:center;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.group-community-rank{
	width:50%;
	padding:15px;
	background:rgba(100,100,100,.35);
	border-radius:15px;
	text-align:center;	
}
/*** Wallet transfer ***/
.input-username, .input-transfer-amount{
	background:rgba(0,0,0,.35);
	border:1px solid var(--color-secondary);
	border-radius:10px;
	padding:5px 10px;
	margin-bottom:5px;
	margin-right:6px;
	color:#fff;
	width:300px;
}
.icon-check-username.active{
	color:#28a745;
}
.btn-continue{
	border-radius:15px;
	filter:grayscale(1);
}
.btn-continue.active{
	filter:grayscale(0);
}
.input-tac{
	text-align:center;
}
.check-tac, .check-secure-pin{
	filter:grayscale(1);
	color:#28a745;
}
.check-tac.active, .check-secure-pin.active{
	filter:grayscale(0);
}
.check-tac i.fa, .check-secure-pin i.fa{
	font-size:20px;
}

.pin-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
}
input.input-pin{
    width:25px;
    height:25px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    outline: none;
    margin: 1px;
    text-align:center;
    margin:0 5px;
    background:#eeeeee;
    font-size:20px;
}
.pin{
  color:#ffffff;
  font-size:20px;
  text-align:center;
}
/*** withdrawal address***/
.input-text{
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 10px;
    padding: 5px 10px;
    color: #fff;
    max-width: 300px;
	width:300px;	
}
.icon-checker{
	filter:grayscale(1);
}
.icon-checker.active{
	filter:grayscale(0);
	color:#28a745;
}
/*** change secure pin ***/
.table-change-secure-pin tr td{
	padding:5px;
}
