#shorts video {
  width: 300px;          /* pick a width */
  height: 500px;         /* pick a height */
  object-fit: cover;     /* fill the box, cropping if needed */
  border-radius: 12px;   /* optional rounded corners */
  display: block;
  margin: 0 auto;        /* center if needed */
}
.scale-dots {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.scale-dots .slick-dots {
  position: initial !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.scale-dots .slick-dots li button:hover {
    background-color: var(--color-black) !important;
}

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

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

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

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