/*-- Lightbox Thumbs and Slider --*/
.image-slider * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.image-slider {
	width: 100%;
	/*min-height: 500px;*/
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}
.image-slider .slide-wrap {
	width: 100%;
	height: 500px;
	position: absolute;
	-webkit-transition: all 0.33s ease-out;
	-moz-transition: all 0.33s ease-out;
	transition: all 0.33s ease-out;
}
.image-slider .slide {
	width: 100%;
	/*height: 500px;*/
	position: absolute;
	top: 0;
	left: 0;
	background: #efefef;
	overflow: hidden;
}
.image-slider .slide img {
	/*height: 500px;*/
	min-width: 100%;
	height: auto !important;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.image-slider .thumbnail-controls {
	position: relative;
}
.image-slider .thumbnail-controls .thumbnail-slide {
	width: 20000px;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.33s ease-out;
	-moz-transition: all 0.33s ease-out;
	transition: all 0.33s ease-out;
}
.image-slider .thumbnail-controls .prev,
.image-slider .thumbnail-controls .next {
	height: 50px;
	width: 30px;
	position: absolute;
	top: 0;
	font-size: 34px;
	text-align: center;
	color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
	background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    cursor: pointer;
}
.image-slider .thumbnail-controls .prev {
	left: 0;
}
.image-slider .thumbnail-controls .next {
	right: 0;
}
.image-slider .thumbnail-controls .prev:hover,
.image-slider .thumbnail-controls .next:hover {
	background: rgba(0, 0, 0, 0.5);
}
.image-slider .thumbnail-controls .thumb-control {
	display: inline-block;
	background-size: cover !important;
	background-position: center !important;
	cursor: pointer;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}