/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.xet-plus-owl .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.xet-plus-owl{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.xet-plus-owl .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.xet-plus-owl .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.xet-plus-owl .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.xet-plus-owl .owl-item{
	float: left;
	padding: 0 15px;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
}

/* fix */
.xet-plus-owl  .owl-wrapper,
.xet-plus-owl  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}







/*
* 	Owl Carousel Theme 
*/

.xet-plus-slider .owl-controls{
	text-align: center;
}
.xet-plus-slider .owl-pagination {
	margin-top: 30px;
}

/* Styling Next and Prev buttons */

.xet-plus-slider .owl-controls .owl-buttons div {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 100px;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin-top: -50px;
	font-size: 0;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
.xet-plus-slider .owl-controls .owl-buttons div.owl-next {
	right: 0;
	background: url(../img/next.png) no-repeat 50%;
	background-size: 40px;
}
.xet-plus-slider .owl-controls .owl-buttons div.owl-prev {
	left: 0;
	background: url(../img/prev.png) no-repeat 50%;
	background-size: 40px;
}


/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.xet-plus-slider .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.xet-plus-slider .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.xet-plus-slider .owl-controls .owl-page span{
	display: block;
	width: 8px;
	height: 8px;  
	margin: 0 5px;
	filter: Alpha(Opacity=40);/*IE7 fix*/
	opacity: 0.4;
	background-color: #fff;
	-webkit-border-radius:  50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}

.xet-plus-slider .owl-controls .owl-page.active span,
.xet-plus-slider .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background-color: #58c4a7;
}

