/*********************************
* Slideshow Styling
*********************************/
.product-detail-slider {
	margin-bottom: 180px;
}
#slideshow {
	width: 100%;
	height: 100%;
	position: relative;
}
#slideshow.fullscreen {
	width: 100%;
	height: 592px;
	border: solid 1px #e3e4ed;
	border-radius: 6px;
}
.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: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
#slideshow .img-wrapper.active {
	z-index: 10;
}
#slideshow .img-wrapper.last-active {
	z-index: 9;
}
/*********************************
	* Thumbnail Styling
	*********************************/
.thumbs-container {
	width: 100%;
	height: 150px;
	position: absolute;
	left: 0;
	z-index: 11;
	padding: 0;
}
.thumbs-container.top {
	top: 0;
}
.thumbs-container.bottom {
	bottom: 0;
}
.prev, .next {
	color: #ffffff;
	cursor: pointer;
	top: -100%;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	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;
	box-shadow: 0px 3px 9px 0px rgba(0,0,0,0.1);
	border-radius: 100%;
}
.prev {
	left: 0;
}
.next {
	right: 0;
}
.prev:hover, .next:hover {
	color: #fff;
}
ul.thumbs {
	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	height: 146px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
}
.thumb {
	display: inline-block;
	width: calc(25% - 18px);
	height: 146px;
	margin: 0px 10px;
	overflow: hidden;
	background-size: contain;
	background-position: center center;
	cursor: pointer;
	background-repeat: no-repeat;
	border: 1px solid #e3e4ed;
	border-radius: 6px;
	padding: 24px 20px;
}
.thumb:first-of-type {
	margin-left: 0px;
}
.thumb.active {
	border: 1px solid #207bc1;
}

.prev {
	left: -20px;
	background: url(../img/left-arrow.png) no-repeat;
	width: 40px;
	height: 40px;
}

.next {
	right: -20px;
	background: url(../img/right-arrow.png) no-repeat;
	width: 40px;
	height: 40px;
}
@media screen and (max-width: 1440px) {
.thumb{ height: 130px;}
.product-slider-col{padding-left: 30px;}
}
@media screen and (max-width: 1199px) {
/* #slideshow.fullscreen {
	height: 460px;
} */
.thumb {height: 98px;}
.prev{ left: 10px;}
.next{ right: 10px;}
#slideshow.fullscreen{height: 400px;}
.prev, .next{top: -50%; 	transform: translateY(-50%);	-webkit-transform: translateY(-50%);}
}

@media screen and (max-width: 991px) {
.product-detail-slider {
	margin-bottom: 130px;
}
}

 @media screen and (max-width: 767px) {
#slideshow.fullscreen {
	height: 400px;
}
}
 @media screen and (max-width: 479px) {
#slideshow.fullscreen {
	height: 280px;
}

.thumb{width: calc(33% - 18px); height: 80px;}
.prev, .next {
	top: 0;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}
}
