/*---------- Stoerer ----------*/

div.stoerer-wrap {
	display: block;
	width: 240px;
	height: 240px;
	position: absolute;
	right: 60px;
	top: 60px;
	background: #fff;
	background: rgba(255,255,255,0.5);
	color: #333;
	text-decoration: none;
	z-index: 170;
	border-radius: 120px;
	overflow: hidden;
}
a.stoerer {
	display: block;
	width: 210px;
	height: 210px;
	margin: 15px;
	position: relative;
	background: #fff;
	color: #333;
	text-decoration: none;
	line-height: 1.4em;
	font-size: 20px;
	border-radius: 105px;
	overflow: hidden;
}
a.stoerer div.stoerer-v-center {
	display: block;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	padding: 0 10%;
	text-align: center;
	-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
a.stoerer p { margin: 0; padding: 5px 0; }
a.stoerer p strong { font-size: 30px; }


/*---------- 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: 400px;
	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;
	padding: 40px;
	position: relative;
}

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

.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 { font-size: 1.1em; padding-top: 20px; }

.stopper-popup a.button-style { font-weight: bold; font-size: 1.1em; margin: 0; }
a.stopper-popup-button {
	color: #FFF;
	background-color: #000;
	border: 1px solid #000;
	display: inline-block;
	font-family: inherit;
	font-weight: bold;
	font-size: 1.1em;
	letter-spacing: 0.06em;
	text-decoration: none;
	cursor: pointer;
	line-height: 38px;
	height: 40px;
	padding: 0 20px;
}
a.stopper-popup-button:hover, 
a.stopper-popup-button:active {
	background-color: #FFF;
	color: #000;
}


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

	div.stoerer-wrap {
		width: 200px;
		height: 200px;
		border-radius: 100px;
		right: 10px;
		top: 70px;
	}
	a.stoerer {
		width: 180px;
		height: 180px;
		margin: 10px;
		font-size: 18px;
		border-radius: 90px;
	}
	a.stoerer p strong { font-size: 24px; }

	.stopper-popup {
		padding: 40px 20px;
	}

}