/* Popup
---------------------------------------- */
#payment-overlay {
	position: fixed;
	top: 0; left: 0;
	
	background-color: #000;
	opacity: 0.6; 
	filter: alpha(opacity=60);
	
	height: 100%;
	width: 100%;
	z-index: 99999;
	display: none;
}
.payment-popup {
	display: none;
	
	position: fixed;
	
	width: 500px;
	height: 190px;
	
	padding: 8px 25px 8px 14px;
	color: #333;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #fff;
	border: 1px solid #fff;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	
	box-shadow: 0 0 10px #000000;
	
	z-index: 100000;
}
.payment-popup.big {
	top: 75px;
	left: 75px;
	right: 75px;
	bottom: 75px;
	
	height: auto;
	width: auto;
}

.payment-popup .close {
	position: relative;
	top: -7px;
	right: -20px;
	
	line-height: 20px;
}

.payment-popup .body    {
	height: 100%;
	width: 100%;
}
.payment-popup .body .payment-frame {
	border: none;
	margin: -20px 0 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.payment-popup.big .body .payment-frame {
	overflow: auto;
}

.payment-popup .buttons {
	text-align: center;
	margin-left: 25px;
}
.payment-popup .buttons .btn {
	margin-right: 10px;
	min-width: 75px;
}
