/**
 * Owl Carousel v2.3.3
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
//margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-nav [class*='owl-'] {
color: #ccc;
font-size: 28px;
font-weight:normal;
margin: 5px;
padding: 0 4px;
background: #f8f8f8;
display: inline-block;
cursor: pointer;
text-shadow:1px 1px 1px #fff;
}
.owl-theme .owl-nav [class*='owl-']:hover {
-webkit-box-shadow: inset 0px 0px 10px -3px rgba(0,0,0,0.1);
-moz-box-shadow: inset 0px 0px 10px -3px rgba(0,0,0,0.1);
box-shadow: inset 0px 0px 10px -3px rgba(0,0,0,0.1);
color:#254695;
text-decoration: none; 
}
.owl-theme .owl-nav .disabled {
opacity: 0.5;
cursor: default; 
}
.owl-theme .owl-nav.disabled + .owl-dots {
margin-top: 10px; 
}
.owl-theme .owl-dots {
text-align: center;
-webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline; 
}
.owl-theme .owl-dots .owl-dot span {
width: 15px;
height: 15px;
margin: 5px 7px;
background: none;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 200ms ease;
border-radius: 30px; 
border:2px solid #fff;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #0093dd; 
}
.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}
/* 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);
}