/* <pay-item */
.pay-item-card {
	max-width: 200px;
	background-color: rgba(0, 0, 0, 0.75);
	padding: 5px;
	border-radius: 5px;
}
.pay-item-card .item-head {
	
}
.pay-item-card .item-head .item-image {
	display: block;
	width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
	border-radius: 5px;
}
.pay-item-card .item-head .item-image span {
	height: 100%;
	width: 100%;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.pay-item-card .item-body {
	margin: 5px 0;
}
.pay-item-card .item-body .item-name {
	font-weight: bold;
	text-align: center;
	padding-bottom: 5px;
}
.pay-item-card .item-body .item-cost {
	margin-top: 5px;
	display: flex;
	justify-content: space-around;
}
.pay-item-card .item-body .item-cost .ic {
	/* background-color: #2f4785; */
	padding: 3px;
	border-radius: 5px;
}
.pay-item-card .item-body .item-cost .ic i {
	background-size: 14px;
	background-repeat: no-repeat;
	width: 16px;
	height: 14px;
	display: block;
	float: left;
	margin-right: 5px;
}
.pay-item-card .item-body .item-cost .ic.ic-crystals i {
	background-image: url(/image/balance/crystal.svg);
}
.pay-item-card .item-body .item-cost .ic.ic-coins i {
	background-image: url(/image/balance/coin2.svg);
}
.pay-item-card .item-body .actions {
	display: flex;
	justify-content: space-around;
	margin-top: 10px;
}
.pay-item-card .item-body .actions button {
	
}
#modalPay {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.75);
}
	#modalPay .modal-pay {
		max-width: 600px;
		margin: 3% auto;
	}
		#modalPay .modal-pay .pay-box {
			background-color: rgba(0, 0, 0, 0.75);
			border-radius: 3px;
			flex-flow: column;
		}		
		#modalPay .modal-pay .pay-box .head {
			background-size: cover;
			display: block;
			border-radius: 3px 3px 0 0;
			width: 100%;
			position: relative;
			min-height: 40px;
		}
		#modalPay .modal-pay .pay-box .head .close-box {
			position: absolute;
			top: 0;
			right: 0;
			padding: 10px;
			font-size: 1em;
			z-index: 15;
			cursor: pointer;
		}
		#modalPay .modal-pay .pay-box .head .close-box .close {
			display: block;
			background-image: url('/image/system_icons/cross-white.svg');
			background-size: 18px;
			background-repeat: no-repeat;
			background-position: 50%;
			width: 20px;
			height: 20px;
		}
		
.prepay-item {
	padding: 3px;
	background-color: rgba(0, 0, 0, 0.75);
	display: flex;
}
.prepay-item .image {
	width: 70px;
}
.prepay-item .image img {
	width: 100%;
}
.prepay-item .body {
	padding: 0 10px;
}
.prepay-item .body .item-name {
	font-weight: bold;
	font-size: 1.2em;
}
.coster-box p.helper {
	text-align: center;
	margin: 5px 0;
}
.prepay-item .body .item-cost .ic,
.coster-box .item-cost .ic {
	/* background-color: #2f4785; */
	padding: 3px;
	border-radius: 5px;
}
.coster-box .item-cost .ic {
	font-size: 1.6em;
}
.prepay-item .body .item-cost .ic i,
.coster-box .item-cost .ic i {
	background-size: 14px;
	background-repeat: no-repeat;
	width: 16px;
	height: 14px;
	display: block;
	float: left;
	margin-right: 5px;
}
.coster-box .item-cost .ic i {
	width: 1.6em;
	height: 1.6em;
	background-size: 100%;
}
.prepay-item .body .item-cost .ic.ic-crystals i,
.coster-box .item-cost .ic.ic-crystals i {
	background-image: url(/image/balance/crystal.svg);
}
.prepay-item .body .item-cost .ic.ic-coins i,
.coster-box .item-cost .ic.ic-coins i {
	background-image: url(/image/balance/coin2.svg);
}
.item-cost .ic-box {
	display: flex;
	justify-content: center;
	flex-flow: column;
}
.coster-box .name {
	font-size: 1.6em;
	color: #5bc6f2;
	display: flex;
	width: 100%;
	justify-content: center;
	margin: 10px 0;
}
.coster-box .item-cost {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.aivPay-form {
	
}
.aivPay-form .aivpay-currency {
	cursor: pointer;
}
.aivPay-form .aivpay-currency input {
	display: block;
	float: left;
	width:0;
	height: 0;
}
.aivPay-form .aivpay-currency input:checked + i {
	background-color: #ffffff;
}
.aivPay-form .aivpay-currency i {
	display: block;
	padding: 5px;
	width: 32px;
	height: 32px;
	border-radius: 5px;
	background-size: 30px;
	background-position: 50%;
	background-repeat: no-repeat;
}
.aivPay-form .aivpay-currency:hover i {
	background-color: #2f4785;
}
.aivPay-form .aivpay-currency.crystals i {
	background-image: url(/image/balance/crystal.svg);
}
.aivPay-form .aivpay-currency.coins i {
	background-image: url(/image/balance/coin2.svg);
}
/* pay-item> */