/*
* 	Owl Carousel Theme 
*	v1.3.2
*/

/* Control Position */

.owl-controls {

}
/* Styling Next and Prev buttons */

.owl-controls .owl-buttons {
    padding: 0px;
    position: relative;
}
.owl-controls .owl-buttons div, 
.customNavigation .owl-prev, 
.customNavigation .owl-next {
    color: #FFF;
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    height: 40px;
    width: 40px;
    font-size: 40px;
    line-height: 40px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    color: #CA3D3B;
    text-align: center;
}
.customNavigation .owl-prev{
   position: absolute;
   right: 48px;
   margin-top: -65px;
    
}
.customNavigation .owl-next{
   position: absolute;
   right:10px;
   margin-top: -65px;
}

/* Center Custom Nav on Mobile */


@media (max-width: 768px) {
   .customNavigation .owl-prev{
   position:relative;
   right:auto;
   margin-top:-10px;
    
}
.customNavigation .owl-next{
   position: relative;
   right:auto;
   margin-top: -10px;
}
}
/* end center on Mobile */


.owl-controls .owl-buttons .owl-prev:before {
    font-family: "FontAwesome";
    display: inline-block;
    content: '\f137';
 
}
.owl-controls .owl-buttons .owl-next:before {
    content: '\f138';
    display: inline-block;
    font-family: "FontAwesome";
}
.owl-controls .owl-buttons .owl-next {}
/* Clickable class fix problem with hover on touch devices */

/* Use it for non-touch hover action */

.owl-controls.clickable .owl-buttons div:hover,
.customNavigation .owl-prev:hover, 
.customNavigation .owl-next:hover 
{
    color: #A00F0E;
    text-decoration: none;
    cursor: pointer;
}
/* Styling Pagination*/
.owl-pagination{
    border-top: 1px solid #eee;
    padding: 20px 0px 0px;
    margin-top: 15px;
    text-align: center;
}
.owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    text-align: center;
}
.owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=70);
    /*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #09253B;
}
.owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
    background: #09253B;
}
/* If PaginationNumbers is true */

.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
}