
/*
//=============================================================
// pop up
//=============================================================
*/



.visa-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 15px;
	display: none;
	background-color: hsla(0, 0%, 0%, .36);
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1000;
	animation: fadeIn 1s;
	-webkit-animation: fadeIn 1s;
	-moz-animation: fadeIn 1s;
	-o-animation: fadeIn 1s;
	-ms-animation: fadeIn 1s;

}
.visa-popup.open{display:flex;}
keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-moz-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-o-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-ms-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

.visa-popup-container {
	padding: 80px;
	margin: auto;
	border-radius: 12px;
	background-color:#fff;
	max-width:805px;
	box-shadow: 0px 0px 21px hsl(0deg 0% 0% / 29%);
	position: relative;
}

.visa-popup-container .visa-border{
	display:flex;
	color:#272726;
}

.visa_pop_up_title{
	font-size:32px;
	line-height:34px;
	font-weight:800;
	max-width:330px;
}
.visa_pop_up_sub_title{
	font-size:24px;
	line-height:22px;
	margin-top:31px;
	margin-bottom:19px;
	font-weight:600;
}

.visa_pop_up_also ol {
	counter-reset: my-badass-counter;
}

.visa_pop_up_also ol li{
	display: flex;
	align-items: center;
	font-size:24px;
}

.visa_pop_up_also li:before {
	content: counter(my-badass-counter);
	counter-increment: my-badass-counter;
	color: #009FF3;
	font-size: 42px;
	font-weight: 700;
	width:50px;
}

.pop-up-left{
	margin-right: 60px;
}

.visa_pop_up_qr{height:100%;}
.visa_pop_up_qr img{
	height: 100%;
	width: auto;
}

.close-visa-pop-up{
	cursor:pointer;
	top:33px;
	left:37px;
	position:absolute;
}

.close-visa-pop-up img{width:18px; height:auto;}


/*
//=============================================================
// pop up end
//=============================================================
*/

