/* --- 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: 420px; /* 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 {
	width: 100%;
}
.indexSlide .item .swTableCell {
	vertical-align: top;
}
.indexSlide .item .content .subtitle {
	font-weight: 700;
	color: #7d2248;
	padding: 0px 0px 20px 0px;
}
.indexSlide .item .content .title {
	font-weight: 700;
	font-family: "jaf-bernina-sans-condensed", sans-serif;
}
.indexSlide .item .content .teaser {
	padding: 30px 0px 0px 0px;
}
.indexSlide .item .content .image {
	width: 450px;
}
.indexSlide .item .content .image .swiper-lazy {
	width: 420px;
	height: 420px;
	border-radius: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0px 0px 0px auto;
}
.indexSlide .item .content .image .swiper-lazy img {
	width: 420px;
	height: 420px;
	border-radius: 100%;
	opacity: 0;
}


/* 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: 35px;
	height: 56px;
	opacity: 1;
	position: absolute;
	margin: -28px 0px 0px 0px;
}
.indexSlide .next:hover, .indexSlide .prev:hover {
	opacity: 0.7;
}
.indexSlide .next {
	background-image: url(../../images/site/slider_arrow_right.svg);
	right: -55px;
}
.indexSlide .prev {
	background-image: url(../../images/site/slider_arrow_left.svg);
	left: -55px;
}

