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

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	/* padding: 3px 10px; */
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #000;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity:0;
	line-height: 44px;
	width: 35px;
	height: 35px;
	text-align: center;
	transition: all 600ms ease-in-out 0s;
	-webkit-transition: all 600ms ease-in-out 0s;	
	-moz-transition: all 600ms ease-in-out 0s;
	-o-transition: all 600ms ease-in-out 0s;
	-ms-transition: all 600ms ease-in-out 0s;
}
.owl-theme:hover .owl-buttons div{
	opacity: 1;
}
@media(max-width:767px){
.owl-theme .owl-controls .owl-buttons div{
	opacity: 1;
}
}
/* 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{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background: #00b9f7;
	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: block;
	width: 12px;
	height: 12px;
	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;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* 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-theme .owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}


/*--------------------------CUSTOM CODE ---------------------------*/

.owl-theme .owl-controls{
  position: absolute;
  right: 10px;
  top: -52px;
  background: #fff;
  	border: 1px solid #e9e9e9;
	padding: 0 9px;
	border-radius: 25px;
	-webkit-border-radius: 25px;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	position: relative;
	display: inline-block;
	vertical-align: top;
	opacity: 1;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	margin: 0;
	border: 0;
	width: 25px;
	height: 30px;
	line-height: 30px;
	font-weight: normal;
	font-size: 0;
	padding: 0;
	color: #a9a9a9;
	background: rgba(255,255,255,0.75);
	border-radius: 100%;
	  text-align: center;
  cursor: pointer;
    z-index: 10;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.owl-theme:hover .owl-buttons div{
	opacity: 1;
}

.owl-theme .owl-controls .owl-buttons div i{
 display: none;
}

/* 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{
	background: transparent;
	color: #ffd54c;
}



/* owl carousel */

.owl-carousel.owl-theme .owl-controls {
	margin: 0;
}

.owl-carousel.owl-theme .owl-controls .owl-buttons div:before {
	font-family: "Ionicons";
	display: inline-block;
	vertical-align: top;
	font-size: 21px;
	width: 100%;
	line-height: inherit;
}
.owl-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: 0;
}
.owl-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev:before {
  content: "\f3d5";
}
.owl-carousel.owl-theme .owl-controls .owl-buttons div.owl-next {
  right: 0;
}
.owl-carousel.owl-theme .owl-controls .owl-buttons div.owl-next:before {
  content: "\f3d6";
}
.owl-carousel.owl-theme:hover .owl-controls .owl-buttons div.owl-prev {
  left: -10px;
}
.owl-carousel.owl-theme:hover .owl-controls .owl-buttons div.owl-next {
  right: -10px;
}
.owl-carousel.owl-theme .owl-controls .owl-buttons div:hover {
background: transparent;
	color: #ffd54c;
}
/*--------------*/
