/*
 * 	v1.0.0
 * 	Core Owl Carousel CSS File
 */

/* clearfix */
.owl-carousel:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* display none until init */
.owl-carousel{
    display: none;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.owl-carousel .owl-wrapper{
    position: absolute;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -webkit-perspective: 1000;
}
.owl-carousel .owl-item{
    float: left;
}
.owl-controlls .owl-page,
.owl-controlls .owl-buttons{
    cursor: pointer;
}
.owl-controlls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
    cursor:e-resize;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility:    hidden;
    -ms-backface-visibility:     hidden;
}

/*
* 	Owl Carousel Owl Demo Theme
*/

.owl-controlls{
    margin-top: 25px;
    text-align: center;
}

/* Styling Next and Prev buttons */

.owl-controlls .owl-buttons div{
    color: #FFF;
    display: inline-block;
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;   
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-controlls.clickable .owl-buttons div:hover{
    opacity: 1;
    text-decoration: none;
}

/* Styling Pagination*/

.owl-controlls .owl-page{
    display: inline-block;
}
.owl-controlls .owl-page span {
    display: block;
    width: 20px;
    height: 4px;
    margin: 5px 4px;
    opacity: 0.5;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #95989A;
}

.owl-controlls .owl-page.active span,
.owl-controlls.clickable .owl-page:hover span{
    opacity: 1;
    background: #EA2026;
}

/* If PaginationNumbers is true */

.owl-controlls .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;
}







