@charset "utf-8";
/*banner nav prev next buttons*/
.owl-buttons {
    height: 0;
    top: 50%;
    -webkit-transform: translateY(calc(-50%));
    -ms-transform: translateY(calc(-50%));
    transform: translateY(calc(-50%));
    position: absolute;
    width: 100%;
    margin: 0;
}
.owl-buttons {

    background: rgba(255,255,255,0.2);
    font-size: 3rem;
    transform: translate3d(0, -50%, 0);
	text-align: center;
    -webkit-tap-highlight-color: transparent;
    background: #444;
    background-size: cover;

}
.owl-buttons .owl-prev,.owl-buttons .owl-next {
    width: 32px;
    height: 53px;
    background-size: cover;
    font-size: 2rem;
    color: white;
    display: inline-block;
    position: relative;
}
.owl-buttons .owl-prev {
    position: absolute;
    left: 0;
    background: rgba(0,0,0,.2);
    cursor: pointer;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
.owl-prev:before {
    content: "\276C";
}
.owl-carousel .owl-prev:hover,.owl-carousel .owl-next:hover {
	background-color: #0b74c3;
}
.owl-buttons .owl-prev, .owl-buttons .owl-next {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.owl-buttons .owl-next {
    position: absolute;
    right: 0;
    background: rgba(0,0,0,.2);
    cursor: pointer;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.owl-next:before {
    content: "\276D";
}
/*progress bar*/
#bar {
    width: 0%;
    max-width: 100%;
    height: 2px;
    background: #FF0000;
    overflow: hidden;
}
#progressBar {
    width: 100%;
    background: #100E0E;
}
