.popupHolder{
	position:fixed;
	top:0;
	left:0;
	max-width:100vw;
    width:100%;
	height:100vh;
	background:rgba(0,0,0,0.75);
	z-index:888888;
}
.popupFlex{	
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height:100%;
}
.popup{
	position:relative;
	background:#fff;
	border-radius:0.3rem;
    max-width:95%;
}
.popupClose{
	position:absolute;
	right:0.5rem;
	top:0.5rem;
	color:#FFF;
	cursor:pointer;
	z-index:999999;
    padding:10px;
    background:#f5aa4a;
    border-radius:50%;
    font-weight:bold;
    width:30px;
    height:30px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.popupClose:hover{
	background:#65a3cf;
}
.popupCnt{
	padding:2rem;
	text-align:center;	
}

.popup .cp_btn{
    color:#fff;
}
