
/*---------- Popup ----------*/

.stopper-popup-outer-wrap {
	position: fixed;
	top: 0px;
	left: 999em;
	bottom: 0;
	right: -999em;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.7);
	-moz-transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	opacity: 0;
	z-index: 2000;
	overflow-y: auto;

	-webkit-transition-delay: 3s;
	-moz-transition-delay: 3s;
	-o-transition-delay: 3s;
	transition-delay: 3s;

}

.stopper-popup-outer-wrap.open {
	opacity: 1;
	left: 0;
	right: 0;
	display: block;
}

.stopper-popup-wrap {
	display: inline-block;
	width: 880px;
	max-width: 100%;
	padding: 40px;
	position: absolute;
	top: 40px;
	left: 50%;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	text-align: center;
	line-height: 1.4em;
}
.stopper-popup {
	display: block;
	position: relative;
	background: #FFF;
	color: #333;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}
.stopper-popup-image img { display: block; width: 100%; height: auto; }
.stopper-popup-text { display: block; padding: 40px; font-size: 1.2em; line-height: 1.4em; }
.stopper-popup-text a.button-style { font-size: 16px; text-transform: uppercase; }

.stopper-popup-close {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: rgba(0,0,0,0.3) url('../Images/close_w.png') no-repeat center center;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	font-size: 20px;
	text-align: center;
}
	

.stopper-popup h2, .stopper-popup h3 { padding: 0 0 10px 0; }
.stopper-popup h2 { font-size: 1.6em; }
.stopper-popup h3 { font-size: 1.4em; }

a.stopper-popup-button {
	text-decoration: none;
	display: inline-block;
	padding: 10px 20px;
	margin: 10px 0 0 0;
	border-top: solid 1px #555;
	border-bottom: solid 5px #555;
	letter-spacing: 0.04em;
}
a.stopper-popup-button:hover {
	border-bottom: solid 5px #000;
}

@media only screen and (max-width: 1600px) {

	.stopper-popup-wrap { top: 0; width: 600px; }
	.stopper-popup h2 { font-size: 1.6em; }
	.stopper-popup h3 { font-size: 1.4em; }
	.stopper-popup-text { font-size: 1em; }

}


@media only screen and (max-width: 719px) {

	.stopper-popup-wrap {
		top: 0;
		left: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	.stopper-popup h2 { font-size: 1.4em; }
	.stopper-popup h3 { font-size: 1.2em; }

}