/**
 *  Basic "bare bone" styles for carousel
 */

/* Next/Previous navigation */
.owl-nav {
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}
.owl-nav__item {
    display: block; 
    opacity: 0.5;
    position: absolute;
    cursor: pointer; 
    z-index: 100;
}
.owl-nav__item:hover {
    opacity: 1;
}
.owl-nav__item--prev { left: 0; }
.owl-nav__item--next { right: 0; }

/* Indicators */
.owl-dots {
    position: absolute;
    width: 100%;
    bottom: 8px;
    text-align: center;
    -webkit-tap-highlight-color: transparent; 
}
.owl-dots__item {
    z-index: 100;
    position: relative;
    display: inline-block;
    zoom: 1;
}

.owl-dots__item.active, .owl-dots__item.active:hover {
    opacity: 1; 
}
.owl-dots__item span {
    cursor: pointer;
    width: 10px;
    height: 10px;
    margin: 3px;
    opacity: .5;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px; 
}
.owl-dots__item.active span {
    width: 12px;
    height: 12px;
}
.owl-dots__item.active span, .owl-dots__item:hover span {
    opacity: 1; 
}
