#clearfade {
	display:none;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 99;
}
#PopupModal,
#SurveyPopupModal,
#RatingPopupModal{
	display:none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 100;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.styledPopup__inner {
	width: 540px;
	max-width: 100%;
	margin: 0 auto;
	max-height: 100%;
	background: white;
	position: relative;
}
#closeButton {
	position: absolute;
	top: -13px;
	right: -12px;
	background: #005fb8;
	border-radius: 50%;
	text-indent: -9000em;
	display: block;
	height: 24px;
	width: 24px;
}
#closeButton::before, 
#closeButton::after {
	content: "";
	display: block;
	width: 15px;
	height: 3px;
	background: white;
	position: absolute;
	top: 11px;
	left: 5px;
	transform: rotate(45deg);
}
#closeButton::after {
	transform:rotate(-45deg);	
}
.styledPopup__banner {
	width: 100%;
	display: block;
}
.styledPopup__content {
	padding: 13px 18px;
}
.styledPopup__content h2 {
	color: #005fb8;
	font-size: 16px;
	font-weight: 600;
	margin-top: 0px;
	margin-bottom: 28px;
}
.styledPopup__content p {
	font-size: 13px;
}
.styledPopup__more {
	margin-top: 8px;
	text-decoration:none;
}