/*********************************
* Slideshow Styling
*********************************/
#slideshow {
	width: 100%;
	height: 100%;
	position: relative;
}
#slideshow.fullscreen {
	width: 100%;
	height: 575px;
	border: solid 1px #e3e3e3;
}
.img-wrapper {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
	z-index: 8;
	background-size: cover;
	background-position: center center;
}
#slideshow .img-wrapper.active {
	z-index: 10;
}
#slideshow .img-wrapper.last-active {
	z-index: 9;
}
/*********************************
	* Thumbnail Styling
	*********************************/
.thumbs-container {
	width: 100%;
	height: 137px;
	position: absolute;
	left: 0;
	z-index: 11;
	padding: 0;
}
.thumbs-container.top {
	top: 0;
}
.thumbs-container.bottom {
	bottom: -150px;
}
.prev, .next {
	color: #ffffff;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
	z-index: 99;
	font-size: 17px;
	padding: 0 10px;
	background: rgba(0,0,0,0.5);
	height: 65px;
	display: flex;
	align-items: center;
}
.prev {
	left: 0;
}
.next {
	right: 0;
}
.prev:hover, .next:hover {
	color: #fff;
}
ul.thumbs {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 137px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
}
.thumb {
	display: inline-block;
	width: 173px;
	height: 137px;
	margin: 0px 4px;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	cursor: pointer;
	box-sizing: border-box;
}
.thumb:first-of-type {
	margin-left: 0px;
}
@media screen and (max-width: 1199px) {
#slideshow.fullscreen {
	height: 460px;
}
}
 @media screen and (max-width: 767px) {
#slideshow.fullscreen {
	height: 400px;
}
}
 @media screen and (max-width: 479px) {
#slideshow.fullscreen {
	height: 280px;
}
}
