.mz-carousel {
    position: relative;
}

.mz-carousel .owl-carousel {
    z-index: unset;
}

.mz-carousel .owl-carousel .owl-item img {
    height: auto;
}

.mz-carousel .mz-carousel-navs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
}

.mz-carousel .mz-carousel-navs .owl-prev,
.mz-carousel .mz-carousel-navs .owl-next {
    height: 50px;
    width: 50px;

    background: url('../img/nav-active.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Hide the text. */
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
}

.mz-carousel .mz-carousel-navs.disabled .owl-prev,
.mz-carousel .mz-carousel-navs.disabled .owl-next {
    display: none;
}

.mz-carousel .mz-carousel-navs .owl-prev.disabled,
.mz-carousel .mz-carousel-navs .owl-next.disabled {
    background: url('../img/nav-disable.png');
}

.mz-carousel .mz-carousel-navs .owl-prev {
    transform: rotate(180deg);
}

.mz-carousel .mz-carousel-navs .mz-carousel-dots {
    display: flex;
    justify-content: center;
    margin: 0 1em;
}

.mz-carousel .mz-carousel-navs .mz-carousel-dots.disabled {
    display: none;
}

.mz-carousel .mz-carousel-navs .mz-carousel-dots .owl-dot {
    display: block;
    padding: 0;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    border: 1px solid black;
    margin: 5px;
    background: white;
}

.mz-carousel .mz-carousel-navs .mz-carousel-dots .owl-dot.active {
    background: black;
}