/* --- module: effects slide --- */

/* common
---------------------------------------------------- */
.indexSlide {
	position: relative;
}
.indexSlide .sliderContainer {
	overflow: hidden;
	position: relative;
}


/* dynHeight with aspect ratio
---------------------------------------------------- */
.indexSlide.dynHeight {}
.indexSlide.dynHeight .item {
	height: 100%;
} 
.indexSlide.dynHeight .item:before {
	content: "";
	display: block;
	padding-top: 100%; /* 1:1 aspect ratio */
	padding-top: 75%; /* 4:3 aspect ratio */
	padding-top: 56.25%; /* 16:9 aspect ratio */
}


/* item
---------------------------------------------------- */
.indexSlide .item {
	width: 100%;
	height: 300px; /* js: auto viewport height */
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	background-size: cover !important;
	background-position: center center;
	position: relative;
	float: left;
	cursor: grab;
}
.indexSlide .item .content {
	position: absolute;
	bottom: 20px;
	width: 50%;
	left: 80px;
	background-color: rgba(0,0,0,0.7);
	color: #ffffff;
	padding: 20px 20px 20px 20px;
}
.indexSlide .item .content a {
	color: #ffffff;
}
.indexSlide .item .content .title {
	text-shadow: 3px 2px 3px rgba(0,0,0,1);
}
.indexSlide .item .content .teaser {}


/* pagination
---------------------------------------------------- */
.indexSlide .sliderPagination {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 4;
}
.indexSlide .sliderPagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #000000;
	opacity: 0.5;
	margin: 0px 2px 0px 2px;
}
.indexSlide .sliderPagination .swiper-pagination-bullet:hover {
	background-color: #000000;
	opacity: 1;
}
.indexSlide .sliderPagination .swiper-pagination-bullet-active {
	background-color: #db001b;
	opacity: 1;
}


/* prev/next
---------------------------------------------------- */
.indexSlide .sliderArrow {
	width: 100%;
	position: absolute;
	top: 50%;
	z-index: 5;
}
.indexSlide .next, .indexSlide .prev {
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	width: 45px;
	height: 45px;
	opacity: 0.5;
	position: absolute;
	margin: -22px 0px 0px 0px;
}
.indexSlide .next:hover, .indexSlide .prev:hover {
	opacity: 1;
}
.indexSlide .next {
	background-image: url(../../images/effects_gallery_arrow_next.png);
	right: 0px;
}
.indexSlide .prev {
	background-image: url(../../images/effects_gallery_arrow_prev.png);
	left: 0px;
}

