/**
 * 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;
    position: absolute;
    top: calc(50% - 50px);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 30px !important;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    background: #772dff;
    display: inline-block;
    cursor: pointer;
}

@media screen and (max-width: 1195px) {
    .owl-theme .owl-nav {
        top: unset !important;
        bottom: -5px !important;
    }
    .owl-theme .owl-nav [class*='owl-'] {
        background: none !important;
    }
}

.owl-nav .owl-prev {
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
    width: 70px;
    padding-right: 30px !important;
}

.owl-nav .owl-next {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    width: 70px;
    padding-left: 30px !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.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;
}

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

.owl-theme .owl-dots .owl-dot span {
    width: 50px;
    height: 5px;
    margin: 5px 3px;
    background: #4F4F53;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    transform: skew(-20deg);
}

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