/* 
 * 	Default theme - Owl Carousel CSS File
 *	v2.0.0
 */

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Styling Next and Prev buttons */
.owl-prev{
	left: 20px;
	background-image: url(../images/prev.png);
}
.owl-next{
	right: 20px;
	background-image: url(../images/next.png);
}
.owl-theme .owl-controls .owl-nav div{
	z-index: 995;
	width: 46px;
	height: 78px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	opacity: .5;
	pointer-events: all;
    font-size: 0;
    cursor: pointer;
}
@media only screen and  (max-width: 48em){
    .owl-theme .owl-controls .owl-nav div{
    	width: 40px;
        background-size: 20px;
    }
    .owl-prev{
		left: 0;
	}
	.owl-next{
		right: 0;
	}
} 
.owl-theme .owl-controls .owl-nav div:hover{
	opacity: 1;
}
.owl-theme .owl-controls .owl-nav .disabled{
	opacity: 0.5;
	cursor: default;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls .owl-nav div:hover{
	text-decoration: none;
}

/* Styling dots*/
.owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.owl-theme .owl-dots .owl-dot{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}

.owl-theme .owl-dots .owl-dot span{
	-webkit-backface-visibility: visible;
	display: block;
	width: 51px;
	height: 4px;
	margin: 5px 7px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	background: #cacaca;
	transition-property: all;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
}

.owl-theme .owl-dots .owl-dot.active span{
	width: 50px;
	background: #00adef;
}

