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

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
	border-bottom: 2px solid #eaeaea;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .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;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-carousel .owl-item img{ vertical-align: middle; }
.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);
}

.owl-controls .owl-buttons div { display: inline-block; width: 64px; height: 56px; font-size: 0;}
.owl-controls .owl-buttons .owl-prev{ background: url("../images/ico-prev.png") no-repeat;}
.owl-controls .owl-buttons .owl-next{ background: url("../images/ico-next.png") no-repeat;}

.owl-controls .owl-pagination .owl-page{ width: 16px; height: 16px; background: #0e56a4; border-radius: 50%; display: inline-block;  opacity: 0.1;    filter: alpha(opacity=10); margin-left: 7px; }
.owl-controls .owl-pagination .owl-page.active { opacity: 1;    filter: alpha(opacity=100); }

.owl-controls .owl-buttons .owl-prev{ position: absolute; top: 0; bottom: 0; height: 56px; margin: auto; left: 0;}
.owl-controls .owl-buttons .owl-next{ position: absolute; top: 0; bottom: 0; height: 56px; margin: auto; right: 0;}

.owl-controls .owl-pagination { position: absolute; bottom: 10px; left: 0; right: 0; margin: 0 auto; text-align: center;}

/* mouse grab icon */
/*.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}*/

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .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);
}



@media only screen and (max-width: 1023px){ 
	.owl-controls .owl-buttons{ display: none;}
	.owl-controls .owl-pagination .owl-page{ width: 12px; height: 12px; margin-left: 5px; }

}