.pop-up {
	position: fixed;
	display: none;
	top: 50%;
	left: 50%;
	z-index: 90;
	background: #fff;
	-webkit-border-radius: 4px 0 4px 4px;
	-moz-border-radius: 4px 0 4px 4px;
	border-radius: 4px 0 4px 4px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.pop-up-close-button {
	position: absolute;
	top: 0;
	right: -37px;
	width: 39px;
	height: 35px;
	background: #fff;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}
.pop-up-close-button:before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 21px;
	height: 21px;
	margin: -9px 0 0 -10px;
	background: url("/images/Sprite-02.svg") no-repeat 0 -1179px;
}
.pop-up-overlay {
	position: fixed;
	z-index: 89;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
}
.has-opened-pop-up {
	overflow: hidden;
}