/* Ansprechpartner */

#appopupbtn{
	position: fixed;
	right: 20px;
	bottom: 20px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	z-index: 990;
	visibility: hidden;
}

#appopupbox{
	position: fixed;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	display: none;
	z-index: 991;
}

#appopupbox .inner{
	position: absolute;
	max-width: 960px;
	width: 100%;
	left: calc(50% - 480px);
	top: calc(50% - 250px);
}

#appopupbox{
	position: fixed;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.85);
	display: none;
	z-index: 991;
}

#appopupbox .inner > .row-fluid{
	display: flex;
	align-items: stretch;
}

#appopupbox [class*="span"]{
	background: #fff;
	border-radius: 12px 12px 8px 8px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

#appopupbox .module{
	
	box-sizing: border-box;
	text-align: center;
	border-radius: 8px;
}

#appopupbox .modulheadline{
	margin: 0px;
	background-color: #005192;
	color: #fff;
	border-radius: 8px 8px 0px 0px;
	padding: 8px 0px;
	display: block;
	font-size: 20px;
	line-height: 36px;
	font-weight: bold;
}

#appopupbox .module_inner{
	padding: 20px 10px;
}

#appopupbox .module_inner p:first-of-type{
	min-height: 60px;
}

#appopupbox .module_inner p:last-of-type{
	padding-bottom: 0px; 
}

#appopupclose{
	width: 20px;
	height: 20px;
	background-image: url(../images/cross.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	position: absolute;
	right: 20px;
	top: 15px;
	cursor: pointer;
	transition: transform 0.5s ease;
	
	/*display: inline-block;
	color: #FFF;
	font-weight: bold;
	font-size: 20px;
	line-height: 20px;
	cursor: pointer;
	padding: 5px;
position: absolute;
	top: 15%;
	right: 20%;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	transition: transform 0.5s ease;*/
}

#appopupclose:hover{
	transform: scale(1.25);
}

@media (max-height: 600px){
	#appopupbox .inner{
		top: calc(50% - 145px);
	}
}


@media (max-width: 1024px){
	#appopupbox .inner{
		left: 20px;
		right: 20px;
		width: auto;
	}
}

@media (max-width: 980px){
	#appopupbox,
	#appopupbtn{
		display: none !important;
	}
	
}