.pop-up {
	position: fixed;
	display: none;
	top: 50%;
	left: 50%;
	z-index: 90;
	width: 95%;
	max-width: 585px;
	background: #fff;
	-webkit-border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 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: 0;
	z-index: 1;
	width: 40px;
	height: 40px;
	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: -10px 0 0 -10px;
	background: url("/images/Sprite-02-50lv.svg") no-repeat 0 -1408px;
}
.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;
}