.Carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.Carousel .CarouselContainer {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.Carousel .CarouselSlide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 700ms ease-in-out;
  will-change: transform;
}

.Carousel .CarouselSlide:nth-child(1) {
  transform: translateX(0%);
}

.Carousel .CarouselSlide:nth-child(2) {
  transform: translateX(100%);
}

.Carousel .CarouselSlide:nth-child(3) {
  transform: translateX(100%);
}

.Carousel .CarouselSlideOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color: transparent;
}

.Carousel .CarouselIndicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 20;
}

.Carousel .CarouselDot {
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border-width: 0;
  transition: background-color 0.15s ease-in-out;
  background-color: rgba(255, 255, 255, 0.5);
}

.Carousel .CarouselDotActive {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border-width: 0;
  transition: background-color 0.15s ease-in-out;
  background-color: white;
}

.Carousel .CarouselDotActive:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
  outline: none;
}
