.payment-loader-wrap {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	height: 100%;
	width: 100%;
	*top: 40%;
	*left: 40%;
	*height: 20%;
	*width: 20%;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.5);
	*background: none;
	transition: opacity 0.3s linear;
	z-index: 999999;
	cursor: pointer;
}

.payment-loader-circle-wrap {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.payment-loader-circle {
	width: 100px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;  
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	border-radius: 50%;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.payment-loader-text-wrap {
	width: 100%;
	text-align: center;
	color: #ffffff;
	margin-top: 10px;
}