/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-dots,
.owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    left: 0;
    width: 100%;
}
.owl-dots {
    bottom: 38px;
}
.owl-nav {
    top: 50%;
    margin-top: -30px;
}
.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.5;
    cursor: default;
}
.owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.owl-dots .owl-dot span {
    width: 30px;
    height: 3px;
    margin: 5px 7px;
    background: #ffffff57;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #ffffff;
}
.owl-prev,
.owl-next {
    position: absolute;
}
.owl-prev {
    left: 25px;
}
.owl-next {
    right: 25px;
}
.owl-prev span,
.owl-next span {
    position: relative;
    font-size: 0px;
}
.owl-prev span:after,
.owl-next span:after {
    position: absolute;
    top: 0;
    font-family: "fontAwesome";
    font-size: 32px;
    opacity: 0.5;
    color: #fff;
}
.owl-prev:hover span:after,
.owl-next:hover span:after {
    opacity: 1;
}
.owl-prev span:after {
    content: "\f104";
    left: 0;
}
.owl-next span:after {
    content: "\f105";
    right: 0;
}
