/*
* 	Owl Carousel Owl Demo Theme 
*	v1.24
*/

.owl-theme .owl-controls{
    text-align: center;
    z-index: 2;
}
.owl-pagination {
    padding-top: 30px;
    position: relative;
    z-index: 999;
}
.owl-buttons {
    bottom: 0;
    position: absolute;
    width: 100%;
}
.owl-prev {
    left: 30px;
    position: absolute;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.owl-prev:before {
    color: #CDCDCD;
    content: "\f1ee";
    font-family: 'MaterialDesignIcons';
    font-size: 30px;
    line-height: 1em;
    position: relative;
    vertical-align: middle;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    z-index: 1;
    font-style: normal;
}
.owl-next {
    opacity: 0;
    position: absolute;
    right: 30px;
    top: 0;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.owl-next:before {
    color: #CDCDCD;
    content: "\f1ef";
    font-family: 'MaterialDesignIcons';
    font-size: 30px;
    position: relative;
    line-height: 1em;
    vertical-align: middle;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    z-index: 1;
    font-style: normal;
}

/* Hover effects */
.owl-carousel {

}
.owl-carousel:hover .owl-prev {
    opacity: 1;
}
.owl-carousel:hover .owl-next {
    opacity: 1;
}

/* Styling Next and Prev buttons */


.owl-prev,
.owl-next {
    color: inherit;
    position: absolute;
    font-size: 50px;
    -webkit-transition: all 500ms cubic-bezier(0.680, 0, 0.265, 1); /* older webkit */
    -webkit-transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -moz-transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -o-transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550); /* easeInOutBack */
    -webkit-transition-timing-function: cubic-bezier(0.680, 0, 0.265, 1); /* older webkit */
    -webkit-transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -moz-transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -o-transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550);
    transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550); /* easeInOutBack */
}

.owl-theme .owl-controls .owl-buttons div{
    color: inherit;
    display: inline-block;
    zoom: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    font-size: 0;
}
/* 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{
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}

/* Styling Pagination*/

/*.owl-theme .owl-controls .owl-page{*/
/*display: inline-block;*/
/*zoom: 1;*/
/**display: inline;*//*IE7 life-saver */
/*}*/
.owl-page {
    display: inline-block;
    margin: 10px;
    padding: 7px;
}
/*.owl-page > span:before {*/
/*background: none repeat scroll 0 0 #000;*/
/*content: "";*/
/*height: 1px;*/
/*left: 0;*/
/*opacity: 0.4;*/
/*position: absolute;*/
/*top: 0;*/
/*transform: rotate(45deg);*/
/*width: 25px;*/
/*}*/
.owl-page > span::after {
    background: none repeat scroll 0 0 #000;
    content: "";
    height: 3px;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 25px;
}
.owl-page.active > span::before {
    background: none repeat scroll 0 0 #000;
    content: "";
    height: 3px;
    left: -8px;
    opacity: 1;
    position: absolute;
    top: 0;
    transform: rotate(45deg);
    width: 15px;
}
.owl-page.active > span::after {
    background: none repeat scroll 0 0 #000;
    content: "";
    height: 3px;
    left: -8px;
    opacity: 1;
    position: absolute;
    top: 0;
    transform: rotate(-45deg);
    width: 15px;
}
.owl-theme .owl-controls .owl-page span {
    left: -7px;
    position: relative;
    top: 4px;
}
.owl-page.active > span {
    left: 6px !important;
    position: relative;
    top: 4px !important;
}


.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}

/* 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;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
    min-height: 150px;
    background: url(AjaxLoader.gif) no-repeat center center
}