/**
 * 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: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    top: 30%;
    left: 0;
    margin: 0;
    right: 0;
    height: 0;
    text-align: left;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    position: absolute;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0;
}
.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.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;
    margin-top: 1rem;
}

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

.owl-theme .owl-dots .owl-dot span {
    width: 100px;
    height: 6px;
    margin: 5px 7px;
    background: #fff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
}

.owl-theme .owl-dots .owl-dot span {
    background: #fff;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 80px;
    height: 6px;
    padding: 0;
    margin-right: 6px;
    margin-left: 6px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    opacity: 1;
    transition: opacity 0.6s ease;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #06C167;
}
.owl-theme .owl-dots button.owl-dot:focus {
    background-color: inherit;
}

.owl-prev span, .owl-next span {
    display: none;
}
.owl-carousel .owl-stage {
    height: 100%;
    max-height: 100%;
}
.owl-carousel .owl-item {
    height: 100%;
    max-height: 100%;
}
.owl-stage-outer {
    max-height: 100%;
    height: 100%;
}
.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}
.owl-carousel .owl-item .item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 55px;
    height: 55px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fff;
    border-radius: 0;
    background-size: 25%;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.29);
}
.owl-carousel .owl-nav button.owl-prev {
    left: -26px;
    background-image: url("../../images/icons/arrow_left.svg");
}
.owl-carousel .owl-nav button.owl-next {
    right: -26px;
    background-image: url("../../images/icons/arrow_right.svg");
}
.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #06C167;
}
.owl-carousel .owl-nav button.owl-prev:hover {
    background-image: url("../../images/icons/arrow_left_white.svg");
}
.owl-carousel .owl-nav button.owl-next:hover {
    background-image: url("../../images/icons/arrow_right_white.svg");
}

@media screen and (max-width: 600px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: -16px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -16px;
    }
    .owl-dots {
        display: none;
    }
}