.reviews-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.reviews-carousel .owl-dot {
    display: inline-block;
    margin: 0 4px;
}

.reviews-carousel .owl-dot span {
    display: block;
    width: 30px;
    /* height: 2px;       */
    height: 7px;
    background: #6c00ff;
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 23px;
}

.reviews-carousel .owl-dot:hover span{
    background: var(--color-primary-hover);
}

.reviews-carousel .owl-dot.active span {
    background: var(--color-secondary);
    width: 60px;
}


/* 
.reviews-carousel .owl-dot:hover span {
    background: #999;
    transform: scaleY(1.2);
}
    */