.a11y-slider-container {
  position: relative;
  direction: ltr;
}
.a11y-slider {
  position: relative;
  overflow: hidden;
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.a11y-slider::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.a11y-slider > * {
  scroll-snap-align: start;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.a11y-slider-sr-only,
.a11y-slider-status {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  text-align: center;
  font-family: inherit;
  font-size: 1em;
}
.a11y-slider-sr-only:focus {
  position: static;
  background: #000;
  color: #fff;
  width: 100%;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px;
}
.a11y-slider-hide {
  display: none;
}
.a11y-slider-scrolling {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-scroll-snap-type: none;
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  scroll-behavior: auto;
}

.a11y-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--size-500);
  gap: var(--size-300);
}

.a11y-slider-dots li {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0;
}

.a11y-slider-dots li button {
  display: block;
  font-size: 0;
  text-indent: -9999px;
  border: var(--stroke-weight-400) solid !important;
  border-color: var(--clr-grey-100) !important;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-900);
  background-color: transparent;
}

.slider-dark .a11y-slider-dots li button {
  border-color: var(--clr-neutral-100) !important;
}

.a11y-slider-dots li button.active {
  background-color: var(--clr-grey-100) !important;
}

.slider-dark .a11y-slider-dots li button.active {
  background-color: var(--clr-neutral-100) !important;
}

.a11y-slider-prev {
  display: none;
}

.a11y-slider-next {
  display: none;
}
