.main-carousel {
  position: relative;
  background-color: transparent;
  width: 100%;
}

.main-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.main-carousel__swipe-layer {
  position: relative;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}

.main-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-carousel__slide--animated {
  transition: transform 260ms ease;
  will-change: transform;
}

.main-carousel__button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000;
}

.main-carousel__button--left {
  left: 0;
}

.main-carousel__button--right {
  right: 0;
}

.main-carousel__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-carousel__dot-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  margin: -8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.main-carousel__dot {
  display: block;
  background-color: black;
}

.main-carousel__dot--inactive {
  display: block;
  background-color: lightgrey;
}


/*# sourceMappingURL=main-a99b7f41.ffe94648f69154ce32df.css.map*/