#VWsecureModal{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.75);
	align-items: center;
	justify-content: center;
	z-index: 1500;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#VWpaymentContainer{
	position: relative;
	min-width: 320px;
	min-height: 320px;
	max-width:500px;
	max-height: 450px;
	width: 100%;
	height: 100%;
	background-color: white;
}
.VWLogoContainer{
	display:flex;
	width: 100%;
	justify-content:center;
	align-items: center;
	margin: 8px 0;
}
.VWLogoContainer p{
	margin: 0;
	font-size: 13px;
}
.VWLogoContainer img{
	max-width:100%;
	padding-left:10px;
}

#VWinstallments{
	display: none;
}

.payment_box.payment_method_vivawallet_native{
	position: relative;
}



#VWloader{
	display: none;
	position: absolute;
	background: white;
	opacity: 0.85;
	align-content: center;
	justify-content: center;
	flex-direction: column;

	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#VWloader span, #VWloader p{
	text-align: center;
}

#VWloader i{
	width: 70px;
	height: 70px;
	background-image: url("../images/loader.svg");
	display: inline-block;
	animation: rotate-s-loader 1.5s steps(10) infinite;
	position: relative;
}


@keyframes rotate-s-loader {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}
