/* 
 *  Brands Carousel Theme
 */

.brands_carousel_theme {
    padding-left: 50px;
    padding-right: 50px;
}
.brands_carousel_theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -14px;
}
.brands_carousel_theme .owl-nav button[class*='owl-'] {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-align: center;
    margin: 0;
    padding: 0;

    font-size: 14px;
    line-height: 24px;
    width: 28px;
    height: 28px;

    color: #ddd;
    background: transparent;

    border: 2px solid #ddd;
    
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.brands_carousel_theme .owl-nav button.owl-prev {
    left: 0;
}
.brands_carousel_theme .owl-nav button.owl-next {
    right: 0;
}
.brands_carousel_theme .owl-nav button[class*='owl-']:hover {
    color: #000;
    border-color: #000;
    background: transparent;
    text-decoration: none;
}
.brands_carousel_theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.brands_carousel_theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
}
.brands_carousel_theme .owl-dots {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.brands_carousel_theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.brands_carousel_theme .owl-dots .owl-dot span {
    width: 30px;
    height: 6px;
    margin: 10px 5px;
    background: #ddd;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.brands_carousel_theme .owl-dots .owl-dot.active span,
.brands_carousel_theme .owl-dots .owl-dot:hover span {
    background: #000;
}
