/* CSS Document */

.wrap_swiper {
	position: relative;
	display: block;
	width: 100%;
	height: auto;	
	border-top: 0px solid white;
	border-bottom: 0px solid white;

}

.wrap_swiper .modul {
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	height: auto;
	width: 100%;
	height: 100%;
}

/* //////////////////// */

.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	
	/* Center slide text vertically */
	
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	
}

/* // Mit > Image ... object-position // */
.swiper-slide img {
	position: relative;
	width: 100%;
	height: 100%; 
	object-fit: cover;
	object-position: center center;
	max-height: 100%;
	min-height: 100%;
	margin: 0;
}


/* // Mit BG Image // */
.swiper-slide.bg {
	position: relative;
	display: block;
	width: 100%;
	height: auto; /* per JS */
	max-height: 100%;

	background: no-repeat center center scroll; 
	background-color: #333;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: contain;
	background-size: cover;

}


/* /////////// Arrows / Pagination ///////// */

.swiper-button-prev,
.swiper-button-next {
	height: auto;
	padding: 4px 0 0 0;
	line-height: 30px;
	vertical-align: middle;
	text-align: center;
	background: red;
	background: transparent;
}
.swiper-button-prev:before,
.swiper-button-next:after {
	font-family: 'FontAwesome';
	font-size: 1.5em;
	font-weight: 700;
	color: #FFF;
}
.swiper-button-prev:before {
	content: '<';
	content: "\f053";
}
.swiper-button-next:after {
	content: '>';
	content: "\f054";
}


.swiper-pagination {
	background: red;
	background: transparent;
}
.swiper-pagination-bullet {
	opacity: 0.9;
	background: white;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: black;
}

