/*
* 	Owl Carousel Theme for Boxmart
*	v1
*/

.owl-theme .owl-controls{
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 15px;
    text-align: center;
}
/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
    color: #FFF;
    display: inline-block;
    zoom: 1;
    *display: inline;/*IE7 life-saver */
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    filter: Alpha(Opacity=50);/*IE7 fix*/
    opacity: 0.5;
}
/* 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-theme .owl-controls .owl-page span{
    display: block;
    width: 40px;
    height: 15px;
    margin: 3px 6px;
    background: #e4e4e4;
	box-shadow: inset 0px 2px 8px black;
	box-shadow: inset 0px 2px 8px rgba(0,0,0,0.5);
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #00488c;
    box-shadow: none;
}
@media only screen and (max-width: 770px) {
    .owl-theme .owl-controls{
        bottom: 5px;
    }
}
@media only screen and (max-width: 600px) {
    .owl-theme:not(.mini-products-list) .owl-controls {
        display: none;
    }
    .owl-theme .owl-controls .owl-page span{
        width: 8px;
        height: 8px;
        margin: 2px;
        background: #000;
    }
}
/* 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;
}

		.featured-products-wrapper-mobile-imgs .owl-controls {display: block !important; top: 0;}
		.featured-products-wrapper-mobile-imgs .owl-controls .owl-prev {position: absolute; left: -25px; top: 30%; width: 30px; height: 30px; font-size: 30px !important; line-height: 20px;}
		.featured-products-wrapper-mobile-imgs .owl-controls .owl-next {position: absolute; right: -25px; top: 30%; width: 30px; height: 30px; font-size: 30px  !important; line-height: 20px;}