/**
 * 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 {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -17.5px;
    z-index: 10;
    height: 0;
}

    .owl-theme .owl-nav [class*='owl-'] {
        width: 35px;
        height: 35px;
        display: block;
        cursor: pointer;
        background: url(nav-icon-v1.svg) no-repeat center center !important;
    }


    .owl-theme .owl-nav .owl-prev {
        float: left;
        margin-left: 70px;
        transform: rotate(180deg);
    }

    .owl-theme .owl-nav .owl-next {
        float: right;
        margin-right: 70px;
    }

    .owl-theme .owl-nav span {
        display: none;
    }

    .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.v2 .owl-nav [class*='owl-'] {
    background-image: url(nav-icon-v2.svg) !important;
}

.owl-theme .owl-dots {
    display: flex;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    bottom: 0;
    z-index: 10;
    left: 0;
    right: 0;
}

    .owl-theme .owl-dots .owl-dot {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        margin: 0.5rem;
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            background-color: #fff;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity 200ms ease;
            border-radius: 30px;
            opacity: 0.6;
        }

        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            opacity: 1;
        }
