/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-carousel .owl-wrapper-outer.autoHeight{
    z-index: 0;
}

.owl-theme .owl-controls{
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: right;
    z-index: 1000;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
    color: #FFF;
    display: inline-block;
    zoom: 1;
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 30px;
    background: #869791;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
    text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
    display: inline-block;
}
.owl-theme .owl-controls .owl-page span{
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 20px;
    /*background: #fff;*/
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

.owl-theme .owl-controls .owl-page.active span{
    /*background-color: #f34b26;*/
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{

}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
    min-height: 150px;
    background: url(AjaxLoader.gif) no-repeat center center
}


/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

@media screen and (max-width:768px){
    .owl-theme .owl-controls .owl-page span{
        display: none;
    }
}