.scale-slider .slick-track {
    display: flex;
    justify-content: flex-start;
}

.scale-slider .slick-slide {
    height: inherit;
    margin-left: 10px;
    margin-right: 10px;
}

.scale-slider-controls {
    min-height: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.scale-dots {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.scale-dots .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.scale-dots .slick-dots li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 7px;
    position: relative;
    z-index: 2;
}

.scale-dots .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
}

.scale-dots .slick-dots li button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: transparent;
  opacity: 1 !important;
}

.scale-dots .slick-dots li.slick-active button:before {
    color: var(--color-primary);
}

.scale-dots .worm-dot {
  position: absolute;
  width: 30px;
  height: 15px;
  border-radius: 15px;
  background-color: var(--color-primary);
  top: 0;
  left: 0;
  transform: translate(0, 0);
  transition: transform 0.3s ease, width 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
    .scale-slider-controls {
        gap: 10px;
    }
}

@media (max-width: 544px) {
    .scale-slider {
        width: calc(100% - 30px);
        margin: auto !important;
    }

    .scale-slider-controls {
        width: 80%;
        min-height: 0;
        position: absolute;
        top: calc(50% - 10px);
    }

    .scale-dots {
        display: none;
    }
}