/* 
 * 	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);
	width:100%;position:absolute;top:50%;margin-top:-28px;
}
.owl-theme .owl-controls .owl-nav{position:absolute;width:100%;}
.owl-theme .owl-controls .owl-nav .owl-prev{background:url(../images/icon-left03.png) no-repeat center center;width:56px;height:56px;position:absolute;left:50%;margin-left:-58%;}
.owl-theme .owl-controls .owl-nav .owl-next{background:url(../images/icon-right03.png) no-repeat center center;width:56px;height:56px;position:absolute;left:50%;margin-left:53%; }

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div{
	color: #FFF;
	display: inline-block;
	margin: 5px;
	padding: 4px 7px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	cursor: pointer;
	text-indent:-2000px;
	overflow:hidden;
}
.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-theme .owl-dots .owl-dot{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	display:none;
}

.owl-theme .owl-dots .owl-dot span{
	-webkit-backface-visibility: visible;
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #fff;
	border:#f27d21 solid 1px;
	transition-property: opacity;
  	transition-duration: 200ms;
  	transition-timing-function: ease;
}

.owl-theme .owl-dots .owl-dot.active span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background: #f27d21;
	border:#f27d21 solid 1px;
}

@media(max-width: 769px){

.owl-theme .owl-controls{position:relative;margin-top:20px;}
.owl-theme .owl-controls .owl-nav{display:none;opacity:0;}

.owl-theme .owl-dots .owl-dot{
	display:inline-block;
}
.owl-theme .owl-dots{position:absolute;top:136%;width:100%;}

.stitches .owl-theme .owl-dots .owl-dot{
	display:none;
}

.stitches .owl-theme .owl-controls{display:none;}
}
@media(max-width: 640px){

.owl-theme .owl-controls{position:relative;margin-top:20px;}
.owl-theme .owl-controls .owl-nav{display:none;opacity:0;}

.owl-theme .owl-dots .owl-dot{
	display:inline-block;
}

}