/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	position: relative;
}
@media (max-width: 767px) {
  .owl-theme .owl-controls .owl-buttons {
    display: none;
  }
}
.owl-theme .owl-controls .owl-buttons {

}
.owl-theme .owl-controls .owl-buttons .owl-prev {
	position: absolute;
	left:-27px;
	bottom:267px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
	position: absolute;
	right:-27px;
	bottom:267px;
}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div{
	color: #000;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	/* margin: 5px;
	padding: 5px 15px; */
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	/* border: 1px solid #28bfa1; */
	
			-moz-transition: all 0.2s;
			  -o-transition: all 0.2s;
		 -webkit-transition: all 0.2s;
		     -ms-transition: all 0.2s;
				 transition: all 0.2s;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
/*
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	color:#fff;
	background:#28bfa1;
	text-decoration: none;
}
.owl-theme .owl-controls .owl-buttons div:hover{
	color:#fff;
	background:#28bfa1;
	text-decoration: none;
}
*/
/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: inline-block;
	width:35px;
	height:35px;
	margin: 4px 5px;
	opacity: 1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: transparent;
	border: 3px solid #a3a3a3;
	
	 -webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	 -ms-transition: all ease-in-out 0.3s;
	 -o-transition: all ease-in-out 0.3s;
	  transition: all ease-in-out 0.3s;
}

.owl-theme .owl-controls.clickable .owl-page:hover span{
	background:transparent;
	border:3px solid #666;
}
.owl-theme .owl-controls .owl-page.active span{
	border:3px solid #000;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* custom */

.owl-pagination {
	position: relative;
	bottom: -10px;
	counter-reset:numb;
	text-align: left;
}
.owl-pagination .owl-page{
	display: inline-block;
	position: relative;
	color:#a3a3a3;
}
.owl-pagination .owl-page.active{
	display: inline-block;
	position: relative;
	color:#000;
}
.owl-pagination .owl-page:before{
	position:absolute;
	top:11px;
	left:19px;
	content: counter(numb);
	counter-increment:numb;
	font-size: 14px;
	font-family:'RalewayBold';
}
@media (max-width: 991px){
	.owl-theme .owl-controls .owl-buttons .owl-next,
	.owl-theme .owl-controls .owl-buttons .owl-prev
	{
		bottom:189px;
	}
	.owl-pagination{
		text-align: center;
	}
}