/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {}

.owl-theme .owl-nav [class*=owl-] {
    color: #1d1d1b;
    font-size: 14px;
    margin: 0px;
    padding: 4px 7px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
    top: 50%;
    position: absolute;
    left: 0px;
    font-size: 48px;
    line-height: 45px;
    margin-top: -30px;
    width: 40px;
    height: 40px;
}
.owl-theme .owl-nav .owl-next {
    left: initial;
    right: 0px;
    margin-right: -7px;
}
.owl-theme .owl-nav .owl-prev {
    margin-left: -30px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    /* background: #869791; */
    background: transparent!important;
    color: #2d2d2d;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.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 {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}
.owl-theme .owl-nav .owl-prev:before {
    content: "\e408";
    font-family: 'Material Icons';
}
.owl-theme .owl-nav .owl-next:before {
    content: "\e409";
    font-family: 'Material Icons';
}

/* media-queries */
@media (max-width: 991px) {
    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 20px;
        padding: 15px 0 7px;
    }
}