.banspin {
	
	position: relative;
	overflow: hidden;
}

.bs-item {
	
	width: 100%;
}

.bs-item-container {
	
	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	text-align: center;
	margin: 0em;
	padding: 0em;
}

.bs-item-container:not(:first-of-type) {
	
	position: absolute;
	top: 0px;
}

.bs-item-container:not(.image-active) {
	
	display: none;
}

.banspin .image-active {

	background-color: white;
}

.banspin .nav-dots {
	
	position: absolute;
	bottom: 0em;
	text-align: center;
	padding: .5em 0em;
	width: 100%;
	z-index: 3;
}

.banspin .nav-dots .dot {
	
	display: inline-block;
	margin: 5px;
	cursor: pointer;
	
	background: url('/resources/css/images/nav-dot-white.png') no-repeat center;
	background-size: contain;
	height: 16px;
	width: 16px;
}

.banspin .nav-dots .dot-selected {
	
	background: url('/resources/css/images/nav-dot-selected-white.png') no-repeat center;
	background-size: contain;
	height: 16px;
	width: 16px;
}

.banspin:hover .nav-left {
	
	display: inline-block;
}

.banspin:hover .nav-right {
	
	display: inline-block;
}

.banspin .nav-left {
	
	position: absolute;
	bottom: 0em;
	left: 0em;
	opacity: .5;
	display: none;
	width: 5%;
	cursor: pointer;
}

.banspin .nav-left:hover {
	
	opacity: 1;
}

.banspin .nav-left .nav-button {
	
	background: url('/resources/css/images/arrow_left_white.png') no-repeat center;
	background-size: contain;
	height: 40px;
	width: 40px;
	margin: 0em auto;
}

.banspin .nav-right {
	
	position: absolute;
	bottom: 0em;
	right: 0em;
	opacity: .5;
	display: none;
	width: 5%;
	cursor: pointer;
}

.banspin .nav-right:hover {
	
	opacity: 1;
}

.banspin .nav-right .nav-button {
	
	background: url('/resources/css/images/arrow_right_white.png') no-repeat center;
	background-size: contain;
	height: 40px;
	width: 40px;
	margin: 0em auto;
}

/**
	MEDIA QUERIES
*/
@media all and (max-width: 786px) {

	.banspin .nav-left,
	.banspin .nav-right {
	
		display: inline-block;
	}
	
	.banspin .nav-dots {
	
		opacity: 0;
	}
}