/**
 * Owl Carousel v2.3.4
 * 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-nav {
margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent; 
}
.owl-nav [class*='owl-'] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px;
}
.owl-nav [class*='owl-']:hover {
background: #869791;
color: #FFF;
text-decoration: none;
}
.owl-nav .disabled {
opacity: 0.3;
cursor: default;
}
/*dots*/
.owl-dots {
position:absolute;
left:18px;
bottom:16px;
text-align:left;
-webkit-tap-highlight-color: transparent;
height:16px;
}
.owl-dots button{height:16px; margin:0;}
.owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline;
} 
.owl-dots .owl-dot span {
-webkit-backface-visibility: visible;
display: block;
width: 6px;
height: 16px;
margin: 0 5px 0 0;
background: #fff;
transition:0.5s ease;
vertical-align:top;
padding:0!important;
opacity:0.5;
}
.owl-dots .owl-dot:hover span {
opacity:0.5;
}
.owl-dots .owl-dot.active span{
opacity:1;
}

/*custom*/
.head .owl-dots{left:auto; right:30px; bottom:34px;}
.head .owl-dots .owl-dot span{height:22px; width:8px;}

/*responsive*/
@media screen and (max-width:750px){
.owl-dots{left:10px; bottom:9px;}
.head .owl-dots{left:auto; right:16px; bottom:20px;}
.head .owl-dots .owl-dot span{height:18px; width:6px;}
}