/**
 * 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: -48px;
}
.owl-theme .owl-nav [class*=owl-] {
    border-radius: 4px 0 0 4px;
    color: #aaaaaa;
    cursor: pointer;
    display: inline-block;
    font-size: 25px;
    margin: 0 0 0 -1px;
    padding: 0 15px;
    text-align: center;
    transition: 0.2s;
}
.owl-theme .owl-nav > .owl-prev {
    border-radius: 4px 0 0 4px;
}
.owl-theme .owl-nav >  .owl-next {
    border-radius: 0 4px 4px 0;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}
.owl-theme .owl-nav .disabled {
    cursor: default;
    opacity: .4;
}
.owl-theme .owl-nav .disabled:hover {
    background: none;
    color: #666;
}
.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;
}