/*
* 	Owl Carousel Custom Theme 
*/

/* Dots */

.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    height: 0px;
    position: relative;
    top: -60px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 0 10px;
    background: white;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
    opacity: 0.2;
}

.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
    opacity: 1;
}

.owl-carousel .owl-item img {
    min-width: 0;
}

/* Banner */

.owl-banner {
    color: white;
}

.owl-banner .owl-item > div {
    line-height: 0;
    position: relative;
}

.owl-banner .owl-item > div > div {
    position: absolute;
    line-height: normal;
}

/* Tabs */

.owl-tabs .owl-item > div {
    min-height: 400px;
    padding: 40px 0;
}

.carousel-pager {
    -webkit-tap-highlight-color: transparent;
    min-height: 120px;
    border-bottom: 4px solid #e0e0e0;
}

.carousel-pager > div {
    text-align: center;
    font-size: 22px;
    padding: 30px 20px;
    cursor: pointer;
    line-height: 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 10px solid rgba(255, 255, 255, 0.01);
}

.carousel-pager > div.active {
    color: dodgerblue;
    background: rgba(0, 0, 0, 0.05);
    border: 10px solid rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 850px) {

    .carousel-pager > div {
        font-size: 18px;
        padding: 8px 0px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 750px) {

    .owl-carousel .owl-dots {
        display: none;
    }

    .owl-tabs .owl-item > div {
        min-height: 0;
        padding: 0;
    }

    .owl-tabs .owl-item h2 {
        text-align: center;
    }

    .carousel-pager {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .carousel-pager > div {
        line-height: 20px;
    }

}