.popup-box {
	position: absolute;
/*	border-radius: 5px;*/
	background: #fff;
	display: none;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	font-family: Arial, sans-serif;
	z-index: 8000;
	font-size: 14px;
}

.popup-box .close {
	position: absolute;
	top: 0;
	right: 0;
	font-family: Arial, Helvetica, sans-serif;	
	font-weight: bold;
	cursor: pointer;
	color: #434343;
	padding: 20px;
	font-size: 20px;
}

.popup-box .close:hover {
	color: #000;
}

.popup-box .top {
	padding: 10px;
}

.popup-box .bottom {
	background: #f6f5f3;
	border-top: 1px solid #e5e5e5;
	padding: 20px;
/*	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px; */
}

#blackout {
	background: rgba(0,0,0,0.3);
	position: fixed;
	top: 0;
	overflow: hidden;
	z-index: 7999;
	left: 0;
	display: none;
}

.center-fixed {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
}
