/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/
.owl-slider .item {
	position:relative;
}

.owl-theme .owl-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: -70px;
	right: 0;
}
/* Styling Next and Prev buttons */
.owl-controls.disabled {
    display: none;
}
.owl-controls {
    display: block;
}
.owl-theme .owl-controls  div.disabled {	
	cursor:default;	
}
.owl-theme .owl-controls div.owl-prev, 
.owl-theme .owl-controls div.owl-next {
	width: 38px;
	height: 38px;
	text-align: center;
	font-size: 20px;
	color: #000;
	cursor: pointer;
	background: #f7f8fa;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	border-radius: 50%;
	margin: 0 5px;
}
.owl-theme .owl-controls div.owl-prev{
	margin-left: 0;
}
.owl-theme .owl-controls div.owl-next{
	margin-right: 0;
}
.owl-theme .owl-controls  div.owl-prev:hover, 
.owl-theme .owl-controls  div.owl-next:hover{
	color: #fff;
	background: #2879FE;
}
.owl-theme .owl-controls  div.disabled:hover{
	cursor: default;
	opacity: 0.5;
	color: #2d3a4a;
	border-color: #2d3a4a;
	background: #f7f8fa;
}
.owl-dot > span {
    background: #bbb;
    display: inline-block;
    height: 8px;
	cursor: pointer;
    width: 8px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.owl-dots {
    position:absolute;
    width:100%;	
	text-align:center;
	bottom:10px;
}
.owl-dots .owl-dot {
    display: inline-block;
    margin: 0 2.5px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.owl-dot.active span {
    background: #fff none repeat scroll 0 0;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable  div:hover {
	filter:Alpha(Opacity=100);
	opacity:1;
	text-decoration:none
}
/* preloading images */
.owl-item.loading {
	min-height:150px;
	background:url(../images/AjaxLoader.gif) no-repeat center center
}
/* unique Next and Prev buttons */
.owl-theme.product-widgets .owl-controls {
	position:absolute;
	margin:0;
	padding:0 5px 0 0;
	right:0;
	top:0;
	background:#fff
}