.owl-nav {
    position: absolute;
    bottom: 0;
    height: 34px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    max-width: 660px;
    padding: 0 20px;
    transform: translateX(-50%);
    left: 50%;
}
    .owl-prev,
    .owl-next {
        outline: none;
    }
        .owl-prev span,
        .owl-next span {
            font-weight: bold;
            color: #bbb;
            font-size: 2.6rem;
            line-height: 1.6rem;
            border-radius: 100%;
            display: inline-block;
            outline: none;
        }

        .owl-prev.disabled,
        .owl-next.disabled {
            opacity: .25;
        }

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .owl-dot {
        margin: 5px !important;
        outline: none;
    }
        .owl-dot span {
            height: 11px;
            width: 11px;
            display: inline-block;
            background: #bbb;
            border-radius: 100%;
            outline: none;
        }
            .owl-dot.active span {
                background: #a71652;
            }