.custom-sequential-slider {
  width: 100%;
}

.custom-sequential-slider__viewport {
  overflow: hidden;
  user-select: none;
}

.custom-sequential-slider__track {
  display: flex;
  gap: var(--sl-gap, 20px);
  will-change: transform;
}

.custom-sequential-slider__item {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(60px);
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.custom-sequential-slider__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.custom-sequential-slider.no-slide .custom-sequential-slider__viewport {
  overflow: visible;
}

.custom-sequential-slider.no-slide .custom-sequential-slider__track {
  flex-wrap: wrap;
  justify-content: center;
}

.custom-sequential-slider.no-slide .custom-sequential-slider__item {
  opacity: 1 !important;
  transform: none !important;
}

.custom-sequential-slider__bullets-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.custom-sequential-slider__bullets {
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
}

.custom-sequential-slider__bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
  box-sizing: border-box;
}

.custom-sequential-slider__bullet.is-active {
  background: rgba(255, 255, 255, 1);
}

.custom-sequential-slider__more {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  font-size: 13px;
}
