.deposit-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: -100vh;
	background-color: #09203a;
	z-index: 101;
	display: none;
}
.deposit-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	box-shadow: 0 0 80px 10px #3fc8fa;
}
.deposit-header:after {
	content: "";
	position: absolute;
	z-index: 1;
	height: 3px;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(90deg,rgba(87,185,220,.29),#35d0ff 50%,rgba(87,185,220,.29));
}
.deposit-content {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	bottom: 0;
	padding-top: 20px;
	overflow-x: auto;
}
.close-deposit {
	position: absolute;
	right: 10px;
	font-size: 24px;
	color: #fff;
	z-index: 5;
	cursor: pointer;
	background: none;
	border: none;
	top: 26px;
	height: 16px;
	line-height: 16px;
}
.deposit-logo {
	display: block;
	top: 17px;
	left: 10px;
	position: absolute;
	z-index: 2;
	width: 280px;
	height: 47px;
	background-image: url(../img/logo/logo.png);
}
.deposit-header-title {
	position: absolute;
	top: 18px;
	line-height: 24px;
	font-size: 24px;
	color: #fff;
	left: 0;
	right: 0;
	text-align: center;
	text-transform: uppercase;
}
.deposit-header-title span {
	display: block;
	text-align: center;
	font-size: 14px;
	color: #fff;
	line-height: 14px;
	text-transform: lowercase;
}


.coin-section-header {
	font-size: 34px;
	line-height: 24px;
	margin-bottom: 10px;
	margin-top: 20px;
	color: #fff;
}

.deposit-content .section {
	padding: 0 20px;
	padding-bottom: 50px;
}

.row-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
}
.row-flex-wrap {
	flex-wrap: wrap;
	margin: 0 0 0 -.5rem;
}
.row-flex .coin-item {
	flex: 0 0 calc((100% / 3) - 0.5rem);
	padding: 3em 1em;
	text-align: center;
	cursor: pointer;
	position: relative;
	margin: 0 0 .5rem .5rem;
	border: 1px solid #fff;
	border-radius: 10px;
	min-height: 350px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.coin-item .coin-title {
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 20px;
}

.coin-item .coin-card {
	opacity: 0;
	transform: rotateY(180deg);
	transition: 0.5s;
    position: absolute;
    top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
    z-index: 1;
    background: #09203a;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    /* padding-top: 1em; */
    border-radius: 5px;
    border: 1px dashed #3fc8fa;
}
.coin-item.coin-item-active {
    cursor: initial;
}
.coin-item.coin-item-active .coin-card {
	opacity: 1;
	transform: rotateY(0deg);
	background: #142d4a;
	color: #fff;
}
.coin-item .coin-card .coin-wallet .coin-address {
	font-weight: bold;
	font-size: 18px;
	padding: 10px 20px;
	word-wrap: anywhere;
}
.coin-chain {
	text-align: center;
}
.coin-chain span {
	color: #fff;
	font-size: 14px;
	display: inline-block;
	border-bottom: 1px dashed #fff;
}
.row-flex .coin-item .qr-code {
	width: 135px;
	height: 135px;
}
.row-flex .coin-item .coin-image {
	width: 140px;
	height: 140px;
	display: inline-block;
}
.row-flex .coin-item .coin-image img {
	max-width: 100%;
	height: auto;
}
.row-flex .coin-item .qr-code img {
	max-width: 100%;
	height: auto;
}

.coin-card-close {
	position: absolute;
	right: 10px;
	font-size: 16px;
	color: #fff;
	z-index: 5;
	cursor: pointer;
	background: none;
	border: none;
	top: 10px;
	height: 16px;
	line-height: 16px;
}

@media (max-width: 992px) {
	
	.row-flex .coin-item {
	    flex: 1 1 calc(100% - 0.5rem);
	}

}