.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto;
  height: auto;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 3px;
  position: relative;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #d9d9d9;
  cursor: pointer;
  opacity: 1;
  border: none;
  padding: 0;
  transition: all 0.2s ease;
  margin: 0 !important;
}
.swiper-pagination-bullet:hover, .swiper-pagination-bullet:focus-visible {
  background-color: var(--theme-palette-color-1);
}

.swiper-pagination-bullet-active {
  width: 24px;
  background-color: var(--theme-palette-color-1);
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}