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

    .owl-theme .owl-nav [class*=owl-] {
        width: 40px;
        height: 40px;
        line-height: 45px !important;
        margin: -23px 0 0;
        display: block;
        position: absolute;
        top: 50%;
        z-index: 10;
        cursor: pointer;
        text-align: center;
        transition: all .2s ease 0s;
        color: #262626;
        background-color: #ffffff;
        text-align: center;
        z-index: 200;
        border: 2px solid #ffffff;
        box-sizing: initial;
        opacity: 0;
    }

        .owl-theme .owl-nav [class*=owl-]:hover {
            background: rgba(255 255 255 / 50%);
            color: #FFF;
            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 {
    bottom: 10px;
    position: absolute;
    width: 100%;
    margin-bottom: 0px;
    padding-right: 30px;
    text-align: center;
}

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

    .owl-theme .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 5px 4px;
        background: #d8d8d8;
        display: block;
        -webkit-backface-visibility: visible;
        transition: all .5s ease;
        border-radius: 30px;
        box-shadow:1px 1px 3px rgba(0,0,0,.2);
    }

    .owl-theme .owl-dots .owl-dot.active span {width: 22px;}
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: #2459A9;
    }

.owl-carousel .owl-prev {
    left: 0px;
}
.owl-carousel .owl-next {
    right: 0px;
}

.owl-carousel:hover .owl-next {
    left: auto;
    right: 10px;
    opacity: 1;
}

.owl-carousel:hover .owl-prev {
    right: auto;
    left: 10px;
    opacity: 1;
}


