
.simplePopup {
	display:none;
	position:fixed;
	border:2px solid #000;
	background:#fff;
	z-index:99;
	padding:6px;
	width:75%;
	min-width:60%;
}

.simplePopupClose {
	position: absolute;
	right:20px;
	top:20px;
	cursor:pointer;
	color:#000;
	padding:2px 9px;
	font-weight:bold;
	font-size:100%;
	background:#fff;
	border-radius: 4px;
	z-index:99;
}

.simplePopupBackground {
	display:none;
	background:#000;
	position:fixed;
	height:100%;
	width:100%;
	top:0;
	left:0;
	z-index:1;
}
@media only screen and (max-width: 68em) {
	.simplePopup {
		width:80%;
		min-width:80%;
	}
}
@media only screen and (max-width: 40em) {
	.simplePopup {
		width:100%;
		min-width:100%;
	}
}