/* 
 * 	Default theme - Owl Carousel CSS File
 */
 
 
.owl-theme .owl-controls {
  position: absolute;
	bottom: 0;
	top: 0;
	width: 100%;
	display: block;
	text-align: center;
	line-height: 100%;
	vertical-align: bottom;
}

.owl-theme .owl-controls{
	position: absolute;
	bottom: 0;
	top: 0;
	width: 100%;
	display: block;
	text-align: center;
	line-height: 100%;
	vertical-align: bottom;
	pointer-events: none;
	background: url('../../assets/transparent.png');
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../assets/transparent.png', sizingMethod='scale');
	background: none !important;
}

.owl-theme .owl-controls .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 50px;
	margin-top: -25px;
	display: block;	
}
@media only screen and (max-width: 900px) {
	.owl-theme .owl-controls .owl-nav {
		display: none;	
	}	
}


/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
.owl-theme .owl-controls .owl-nav {
		display: none;	
	}	
}


.owl-prev {
	height: 50px;
	width: 50px;
	display: block;
	background: url("../../assets/arrow_big_left.svg") no-repeat center center;
	text-indent: -2000px;
	float: left;
	pointer-events: all;
	
}

.owl-next {
	height: 50px;
	width: 50px;
	display: block;
	background: url("../../assets/arrow_big_right.svg") no-repeat center center;
	text-indent: -200000px;
	float: right;
	pointer-events: all;
}
.owl-theme .owl-controls .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-dots {
	display: block;
	position: absolute;
	width: 60px;
	bottom: 15px;
	left: 50%;
	margin-left: -30px;
	pointer-events: all;
}
.owl-theme .owl-dots .owl-dot {
  width: 18px;
	height: 18px;
	margin: 0 1px;
	zoom: 1;
	float: left;
	line-height: 18px;
	vertical-align: middle;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-dots .owl-dot span {
  display: inline-block ;
	width: 8px;
	height: 8px;
	border: 1px solid white;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  border: 1px solid white;
  background: white;
}
