.image-slider {

	width: 100%;
	text-align: center !important;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.image-slider img {

	width: 100%;
}

.image-slider:hover .image-slider-quickview-next,
.image-slider:hover .image-slider-quickview-prev {

	display: inline-block;
}

.image-slider .item {

	text-align: center;
}

.image-slider .item .description {

	display: block;
	text-align: center;
	margin: 5px 0px;
	font-size: 1.5em;
}

.image-slider-loadbar-container {

}

.image-slider-loadbar-container .image-slider-loadbar {

	width: 0%;
	min-height: 2px;
	background-color: #007ac3;
}

.image-slider-quickview-container {

	text-align: center;
}

.image-slider-quickview-button {

	display: inline-block;
	height: 5px;
	width: 5px;
	border: 2px solid black;
	margin: 5px;
	cursor: pointer;
}

.image-slider-quickview-button-active {

	background-color: orange;
}

.image-slider-quickview-next {

	background: url('/resources/css/images/arrow_right.png') no-repeat center;
	background-size: contain;
	
	position: absolute;
	bottom: 45%;
	right: 1%;
	opacity: .5;
	display: none;
	height: 40px;
	width: 40px;
}

.image-slider-quickview-next:hover {

	opacity: .7;
	cursor: pointer;
}

.image-slider-quickview-prev {

	background: url('/resources/css/images/arrow_left.png') no-repeat center;
	background-size: contain;
	
	position: absolute;
	bottom: 45%;
	left: 1%;
	opacity: .5;
	display: none;
	height: 40px;
	width: 40px;
}

.image-slider-quickview-prev:hover {

	opacity: .7;
	cursor: pointer;
}

/**
	MEDIA QUERIES
*/
@media all and (max-width: 480px) {

	.image-slider-quickview-container {
	
		height: 40px;
	}

	.image-slider-quickview-button {
	
		width: 20px;
		height: 25px;
		margin: 2px;
		display: none;
	}
	
	.image-slider-quickview-next {
	
		background-size: auto;
		bottom: 0px;
		right: 0px;
		display: inline-block;
		height: 40px;
		width: 48px;
	}
	
	.image-slider-quickview-prev {
	
		background-size: auto;
		bottom: 0px;
		left: 0px;
		display: inline-block;
		height: 40px;
		width: 48px;
	}
}