.owl-box {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: auto;
    display: block;
    text-align: center;
    overflow: hidden;
}

.owl-theme .owl-controls {
    margin-top: 0px;
    margin-bottom: 12px;
    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;
}

.owl_h1 {
    font-family: tahoma;
    font-size: 25px;
    line-height: 28px;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase;
    padding-top: 1rem;
}

.owl_h4 {
    font-family: arial;
    font-size: 17px;
    text-align: center;
    font-weight: normal;
}

.owl-nav {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.owl-prev {
    float: left;
    top: 120px;
    left: -15px;
    position: absolute;
}

.owl-next {
    float: left;
    top: 120px;
    right: -15px;
    position: absolute;
}


/* 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: 4px;
    margin: 5px 7px;
    opacity: 0.3;
    border-radius: 2px;
    background: #869791;
}

.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
}

@media only screen and (max-width: 768px) {
    .owl-box {
        width: 100%;
        max-width: 768px;
        height: auto;
        margin: auto;
        display: block;
        text-align: center;
    }
    .owl-nav {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .owl-prev {
        float: left;
        top: 120px;
        left: 1000px;
        position: absolute;
        display: none;
    }
    .owl-next {
        float: left;
        top: 120px;
        right: 1000px;
        position: absolute;
        display: none;
    }
}

@media only screen and (max-width: 640px) {
    .owl-theme .owl-controls .owl-page span {
        width: 16px;
        margin: 5px;
        border-radius: 1.5px;
    }
}

@media only screen and (max-width: 480px) {
    .owl-box {
        width: 100%;
        max-width: 480px;
        height: auto;
        margin: auto;
        display: block;
        text-align: center;
    }
    .owl-nav {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .owl-prev {
        float: left;
        top: 120px;
        left: 555px;
        position: absolute;
        display: none;
    }
    .owl-next {
        float: left;
        top: 120px;
        right: 555px;
        position: absolute;
        display: none;
    }
}