html, body, 
.container {
	position: relative;
	width: 100%;
	height: 100%;
}

.container-fluid{
    padding-right: 0px !important;
    padding-left: 0px !important;
}

body {
	overflow-y: scroll;
	background: #f0f0f0;
    font-family: 'Quicksand', sans-serif !important;
}

p, h1, h2 ,h3 ,h4 ,h5{
    font-family: 'Quicksand', sans-serif !important;
}

.splitlayout {
	position: relative;
	overflow-x: hidden;
	min-height: 100%;
	width: 100%;
}

/* Intro sides */
.side {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 50%;
	height: 100%;
	text-align: center;
	-webkit-backface-visibility: hidden;
}

.open-left .side,
.open-right .side {
	cursor: default;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 499;
	visibility: hidden;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.side-left .overlay {
	background: rgba(0,0,0,0.7);
}

.side-right .overlay {
	background: rgba(0,0,0,0.3);
}

.side-left {
	left: 0;
	background: #71ae2c;
	color: #fff;
	outline: 1px solid #71ae2c; /* avoid gap */
    border-left: 1px solid #ccc;
}

.side-right {
	right: 0;
	background: #fff;
	color: #000;
	outline: 1px solid #fff; /* avoid gap */
    border-right: 1px solid #ccc;

}

/* Intro content, profile image and name, back button */
.intro-content {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0 1em;
	width: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.profile {
	margin: 0 auto;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	/* background: #71ae2c; */
}

.profile img {
	max-width: 100%;
	border-radius: 50%;
	/* opacity: 0.6; */
}

.intro-content h1 > span {
	display: block;
	white-space: nowrap;
}

.intro-content h1 > span:first-child {
	font-weight: 300;
	font-size: 1em;
}

.intro-content h1 > span:nth-child(2) {
	position: relative;
	margin-top: 0.5em;
	padding: 0.8em;
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	font-size: 0.5em;
}

.intro-content h1 > span:nth-child(2):before {
	position: absolute;
	top: 0;
	left: 25%;
	width: 50%;
	height: 2px;
	background: #fff;
	content: '';
}

.side-right .intro-content h1 > span:nth-child(2):before {
	background: #000;
}

.back {
	position: fixed;
	top: 2.6em;
	z-index: 500;
	display: block;
	visibility: hidden;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #71ae2c;
	text-align: center;
	font-size: 22px;
	line-height: 44px;
	opacity: 0;
	pointer-events: none;
}

.mobile-layout .back { /* fixed positioning will make this not clickable after scrolling on some mobile devices */
	position: absolute;
}

.back-left {
	left: 12.5%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.back-right {
	right: 12.5%;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	color: #fff;
}

.open-right .back-left,
.open-left .back-right {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	pointer-events: auto;
}

.back:hover {
	color: #ddd;
}

/* Pages */
.page {
	position: relative;
	top: 0;
	overflow: auto;
	min-height: 100%;
	width: 75%;
	height: auto;
	font-size: 1.2em;
	-webkit-backface-visibility: hidden;
}

.logo-default{
    height: 45px
}
.page-right {
	left: 25%;
	outline: 5px solid #f0f0f0; /* avoid rounding gaps */
	background: #f0f0f0;
	color: #3f3e3e;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
    border-left: 1px solid #ccc;
}

.splitlayout.open-right {
	background: #f0f0f0;
}

.page-left {
	left: 0;
	outline: 5px solid #f0f0f0; /* avoid rounding gaps */
	background: #f0f0f0;
	color: #3f3e3e;
	text-align: left;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
    border-right: 1px solid #ccc;
}



/* Inner page content */
.page-inner {
	/*padding: 2em;*/
    
    height: 100vh;
    
}

.page-inner-details {
	
    height: 100%;
    min-height: 100vh;
    margin-top: 40px;
    margin-bottom: 40px;
}



.page-inner section {
	padding-bottom: 1em;
}

.page-inner h2 {
	margin: 0 0 1em 0;
	font-weight: 300;
	font-size: 1.1em;
}

.page-inner p {
	font-weight: 300;
	font-size: 0.7em;
    text-align: justify;
}

/* All transitions */
.side,
.page {
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
}

.overlay {
	-webkit-transition: opacity 0.6s, visibility 0.1s 0.6s;
	transition: opacity 0.6s, visibility 0.1s 0.6s;
}

.intro-content {
	-webkit-transition: -webkit-transform 0.6s, top 0.6s;
	transition: transform 0.6s, top 0.6s;
}

.intro-content h1,
.back {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

/* Open and close */

/* We need to set the position and overflow for the respective page scroll */
.reset-layout .page,
.splitlayout.open-right .page-left,
.splitlayout.open-left .page-right,
.splitlayout.close-right .page-left,
.splitlayout.close-left .page-right {
	position: absolute;
	overflow: hidden;
	height: 100%;
}

.splitlayout.open-right .page-right,
.splitlayout.open-left .page-left {
	position: relative;
	/*overflow: auto;*/
	height: 100%;
}

.open-right .side-left .overlay,
.open-left .side-right .overlay {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

/* Right side open */
.open-right .side-left {
	-webkit-transform: translateX(-60%);
	transform: translateX(-60%);
}

.open-right .side-right {
	z-index: 200;
	-webkit-transform: translateX(-150%);
	transform: translateX(-150%);
}

.close-right .side-right {
	z-index: 200;
}

.open-right .side-right .intro-content {
	-webkit-transform: translateY(-50%) translateX(0%) scale(0.6);
	transform: translateY(-50%) translateX(0%) scale(0.6);
}

.open-right .page-right {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

/* Left side open */
.open-left .side-right {
	-webkit-transform: translateX(60%);
	transform: translateX(60%);
}

.open-left .side-left {
	z-index: 200;
	-webkit-transform: translateX(150%);
	transform: translateX(150%);
}

.close-left .side-left {
	z-index: 200;
}

.open-left .side-left .intro-content {
	-webkit-transform: translateY(-50%) translateX(-100%) scale(0.6);
	transform: translateY(-50%) translateX(-100%) scale(0.6);
}

.open-left .codropsheader {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s, visibility 0.1s 0.3s;
	transition: opacity 0.3s, visibility 0.1s 0.3s;
}

.open-left .page-left {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

/* Media Queries */
@media screen and (max-width: 83em) {
	.intro-content { font-size: 60%; }
}

@media screen and (max-width: 58em) {
	body { font-size: 90%; }
}

@media screen and (max-width: 49.4375em) {
	.open-right .side-right {
		-webkit-transform: translateX(-175%);
		transform: translateX(-175%);
	}

	.open-right .side-left {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	.open-left .side-right {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	.open-left .side-left {
		-webkit-transform: translateX(175%);
		transform: translateX(175%);
	}

	.page {
		width: 100%;
	}

	.page-right {
		left: 0;
		padding-left: 15%;
	}

	.page-left {
		padding-right: 15%;
	}

	.intro-content {
		width: 100%;
	}

	.open-right .side-right .intro-content {
		top: 100%;
		-webkit-transform: translateY(-150px) translateX(-12.5%) scale(0.5);
		transform: translateY(-150px) translateX(-12.5%) scale(0.5);
	}

	.open-left .side-left .intro-content {
		top: 100%;
		-webkit-transform: translateY(-150px) translateX(-87.5%) scale(0.5);
		transform: translateY(-150px) translateX(-87.5%) scale(0.5);
	}

	.open-right .intro-content h1,
	.open-left .intro-content h1 {
		opacity: 0;
	}

	.back-left {
		left: 6.25%;
	}

	.back-right {
		right: 6.25%;
	}
}

@media screen and (max-width: 42.5em) {
	body { font-size: 80%; }
	.intro-content { font-size: 50%; }
}

@media screen and (max-height: 41.125em) {
	.intro-content {
		-webkit-transform: translateY(-25%) translateX(-50%);
		transform: translateY(-25%) translateX(-50%);
	}
}

@media screen and (max-width: 39.375em) {
	.intro-content .profile { -webkit-transform: scale(0.5); transform: scale(0.5); }
}

@media screen and (max-width: 320px) {
	body { font-size: 70%; }
}

.modal {
  overflow-y:auto;
}

.modal-backdrop{
    display: none;
}

.modal-dialog {
    width: 900px;
    margin:  5%;
    margin-left: auto;
    margin-right: auto;
    
}

.modal-open{
   
    overflow:auto !important;
}

.table-design{
        font-size: 0.7em;
        padding: 15px;
}

.balance-box{
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fcfcfc;
    width: 100%;
}

.balance-box-transfer{
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fcfcfc;
    width: 100%;
    
}

.transfer-button{
    text-align: center;
    line-height: 30px;
}

.payout-button{
    text-align: center;
    line-height: 30px;
}

.Box-button{
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fcfcfc;
}

.empty-text{
    margin-top: 30%;
}

.Deposit-msg{
    text-align: center;
    margin-top: 10px;
}


.balance-box-empty{
    text-align: center;
    border: 1px dashed #ccc;
    border-radius: 4px;
    background: #fcfcfc;
    width: 100%;
    height: 200px;
    color: #ccc;
}

.balance-transactions{
    background: #e7f3d2;
    text-transform: uppercase;
    color: #85C51F;
    font-size: 0.6em;  
    text-align: center;
    line-height: 30px;
}

.balance-transfers{
    background: #eff8fe;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 0.7em;  
    text-align: center;
    font-weight:bold;
}

.balance-transactions a{
    color: #85C51F;
    font-weight: bold;    
}

.balance-box-currency{
    font-size: 0.6em;
    font-weight: bold;
    margin-right: 5px;
}

.balance-box-current{
    font-size: 1.2em;
    font-weight: bold;
}

.balance-box-pending{
    font-size: 0.7em;
    font-weight: bold;
}

.balance-box-expected{
    font-size: 0.9em;
    
}

.button-image{
    margin-top: 15%;
}

#ctl11_mdRequestPayment{
    top: 15%;
}

.IBAN-main{
    font-size: 0.8em;
}

/*Merchant-status*/
.Processing{
    background: #66CC66;
    
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    width: 110px;
}

.FullyActive{
    background: #66CC66;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.Integration{
    background: #e8d44b;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.TestingMode{
    background: #e8d44b;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.LoginOnly{
    background: #9E6CFF;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.Activated{
    background: #CC66CC;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.Closed{
    background: #FF6666;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.New{
    background: #6699CC;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.Blocked{
    background: #FF8040;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
}

.balance-confirmed{
    margin: 0 0 0px;
    
    font-size: 12px;
    text-transform: none;
    color: #fff;
    font-weight: 500;
    background: #8dc059;
    border-radius: 3px;
    line-height: 25px;
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
}

.balance-pending{
     margin: 0 0 0px;
    
    font-size: 12px;
    text-transform: none;
    color: #fff;
    font-weight: 500;
    background: #ffd940;
    border-radius: 3px;
    line-height: 25px;
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
}

.LogoutBtn{
    background: #fcfcfc;
    border: 1px solid #ccc !important;
    font-size: 15px;
    width: 110px;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #3f3e3e;
}

.modal{
    background: rgba(0, 0, 0, 0.5);
}

.request-payment{
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 20px;
}

.pagination{
    font-size: 12px;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
    font-size: 16px;
    font-weight: bold;
}

.No-Iban{
    display: none;
}

.No-Prepaid{
    display: none;
}

.No-Transfer{
    display: none;
}

.No-Convert{
    display: none;
}

.No-Payout{
    display: none;
}

.tiny-image{
    border: 1px solid #ccc;
    border-width: 1px !important;
    border-radius: 20px;
    width: 23px;
    height: 23px;
}