/*
*owl carousel owl demo theme
*www.mycodes.net
*/
.owl-theme .owl-controls {
    text-align: center;
    margin-bottom: 20px;
}
/* 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: 0;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    filter: alpha(opacity=100);/*ie7 fix*/
    opacity: 1;
}

/* 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: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: alpha(opacity=50);/*ie7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #163579;
}
.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:  no-repeat center center
}
