/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

 .no-js .owl-carousel, .owl-carousel.owl-loaded {
     display: block;
     text-align: center;
 }

.owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    right: 0;
}

.owl-prev {
    float: left;
    background-color: rgba(255,255,255,1);
    opacity: 0.1;
    padding: 3px 12px;
    border-radius: 0 5px 5px 0;
    transition: opacity 0.5s ease;
}

.owl-next {
    float: right;
    background-color: rgba(255,255,255,1);
    opacity: 0.2;
    padding: 3px 12px;
    border-radius: 5px 0 0 5px;
    transition: opacity 0.5s ease;
}

.owl-carousel:hover .owl-next, .owl-carousel:hover .owl-prev {
    opacity: 1;
}

.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;
    display: inline-block;
    padding: 0px 6px;
    border-radius: 15px;
    height: 10px;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 0 7px;
    background: #fff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border: 1px solid #111;
    border-radius: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #111;
}

