/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-theme .owl-dots,.owl-theme .owl-nav {
    text-align: right;
    webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots {
    margin: 20px 0 0 0;
    text-align: center !important;
}
.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    top: -67px;
}
.owl-theme .owl-nav [class*=owl-] {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    color: #666;
    background: #e4e4e4;
    cursor: pointer;
    display: inline-block;
    font-size: 22px;
    margin: 0 0 0 3px;
    padding: 0;
    text-align: center;
    transition: 0.2s;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    text-decoration: none;
    transition: 0.2s;
    background: #d9d9d9;
}
.owl-theme .owl-nav .disabled {
    cursor: default;
    opacity: .4;
}
.owl-theme .owl-nav .disabled:hover {
    background: #d9d9d9;
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
    background: #D6D6D6;
    border-radius: 30px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    transition: opacity .2s ease;
    webkit-backface-visibility: visible;
    width: 10px;
}
.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}
@media (max-width:767px) {
    .owl-theme .owl-nav {
        top: -47px;
    }
}