/**
 * 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;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

    .owl-theme .owl-nav [class*='owl-'] {
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: auto;
        background: #255e71 !important;
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
        border-radius: 2.5rem;
        transition: 0.5s all;
        opacity: 1;
        color: #fff !important;
    }

.owl-theme.nav-white .owl-nav [class*='owl-'] {
    background: #fff !important;
    color: #255e71 !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    text-decoration: none;
    background: #c59f6e !important;
    color: #fff !important;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.35;
    cursor: default;
}

.owl-theme.item-has-title .owl-nav [class*='owl-'] {
    top: calc(50% + 30px);
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
    right: -1.25rem;
}

    .owl-carousel .owl-nav button.owl-next span {
        position: relative;
        visibility: hidden;
        display: inline-block;
    }

        .owl-carousel .owl-nav button.owl-next span:after {
            position: absolute;
            visibility: visible;
            content: "\f135";
            font-weight: 900;
            font-size: 1.5rem;
            line-height: 1;
            left: -0.5rem;
            top: 0rem;
            font-family: bootstrap-icons !important;
            font-style: normal;
            font-weight: normal !important;
            font-variant: normal;
        }

.owl-carousel .owl-nav button.owl-prev {
    left: -1.25rem;
}

    .owl-carousel .owl-nav button.owl-prev span {
        position: relative;
        visibility: hidden;
        display: inline-block;
    }

        .owl-carousel .owl-nav button.owl-prev span:after {
            position: absolute;
            visibility: visible;
            content: "\f12c";
            font-weight: 900;
            font-size: 1.5rem;
            line-height: 1;
            left: -0.5rem;
            top: 0rem;
            font-family: bootstrap-icons !important;
            font-style: normal;
            font-weight: normal !important;
            font-variant: normal;
        }

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme.nav-dark .owl-nav [class*='owl-'] {
    background: rgba(0,0,0,.65) !important;
    color: #fff;
}

    .owl-theme.nav-dark .owl-nav [class*='owl-']:hover {
        background: rgb(64 120 224) !important;
        color: #fff;
    }

    .owl-theme.nav-dark .owl-nav [class*='owl-'].disabled {
        opacity: 0.35;
        cursor: default;
        background: rgba(0,0,0,.65) !important;
        color: #fff;
    }

.owl-theme.nav-primary .owl-nav [class*='owl-'] {
    background: rgb(64 120 224) !important;
    color: #fff;
}

    .owl-theme.nav-primary .owl-nav [class*='owl-']:hover {
        background: rgba(255,255,255,.9) !important;
        color: #212529;
    }

    .owl-theme.nav-primary .owl-nav [class*='owl-'].disabled {
        opacity: 0.35;
        cursor: default;
        background: rgb(64 120 224) !important;
        color: #fff;
    }

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: all 0.5s;
    line-height: 1;
    bottom: -2.5rem;
}

.owl-theme.dot-on-slider .owl-dots {
    bottom: 1.5rem;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
    pointer-events: auto;
    transition: all 0.5s;
}

    .owl-theme .owl-dots .owl-dot span {
        background: #ced4da;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 7px;
        width: 14px;
        height: 14px;
        margin-right: 3px;
        margin-left: 3px;
        transition: all 0.5s;
    }

    .owl-theme .owl-dots .owl-dot.active span {
        background: #255e71;
    }

.owl-theme.nav-white .owl-dots .owl-dot.active span {
    background: #c59f6e;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #c59f6e;
}
