/*
* 	Owl Carousel Themes
*/
.owl-theme .owl-controls{
	margin-top: 0;
	text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div{
	width: 15px;
    height: 100%;
    color: #c4261d;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	font-size: 12px;
	background: #ffffff;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}
.owl-theme .owl-controls .owl-buttons div i.fa {
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7.5px;
}
/* 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{
	text-decoration: none;
    color: #323232;
    /*background: #d3d8db;*/
}

/* 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: 6px;
	height: 6px;
	margin: 5px 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #8c8c8c;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #c4261d;
}

/* 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(/plugins/owl-carousel/AjaxLoader.gif) no-repeat center center
}

/*
 * Theme 1
 */
.owl_theme1 {}
.owl_theme1 .owl-buttons {width: 100%;position: absolute;left: 0;top: 0;z-index: 100;}
.owl_theme1 .owl-buttons .owl-prev {position: absolute;left: -15px;top: 0;visibility: hidden;}
.owl_theme1 .owl-buttons .owl-next {position: absolute;right: -15px;top: 0;visibility: hidden;}
/*.owl_theme1 .owl-buttons {display: none;}*/
@media all and (min-width: 768px) {
    .owl_theme1 .owl-buttons {display: none;}
}
@media all and (min-width: 992px) {
    .owl_theme1 .owl-carousel {display: block;width: auto;}
}