.simplePopup {
display:none;
position:fixed;
border:4px solid #324861;
background:#fff;
z-index:3;
padding:12px;
width:90%;
min-width:90%;
}

.simplePopupClose {
cursor:pointer;
position: absolute;
top: 0;
right: 0;
background: #324861;
color: #FFF;
border-left: 2px solid #CCC;
border-bottom: 2px solid #CCC;
border-radius: 0px 0px 0px 10px;
display: inline-block;
vertical-align: middle;
transition-duration: 0.3s;
cursor: pointer;
text-align: center;
margin: 0px auto;
padding: 10px 15px;
min-width: 100px;
font-weight: 200;
text-transform: uppercase;
font-family: "Dosis",sans-serif;
font-size: 16px;
line-height: 16px;
}

.simplePopupClose:hover {
	background: #fff;
	color: #324861;
	border-left: 2px solid #324861;
	border-bottom: 2px solid #324861;
	transition-duration: 0.8s;
}

.simplePopupBackground {
display:none;
background:#000;
position:fixed;
height:100%;
width:100%;
top:0;
left:0;
z-index:1;
}
