
body:not(.stoerer) #hero-stoerer {
	display: none;
}

body.stoerer #stoerer, 
body.stoerer #stoerer.large {
	position: absolute;
	top: 15%;
	right: 10%;
	rotate: 10deg;
	bottom: auto;
	left: auto;
	z-index: 999;
	cursor: pointer;
	line-height: 1.1 !important;
/*	visibility: hidden;
	opacity: 0;  */
	transition: all 0.5s ease;
}
body.stoerer #stoerer .popuptext, 
body.stoerer #stoerer.large .popuptext {
	width: 300px;
	height: 300px;
	display: flex;
	flex-direction: column;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	border: 10px solid var(--farbe-marke);
	padding: 10px;
	z-index: 1;
	font-size: inherit;
	transition: all 0.5s ease;
}
body.stoerer #stoerer h2, 
body.stoerer #stoerer.large h2 {
	font-size: 32px;
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 10px;
}
body.stoerer #stoerer p {
	margin: 0;
}
body.stoerer #stoerer .ce_hyperlink a.btn, 
body.stoerer #stoerer.large .ce_hyperlink a.btn {
	font-size: inherit;
	padding: 5px 7px;
	border: 1px solid #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
	body.stoerer #stoerer {
		top: 3%;
		right: 9%;
	}
	body.stoerer #stoerer .popuptext {
		width: 260px;
		height: 260px;
		font-size: 18px;
		font-size: 1.125rem;
		border: 10px solid var(--farbe-marke);
	}
	body.stoerer #stoerer h2 {
		font-size: 28px;
		font-size: 1.75rem;
		line-height: 1.1;
		margin-bottom: 5px;
	}
	body.stoerer #stoerer .ce_hyperlink a.btn {
		padding: 4px 5px 2px 5px;
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media screen and (min-width: 481px) and (max-width: 767px) {
	body.stoerer #stoerer {
		top: 2%;
		right: 2%;
	}
	body.stoerer #stoerer .popuptext {
		width: 180px;
		height: 180px;
		font-size: 12px;
		font-size: 0.75rem;
		border: 7px solid var(--farbe-marke);
	}
	body.stoerer #stoerer h2 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.1;
		margin-bottom: 5px;
	}
	body.stoerer #stoerer .ce_hyperlink a.btn {
		padding: 4px 5px 2px 5px;
		font-size: 14px;
		font-size: 0.875rem;
	}
}
@media screen and (max-width: 480px) {
	body.stoerer #stoerer {
		top: 2%;
		right: 2%;
	}
	body.stoerer #stoerer .popuptext {
		width: 180px;
		height: 180px;
		font-size: 12px;
		font-size: 0.75rem;
		border: 7px solid var(--farbe-marke);
	}
	body.stoerer #stoerer h2 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.1;
		margin-bottom: 5px;
	}
	body.stoerer #stoerer .ce_hyperlink a.btn {
		padding: 4px 5px 2px 5px;
		font-size: 14px;
		font-size: 0.875rem;
	}
}


/* Popup container */
#popupFenster {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
	z-index: 999;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
#popupFenster.visible {
	visibility: visible;
	opacity: 1;
}


/* The actual popup (appears on top) */
#popupFenster .popuptext {
  width: 480px;
  max-width: 85vw;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  padding: 30px;
  position: absolute;
  z-index: 1;
  top: 20%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%,0);
}

#popupFenster .popuptext button#popup-close {
	position: absolute;
	bottom: 5px;
	right: 10px;
	background: none;
	color: #fff;
	border: none;
	text-decoration: underline;
	font-size: 16px;
}

/* Popup arrow */
/*
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
*/

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup-original.show {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s ease, visibility 0.5s ease;
/*
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s
*/
}
.popup-original.hide {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease, visibility 0.5s ease;
/*
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s
*/
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}