    .owl-prev,
    .owl-next {
        position: absolute;
        left: 0;
    }
        .owl-next {
            left: auto;
            right: 0;
            text-align: right;
        }

        .owl-prev span,
        .owl-next span {
            font-weight: bold;
            color: #fff;
            font-size: 2.6rem;
            line-height: 1.6rem;
            border-radius: 100%;
            display: inline-block;
            outline: none;
        }

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

.owl-dots {
    position: fixed;
    bottom: 30px;
    width: 100%;
    max-width: 230px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
    .owl-dot {
        margin: 5px !important;
        outline: none;
    }
        .owl-dot span {
            border: 1px solid white;
            height: 11px;
            width: 11px;
            display: inline-block;
            border-radius: 100%;
            outline: none;
        }
            .owl-dot.active span {
                background: white;
            }