/* --- swslang: slideshow_thumbnail --- */

/* common
---------------------------------------------------- */
.swSlideshow {
	position: relative;
	display: inline-block;
}
.swSlideshow .sliderContainer {
	overflow: hidden;
	position: relative;
	/* box-shadow: 1px 3px 5px rgba(0,0,0,0.5); */
}


/* item
---------------------------------------------------- */
.swSlideshow .item {
	width: 100%;
	height: 300px;
	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;
	padding: 10px 10px 10px 10px;
	cursor: grab;
}
.swSlideshow .teaser {
	color: #ffffff;
	position: absolute;
	bottom: 0px;
	padding: 5px 10px 5px 10px;
	margin: 0px 0px 0px -10px;
	background-color: rgba(0,0,0,0.4);
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}


/* prev/next
---------------------------------------------------- */
.swSlideshow .sliderArrow {
	width: 100%;
	position: absolute;
	top: 50%;
	z-index: 1;
	display: none; /* initially hide */
	
}
.swSlideshow .sliderContainer:hover .sliderArrow {
	display: block; /* show on hover */
}
.swSlideshow .next, .swSlideshow .prev {
	margin-top: -15px; /* -> minus height/2 */
	opacity: 0.5;
	position: absolute;
	display: table;
	width: 30px;
	font-weight: 100;
	font-size: 50px;
	line-height: 20px; /* center */
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
}
.swSlideshow .next:before, .swSlideshow .prev:before {
	display: table-cell;
}
.swSlideshow .next:before {
	content: "\203A";
}
.swSlideshow .prev:before {
	content: "\2039";
}
.swSlideshow .next:hover, .swSlideshow .prev:hover {
	opacity: 0.8;
}
.swSlideshow .next {
	right: 0px;
}
.swSlideshow .prev {}



/* thumbitem
---------------------------------------------------- */
.swSlideshow .thumb {
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px -5px;
	font-size: 0px;
}
.swSlideshow .thumb .swiper-pagination-bullet {
	width: 30px;
	height: 30px;
	background-size: cover !important;
	background-position: center;
	margin: 4px 0px 0px 4px;
	display: inline-block;
	border-radius: 0px;
	opacity: 1;
}
.swSlideshow .thumb .swiper-pagination-bullet-active {
	opacity: 0.5;
}

/* pagination
---------------------------------------------------- */
.swSlideshow .pagination {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	display: table;
}
.swSlideshow .pagination .swiper-pagination-bullet {
	display: table-cell;
	padding: 2px 2px 2px 2px;
	background: transparent;
	width: auto;
	height: auto;
	opacity: 1;
	border-radius: 0px;
}
.swSlideshow .pagination .swiper-pagination-bullet:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #000000;
	opacity: 0.5;
	border: 2px solid #ffffff;
	border-radius: 100%;
}
.swSlideshow .pagination .swiper-pagination-bullet:hover:before, .swSlideshow .pagination .swiper-pagination-bullet-active:before {
	background-color: #ffffff;
	border: 2px solid #000000;
}





