#faderBox {
	position:relative;
	top:0;
	margin:0 auto;
	width:100%;
	height:890px;
	display:flex;
	  align-items: center;
  justify-content: center;
}

.wandaImageFader {
	position:absolute;
	top:0;
	width:100%;
	height:100%;
	overflow:hidden;
}

.wandaImageFader .wIFback,.wandaImageFader .wIFnext {
	position:absolute;
	width:70px;
	height:70px;
	bottom:140px;
	margin-top:-35px;
	z-index:20;
	cursor:pointer;
}

.wandaImageFader .wIFback {
	left:0;
	background-image:url(images/back.png);
}
.wandaImageFader .wIFnext {
	right:0;
	background-image:url(images/next.png);
}
.wandaImageFader ul.wIF {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.wandaImageFader ul.wIF li.faElem {
	background-repeat:no-repeat;
	background-position:top center;
	background-size: cover;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}


.pagination {
	list-style-type: none;
	position:absolute;        /*  absolute für interne Pagination - relative für externe Pagination */
	bottom:20px;
	width:0;
	margin:0 auto;
	padding:0;
	left: 0;
	right: 0;
}
.pagination li {
	width:14px;
	height:14px;
	display:inline-block;
	margin:0 7px;
	border-radius:7px;
	background-color:#cfcfcf;
	cursor:pointer;
}
.pagination li.akt {
	background-color:#0082b9;
}

.wIMFtextbox {
	display:none;
	position:relative;
	width:370px;
	top:20px;
	left:0;
	background-color:#0082b9;
	color:#fff;
}
.wIFText {
	position:relative;
z-index:10;
	color:#fff;
	font-size:25pt;
	line-height:37px;
	text-align:center;
	border:2px solid #fff;
	background-color:rgba(255,255,255,0.2);
	padding:30px;
	}

.wave {
	position:absolute;
	bottom:0;
	left:0;
	height:110px;
	width:100%;
	display:block;
	background-image:url('images/welle-weiss-unten-wechselbild-aquasuisse.svg');
	background-repeat:no-repeat;
	background-position:center bottom -2px;
	background-size:105% auto;
}

/* RESPONSIVE */
@media  only screen and (max-width: 1080px) {
	#faderBox {
		height:500px;
	}
	.wandaImageFader .wIFback,.wandaImageFader .wIFnext {
		display:none;
		}
}
@media  only screen and (max-width: 680px) {
		#faderBox {
		height:380px;
	}
	.pagination {
		padding:16px 0 0;
	}
	.pagination li {
		width:12px;
		height:12px;
		display:inline-block;
		margin:0 9px;
		border-radius:6px;
		background-color:#cfcfcf;
		cursor:pointer;
	}
}


