.product__carousel {
    position: relative;
    display: block;
}
.product__carousel.owl-theme .owl-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0;
    line-height: 0;
    top: 50%;
    left: -145px;
    right: -145px;
    transform: translateY(-50%);
}
.product__carousel.owl-theme .owl-nav .owl-next {
    height: 65px;
    width: 65px;
    line-height: 65px;
    border-radius: 50%;
    color: var(--erepair-base);
    border: 1px solid var(--erepair-base);
    background-color: transparent;
    font-size: 16px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.product__carousel.owl-theme .owl-nav .owl-prev {
    height: 65px;
    width: 65px;
    line-height: 65px;
    border-radius: 50%;
    color: var(--erepair-base);
    border: 1px solid var(--erepair-base);
    background-color: transparent;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
    display: inline-block;
}

.product__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 0;
}

.product__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 0;
}

.product__carousel.owl-theme .owl-nav .owl-next span,
.product__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__carousel.owl-theme .owl-nav .owl-next:hover,
.product__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--erepair-base);
    color: var(--erepair-white);
}

.product__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.product__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.product__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}