

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

.stopper-popup-outer-wrap {
	position: fixed;
	top: 0px;
	left: 999em;
	bottom: 0;
	right: -999em;
	width: 100%;
	height: 100%;
	background: transparent;
	-moz-transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	opacity: 0;
	z-index: 2000;

	-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: 90%;
	max-width: 640px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin-top: -30px;

	background: #FFF;
	color: #000;
	-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);
	
	text-align: center;
	line-height: 1.4em;
}
.stopper-popup {
	display: block;
	position: relative;
}

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

.stopper-popup-image img {
	width: 100%;
	height: auto;
	display: block;
}

.stopper-popup-text {
	display: block;
	padding: 20px 40px 30px 40px;
}
.stopper-popup-text p {
	padding-top: 20px;
}
.stopper-popup-button-wrap a {
	margin: 0;
}

.stopper-popup-header { padding: 0.3em 0; }
.stopper-popup h2, .stopper-popup h3 { padding: 0; }
.stopper-popup h2 { font-size: 1.4em; font-weight: bold; }
.stopper-popup h3 { font-size: 1.3em; font-weight: normal; }

.stopper-popup p, .stopper-popup ul {  }




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


}