.cfpw_popup_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(0,0,0,0.3);
	z-index: 999999;
}

.cfpw_popup_parent {
	width: auto;
	height: auto;
	min-height: 40vh;
	min-width: 50vh;
	background: rgb( 255,255,255, 0.9 );
	border-radius: 20px;
	display: grid;
	align-items: center;
	justify-content: center;
	position: absolute;
	padding: 10px 0px;
}

.cfpw_popup_close_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 3px;
	width: 30px;
	height: 30px;
	background: rgb( 200,200,200, 1 );
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
}

.cfpw_popup_close_btn:hover{
	background: rgb( 200,200,200, 0.9);
}

@media screen and (min-width:200px) and (max-width:899px){
	.cfpw_popup_parent {
		width: 90vw;
		height: auto;
		min-height: 40vh;
	}
}