.jav-dots {
  --jav-dots-inactive: rgba(0, 0, 0, 0.2);
  --jav-dots-active: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.jav-dots__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--jav-dots-inactive);
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  outline: none !important;
  box-shadow: none !important;
}
.jav-dots__dot.is-active, .jav-dots__dot.active {
  background: var(--jav-dots-active);
  transform: scale(1.3);
}
