/**
 * 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 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-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

    .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;
}

    .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;
            background: #D6D6D6;
            display: block;
            -webkit-backface-visibility: visible;
            transition: opacity 200ms ease;
            border-radius: 30px;
        }

        .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
            background: #869791;
        }


/* new----------------- */



/*dots border ---------------------------------------------------*/

.owl-theme .owl-dot {
    vertical-align: middle;
}

    .owl-theme .owl-dots .owl-dot span {
        background: transparent !important;
        filter: none;
        opacity: 1;
        border-radius: 0;
        border: 2px solid #7c7c7c;
        margin: 1px 2px 5px;
        width: 18px;
        height: 18px;
    }

.owl-theme .owl-dot.active span,
.owl-theme .owl-dot:hover span {
    border-color: #0ff;
}


/* new  remove chrome focus border*/

.owl-theme .owl-dots .owl-dot:focus {
    outline: 0px solid transparent;
}

/*-------------------------------------  position from top and bottom ?*/
.owl-nav {
    position: relative;
}




.owl-theme  .owl-nav div {
    opacity: initial;
    background: initial;
    margin: initial;
    padding: initial;
    font-size: initial;
    border-radius: 0;
}



.owl-theme .owl-dots {
    padding: 0 35px;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
   
}

.owl-theme .owl-nav {
    padding: 0 35px;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
  
}
/*------------------------------------- ? end */

/* arrows clicable area and  top position */

.owl-nav > .owl-prev,
.owl-nav > .owl-next {
   
    top: 10px;
    width: 25%;
    height: 100%;
}

.indicators .indicator {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    z-index:9999;
}

.owl-nav > .owl-prev,
.owl-nav > .owl-next {
    width: auto !important;
    padding: 0 18px !important;
}



 

.owl-nav > .owl-prev.disabled,
.owl-nav > .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}

.owl-nav > .owl-prev:after,
.owl-nav > .owl-next:after {
    background: transparent url('sprite.png') -62px 0px no-repeat;
    position: absolute;
    top: 50%;
    width: 12px;
    height: 24px;
    margin-top: -12px;
    margin-left: 10px;
    margin-right: 10px;
    content: '';
    -webkit-transition: left 200ms ease-in, right 200ms ease-in;
    -o-transition: left 200ms ease-in, right 200ms ease-in;
    transition: left 200ms ease-in, right 200ms ease-in;
}

.owl-nav > button.owl-prev:hover,
.owl-nav > button.owl-prev.owl-next:hover,
.indicators .indicator:hover {
    cursor: pointer;
}
   
/* left indicator */

.owl-nav > button.owl-prev,
.owl-nav > button.owl-prev:after {
    position: absolute;
    left: 0;
}

.owl-nav > .owl-prev:after {
    background-position: -62px 0px;
}

@media (min-width: 768px) {
    .owl-nav > .owl-prev:hover:after {
        background-position: -74px 0px;
        left: 10px;
    }
}


    /* right indicator */
    .owl-nav > button.owl-next,
    .owl-nav > button.owl-next:after {
        position: absolute;
        right: 0;
    }


    .owl-nav > .owl-next:after {
        background-position: -100px 0px;
    }

    @media (min-width: 768px) {

        .owl-nav > .owl-next:hover:after {
            background-position: -86px 0px;
            right: 10px;
        }
    }


    /* new clicable area bigger */

    .owl-nav > .owl-prev::before {
        position: absolute;
        content: '';
        left: 0;
        padding: 30px 30px;
        margin: -30px -10px;
        z-index: 40;
    }

    /*   new clicable area bigger */
    .owl-nav > .owl-next:before {
        position: absolute;
        content: '';
        right: 0;
        padding: 30px 30px;
        margin: -30px -10px;
        z-index: 40;
    }


.owl-nav > .owl-prev:focus, .owl-nav > .owl-next:focus {
    outline: 0px solid transparent;
}

 
 

