/**
 * 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-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
    .owl-theme .owl-nav [class*='owl-'] {
        display: inline-block !important;
        width: 48px !important;
        height: 48px !important;
        text-align: center !important;
        background: #0006 !important;
        border-radius: 50%;
        
    }

    .owl-theme .owl-nav .disabled {
        opacity: 0.5 !important;
        cursor: default !important;
    }

        .owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 10px !important;
        }

.owl-theme .owl-dots {
    text-align: center !important;
    -webkit-tap-highlight-color: transparent !important;
}
    .owl-theme .owl-dots .owl-dot {
        display: inline-block !important;
        zoom: 1 !important;
        *display: inline !important;
    }
        .owl-theme .owl-dots .owl-dot span {
            width: 10px !important;
            height: 10px !important;
            margin: 5px 7px !important;
            background: #D6D6D6 !important;
            display: block !important;
            -webkit-backface-visibility: visible !important;
            transition: opacity 200ms ease !important;
            border-radius: 30px !important;
        }
        .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
            background: #869791 !important;
        }


.owl-next {
    position: absolute !important;
    top: 40% !important;
    right: -25px !important;
    padding: 7px !important;
}



    .owl-next:before {
        content: url("../slider/next.svg") !important;
    }

    .owl-prev {
        position: absolute !important;
        top: 40% !important;
        left: -25px !important;
        padding: 7px !important;
    }

        .owl-prev:before {
            content: url("../slider/back.svg") !important;
        }

        .owl-next:hover, .owl-prev:hover {
            background: #000000b3 !important;
        }

@media only screen and (max-width: 991px) {
    .owl-next {
        right: -10px !important;
    }

    .owl-prev {
        left: -10px !important;
    }
}