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

.owl-theme {
	/* background: blue; */
	}
	
.owl-controls {
	/* background: green; */
	}

.owl-theme .owl-controls{
	margin-top: 0;
	text-align: center;
}
.owl-buttons {
	/* background: orange; */
	position: relative;
	}
/* 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: #869791;
	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;
}




/* Navigation */

.home-2 .owl-theme .owl-controls{
	position:absolute;
	left:50%;
	top:-65px;
	width:100%;
	padding:0 15px;
	text-align: right;
	transform:translateX(-50%);
	-o-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.home-2 .testimonials .owl-theme .owl-controls{top:-50px;} /* aucun effet -> normal concerne testimonial*/

.owl-theme .owl-controls .owl-buttons div {
	position:absolute;
	z-index:1;
	display:inline-block;
	width:40px;
	height:40px;
	margin:0 0 0 5px;
	text-align:center;
	border:1px solid #d9d9d9;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
	/*
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	-ms-border-radius:50%;
	-o-border-radius:50%;
	border-radius:50%;			
	*/
}
.owl-theme .owl-controls .owl-buttons div:hover {z-index:2; border-color:rgb(170,170,170); background: rgb(240,240,240);}
.owl-theme .owl-controls .owl-buttons div:before {
	position:absolute;
	left:0;
	top:0;
	width:39px;
	height:39px;
	font-family: fontello;
	text-align:center;
	line-height:40px;
	text-align:center;
	font-size:30px;
	color:#000;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.owl-theme .owl-controls .owl-buttons .owl-prev:before {content: "\e877"; margin-right:2px}
.owl-theme .owl-controls .owl-buttons .owl-next:before {content: "\e878";}
.owl-theme .owl-controls .owl-buttons div:hover:before {color:rgb(208,20,20);}

.owl-prev {
	border: solid 3px black;
	position: absolute;
	left: -50px;
	top: -170px;
	}

.owl-next {
	border: solid 3px black;
	position: absolute;
	right: -50px;
	top: -170px;
	}

/* *****************************   fin button next prev ***************** */




/* 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{
	margin: 0 4px;
	display: block;
	text-indent: -9999px;
	height: 8px;
	width: 8px;
	background: #e4e4e4;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	z-index:99999;
    -webkit-transition:all 0.2s linear;
    -moz-transition:all 0.2s linear;
    -o-transition:all 0.2s linear;
    transition:all 0.2s linear;	
    /*-webkit-transform:rotate(45deg);
       -moz-transform:rotate(45deg);
         -o-transform:rotate(45deg);
            transform:rotate(45deg);*/
}

.owl-pagination span{
	text-align:center;
}

.owl-theme .owl-controls .owl-page.active span{
	background: #1fa67a;
}

.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #1fa67a;
}

/* 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
}