/* 
 * 	Default theme - Owl Carousel CSS File
 *	v2.0.0
 */
/* 代码整理：懒人之家 www.lanrenzhijia.com */
.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-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
}*/

.owl-theme .owl-controls .owl-nav .owl-left, .owl-theme .owl-controls .owl-nav .owl-right {
	width: 30px;
	height: 30px;
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0 20px;
	cursor: pointer;
}
.owl-theme .owl-controls .owl-nav .owl-left {
	background-image: url('../images/svg/owl-left.svg');
}
.owl-theme .owl-controls .owl-nav .owl-right {
	background-image: url('../images/svg/owl-right.svg');
}

.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 */
}

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

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

