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

#owl-demo .owl-controls{
    display: none !important;
    position: relative;
    text-align: center;
    right: 0;
    left: 0;
}

#owl-demo2 .owl-buttons .owl-prev{
    position: absolute;
    top: 40%;
    left: 20px;
}

#owl-demo2 .owl-buttons .owl-next{
    position: absolute;
    top: 40%;
    right: 20px;
}


@media (min-width: 768px) and (max-width: 991px){
    #owl-demo .owl-next{
        margin-right: -20px;
    }

    #owl-demo .owl-prev{
        margin-left: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px){
    #owl-demo .owl-next{
        margin-right: -23px;
    }

    #owl-demo .owl-prev{
        margin-left: -23px;
    }
}


/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
    display: inline-block;
    *display: inline;/*IE7 life-saver */
    margin: 5px;
}
/* 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: 10px;
    height: 10px;
    margin: 5px 7px;
    filter: Alpha(Opacity=40);/*IE7 fix*/
    opacity: 0.7;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #fff;
    text-align: center;
}

.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;
    background: #fff;
    width: 12px;
    height: 12px;
    text-align: center;
}


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


@media (max-width: 767px){
    #owl-demo .owl-controls {
        margin-top: 0;
        position: relative;
        left: 0;
        float: none;
    }

    #owl-demo2 .owl-buttons .owl-prev{
        left: 0;
    }

    #owl-demo2 .owl-buttons .owl-next{
        right: 0;
    }
}