@import url("main.css");
.radiolabelmaker {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
/* Hide the browser's default radio button */
.radiolabelmaker input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radiolabelmaker:hover input ~ .checkmark {
background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiolabelmaker input:checked ~ .checkmark {
background-color: #f7a08c;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiolabelmaker input:checked ~ .checkmark:after {
display: block;
}

/* Style the indicator (dot/circle) */
.radiolabelmaker .checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
ul.select { 
    height: 45px;
    width: 100%;
	margin-bottom:0px;
	list-style:none;
}

ul.select li {
	margin-right:10px;
	padding: 5px 10px; 
	z-index: 2; 
}

ul.select li:not(.init) { 
	float: left; 
	width: 100%; 
	display: none; 
	background: #ddd; 
}

ul.select li.init{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .1em top 50%, 0 0;
	background-size: .65em auto, 100%;
}

ul.select li:not(.init):hover, ul li.selected:not(.init) { 
	background: rgb(243, 78, 138); 
}

ul.select li.init { 
	cursor: pointer; 
}

a#submit { z-index: 1; }

select {
	display: block;
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 700;
	color: #444;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #aaa;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}

select::-ms-expand {
	display: none;
}

select:hover {
	border-color: #888;
}

select:focus {
	border-color: #aaa;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: none;
}

select option {
	font-weight: normal;
}

*[dir="rtl"] select,
:root:lang(ar) select,
:root:lang(iw) select {
	background-position: left .7em top 50%, 0 0;
	padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
select:disabled,
select[aria-disabled=true] {
	color: graytext;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
}

select:disabled:hover,
select[aria-disabled=true] {
	border-color: #aaa;
}

img.log-logo{
	width:150px;
	height:auto;
}

img.admin-avatar {
  border-radius: 50%;
}

span.imp{
	color:#f82222;
	font-weight:700;
}

textarea.description-text {
	width:100%;
	height:450px;
}

.img-card {
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  margin: 1rem;
  position: relative;
}

.img-card-3 {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.img-card img{
	width:460px;
	height:310px;
}

.pb-100 {
	margin-bottom:100px;
}

.mb-50 {
	margin-bottom:50px;
}

.testimonial textarea {
	height: 130px;
	margin-bottom: 20px;
	padding: 30px;
	width: 100%;
	font-size: 14px;
	border: 1px solid #E8E8E8;
}

.title-line{
	display:block;
	font-weight:300;
	font-size:70%;
	clear:both;
}

.order-btn {
	margin-top:30px;
	text-align:right;
}

.order-btn a{
	border: 0;
  	border-radius: 0.25rem;
	font-family: -system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.2;
	white-space: nowrap;
	text-decoration: none;
	padding: 0.45rem 0.5rem;
	margin: 0.25rem;
	cursor: pointer;
}

.order-btn a.buy{
	background: #e51e39;
	color: white;
}

.order-btn a.buy:hover{
	background: #1b8b26;
	color: white;
}

.order-btn a.sell{
	background: #1b8b26;
	color: white;
}

.order-btn a.sell:hover{
	background: #e51e39;
	color: white;
}

table.verification-status td, table.verification-status th{
	font-size:80%;
}

.order-form{
	width:100%;
	display:inline-block;
	margin-top:5px;
}

table.price-wrapper{
	width:100%;
	margin-left:20px;
	margin-bottom:30px;
	
}

table.price-wrapper td.section-block-product{
	width:45%;
}

table.price-wrapper td.section-block-symbol{
	width:10%;
	padding-top:10px;
}

.order-form span.top, .order-form span.base{
	width:45%;
	padding:0px;
	display:inline-block;
}

.order-form span.top{
	font-size:125%;
}

.order-form span.base{
	font-size:100%;
}

.button-set{
	margin-top:40px;
}

.unitFormWrap input, #disableSelector select{
	width:100%;
	height: 45px;
	font-size: 16px;
	color: #212529;
	border:none;
	padding-left:10px;
}

#disableSelector, #txAccount, #amtLocal, 
#accountName, #accountNumber, #bank, #amountInCrypto, #amountInUsd{
	border:1px solid #e5e1e1;
	color:#040908;
	border-bottom:2px solid #f3beb5;
}

.productWrapper{
	margin-left:40px;
	width:50%;
}

.order-form{
	margin-top:20px;
}

.productWrapper img.local-currency{
	margin:10px 0 0 0;
	margin-left:30px;
	
}

.page2 {
	padding:30px 0;
	margin-top:40px;
	background:#f9f9f9;
}

.order-title{
	font-weight:700;
	font-size:85%;
}

.order-title.crypto{
	color:#e51e39;
}

.order-title.local{
	color:#0757e0;
}

.productPriceWrapper #txAccount{
	border-bottom:2px solid #e51e39;
}

.productPriceWrapper #cryptoAmount{
	border-bottom:2px solid #0757e0;
}

#amtLocal, #amountInCrypto{
	font-size:150%;
}

.nameAbbrv, .symbol{
	color:#0757e0;
	font-weight:700;
}


#orderSummary ul{
	padding:0px;
	margin:0px;
	list-style:none;
}

#orderSummary ul.title-part{
	font-size:110%;
	margin-top:5px;
}

ul.payment-summary{
	width:98%;
	margin:0 auto;
	border:1px solid #eeebeb;
	border-radius:5px;
}

.paymentBatch{
	margin:30px 0;
	padding:10px;
}

ul.payment-summary li{
	padding:10px;
	border:1px solid #eeebeb;
	font-size:110%;
}

ul.payment-summary li span{
	width:30%;
	font-weight:700;
	display:inline-block;
}

.paymentBatch {
	margin:25px 0;
	padding:10px;
	background:#c7efcb;
}

.data-summary {
	margin-top:30px;
}

p.order-notice{
	font-size:85%;
	text-align:center;
}

.order-arrow{
	margin-top:30px;
}

.orderId{
	font-size:85%;
}

.order-alert-btn{
	font-size:85%;
	background: none!important;
	border: none;
	padding: 0!important;
	color: #069;
	text-decoration: none;
	font-weight:500;
	cursor: pointer;
}

.extraPaymentinfo{
	padding:5px;
	margin-top:5px;
	background:#f9f9f9;
}

.extraPaymentinfo span{
	font-size:70%;
	display:block;
	margin-bottom:3px;
}

.extraPaymentinfo span em{
	display:block;
	font-style: normal;  
	font-weight:700;
}

input[readonly] {
    background-color: #fff !important;
}

.local-currency{
	width:32px;
	height:32px;
}

.profileWrapper{
	width:99%;
	margin-top:30px;
	box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 2px;
}

.addBankBtn {
	background-color: #e1ecf4;
	border-radius: 3px;
	border: 1px solid #7aa7c7;
	box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
	box-sizing: border-box;
	color: #39739d;
	cursor: pointer;
	display: inline-block;
	font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.15385;
	margin: 0;
	outline: none;
	padding: 8px 1.5em;
	position: relative;
	text-align: center;
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: baseline;
	white-space: nowrap;
	background: url("../img/bank_ico.png") no-repeat scroll 0 0 transparent;
	background-position: 8px 6px; 
	background-size: 25px;
	padding-left:40px;
}

.addBankBtn:hover,
.addBankBtn:focus {
  background-color: #b3d3ea;
  color: #2c5777;
}

.addBankBtn:focus {
  box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
}

.addBankBtn:active {
  background-color: #a0c7e4;
  box-shadow: none;
  color: #2c5777;
}

.animate-top{
    position:relative;
    animation:animatetop 0.4s
}

@keyframes animatetop{
    from{top:-300px; opacity:0} 
    to{top:0; opacity:1}
}

.modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow:scroll;
	background-color: rgba(0, 0, 0, 0.275);
	box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.modal-content {
	margin: 5% auto;
	width: 550px;
	max-width: 90%;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.175);
	border-radius: .3rem;
	outline: 0;
}

.modal-content.promotional{
	width: 850px;
}

.margar{
	margin-right:15px;
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#withdraw, #tools{
	font-size:115%;
	font-weight:700;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 0;
    font-size: 1.25rem;
}
.modal-header .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.modal-body {
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-body p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer>*{
    margin: 5px;
}

.bankDetails {
	width:95%;
	padding:20px 5px;
	margin-top:30px;
	margin-left:2px;
	border-radius:5px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.accName, .accNumber, .bccName{
	display:block;
}

.accName{
	font-weight:700;
}

.bccName{
	font-size:80%;
}

.accNumber {
	font-weight:500;
}

.bankIconLogo{
	width:42px;
	height:42px;
	margin-top:15px;
}

.removeBtn{
	font-size:85%;
	text-align:center;
	margin-top:25px;
	color:#2c5777;
	display:block;
	border:1px solid #dfdddd;
	padding:3px 5px;
}

.radiolabelmaker.paymentLabel{
	font-size:13px;
	font-weight:700;
}

.topNav{
	padding:0px; 
	margin:0px;
	margin-top:20px;
	list-style:none;
}

.topNav li{
	float:left;
}

.topNav li a{
	margin-left:20px;
	color:#069;
	font-weight:700;
}

.topNav li a:hover{
	color:rgb(1, 22, 32);
}

.verificationBox {
	padding:20px;
	background:#f9f9f9;
	font-size:25px;
}

.verificationBox span.statusWrapper{
	margin-left:35px;
}

.orderTable{
	margin-bottom:35px;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.orderTableInner{
	margin-top:30px;
	box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.refWrapper form{
	width:95%;
	padding:20px;
	margin: 0 auto;
	margin-bottom:30px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.refWrapper form .refDiv{
	border-bottom:1px solid #e8e8e8;
	padding:5px 0;
}

.refDiv:last-child{
	border:none;
}

.refBtn{
	margin-top:10px;
}

.refWrapper form .refDiv span{
	display:block;
	font-weight:700;
}

.refWrapper form .refDiv span.content{
	font-size:120%;
	font-weight:500;
}

.refWrapper form .refDiv span.small{
	font-size:90%;
	font-weight:300;
}

.small-main, .small-title{
	display:block;
}

.small-main{
	font-weight:700;
	font-size:90%;
}

.small-title{
	font-size:80%;
}

.pricespace{
	margin-left:10px;
}


.productWrapper.selector{
	margin:30px 0px;
	text-align:center;
}

.productPriceWrapper label{
	font-weight:700;
}

.productPriceWrapper span{
	font-size:90%;
}

#printButton{
	margin-bottom:20px;
	text-align:right;
}

.refresh-captcha{
	padding:10px;
	font-size:150%;
	background:#F3F3F3;
	color:#000;
	cursor:pointer;
	margin-top:2px;
}

.account-ref, .ref-value{
	color:#f82222;
}

.account-ref{
	padding:30px;
	font-size:150%;
	font-weight:700;
	border:1px solid #f82222;
	border-radius:50%;
}

.ref-marketing, .withdrawal-list, .downline-list, .affilate-tools, .reflink-wrapper{
	padding:30px;
}

.ref-marketing ul{
	padding:0px;
	list-style:none;
	text-align:center;
}

.ref-marketing ul li{
	margin-bottom:5px;
}

.ref-value{
	font-size:150%;
}

.ref-title{
	font-size:130%;
	font-weight:400;
}

.page-title, .page-title-inner{
	font-weight:500;
}

.page-title{
	font-size:130%;
}

.page-title-inner{
	display:block;
	font-size:120%;
}

.flash-light{
	display:none;
	font-weight:300;
	letter-spacing:0.15em;
	color:#013723;
}

span.amt{
	font-size:130%;
	color:#0757e0;
}

.file-path{
	width:50%;
	margin-top:20px;
	display:block;
	padding:5px;
	color:#e51e39;
	background:#f3f3f3;
	font-weight:400;
}

.code-path{
	margin-top:20px;
	padding:20px;
	background:#f9f9f9;
	position:relative;
}

.code-path span.copy-icon{
	position:absolute;
	top:20px;
	right:10px;
}

.impNotice{
	font-size:80%;
	color:#f82222;
}

.withdrawNote{
	font-size:85%;
	font-weight:700;
	color:#2c5777;
	letter-spacing:0.05em;
}

.firstCase{
	text-transform:capitalize;
}

.mute-email{
	font-size:80%;
	font-weight:700;
}

/* The checkboxmarker */
.checkboxmarker {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxmarker input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkboxmarker .checkboxmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxmarker:hover input ~ .checkboxmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxmarker input:checked ~ .checkboxmark {
  background-color: #2196F3;
}

/* Create the checkboxmark/indicator (hidden when not checked) */
.checkboxmarker .checkboxmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkboxmark when checked */
.checkboxmarker input:checked ~ .checkboxmark:after {
  display: block;
}

/* Style the checkboxmark/indicator */
.checkboxmarker .checkboxmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.select-all{
	font-size:80%;
}

.couponWrapper{
	width:98%;
	padding:10px;
	margin-bottom:40px;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.coupon-title{
	font-weight:700;
	display:block;
}