/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	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-'] {
        color: #4BADAF;
        font-size: .875rem;
        margin: 5px;
        padding: 2px 10px;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
        border: 1px solid #4BADAF;
    }

        .owl-theme .owl-nav [class*='owl-']:hover {
            background: #4BADAF;
            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 {
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 5px 7px;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity 200ms ease;
            border-radius: 30px;
            border: 1px solid #4BADAF;
        }

        .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
            background: #4BADAF;
        }

.owl-theme .owl-item img {
    width: auto;
    max-height: 250px;
    border: 1px solid #2A6E92
}

.owl-theme .owl-item {
    max-height: 280px;
}

    .owl-theme .active {
        overflow-y: auto;
        overflow-x: hidden;
    }

.owl-theme .owl-item::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

    .owl-theme .owl-item::-webkit-scrollbar-thumb {
        background-color: #2A6E92;
    }

    .owl-theme .owl-item::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #F5F5F5;
    }

.owl-carousel .owl-nav.disabled {
    display: block;
    visibility: hidden;
}