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

.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: #333;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* 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;
	text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page.active:after{
	content: "";
		width: 0; 
		height: 0; 
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		
		border-top: 10px solid #b13838;
		position: absolute;
		bottom: -9px;
		margin-left: -10px;
		
	
}

.owl-theme .owl-controls .owl-page.active span{
	background: linear-gradient(to top, rgba(254, 108, 108, 0) 18.2%, rgba(240, 54, 94, 0.63) 100%) #b13838;
	color: white!important;
	border-radius: 2px;
}

.owl-buttons{
	margin-top: 10px;
}

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	width: 20%;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	position: relative;
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	margin: 0;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	border-radius: 0;
	background: #fff;
}
.owl-theme .owl-controls .owl-page::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
	bottom: -15px;
	
}
.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: 30px;
	box-sizing: border-box;
	width: auto;
	color: #000;
	padding: 2px 10px;
	font-size: 0.9em;
	font-weight: 800;
}
.owl-theme .owl-controls{
	position: absolute;
	top: -31px;
	margin: 0;
	padding: 0;
	left: -1px;
	right: -1px;
	border-left: 1px solid #ddd;
	border-top: 1px solid #999;
	border-right: 1px solid #ddd;
}
/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

.owl-prev{
	position: absolute;
	left: 5px;
	height: 20px;
}

.owl-next{
	position: absolute;
	right: 5px;	
	height: 20px;
}

.owl-carousel{
	border: 1px solid #ddd;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	margin-top: 30px;
}