/* Owl Dots Start */

.owl-dots {
    position: absolute;
    bottom: -22px;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    right: 0;
    align-items: center;
    justify-content: center;
}

.owl-dot {
    border-radius: 50px;
    height: 15px;
    width: 15px;
    display: inline-block;
    background: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #aaa;
}

.owl-dot.active {
    background: #3d3d3d;
    border-color: #3d3d3d;
    color: wheat;
}

.owl-dots {
    text-align: center;
}

/* Owl Dots End */

/* Owl Nav Start */

.owl-nav.disabled {
    display: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 30px;
    background-color: #a00e8f;

    /* border: 2px solid #333; */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

/* Owl Nav End */
