.ImageGallery {
  position: relative;
  max-width: var(--sizeContentFullHd);
  margin: 0 auto;
}

.ImageGallery-swiper {
  position: relative;
  overflow: hidden;
}

.ImageGallery .swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.ImageGallery-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.ImageGallery-controls {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spaceMd);
  margin-top: 1.5rem;
}

.ImageGallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spaceMd);
}

.ImageGallery-pagination .swiper-pagination-bullet {
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: var(--colorBrandSecondary);
  transition: var(--animationBase);
  outline: none;
  cursor: pointer;
  position: relative;
}

.ImageGallery-pagination .swiper-pagination-bullet:after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--colorBrand);
  opacity: 0;
  transition: var(--animationBase);
}

.ImageGallery-pagination .swiper-pagination-bullet-active, .ImageGallery-pagination .swiper-pagination-bullet:hover {
  background: transparent;
}

.ImageGallery-pagination .swiper-pagination-bullet-active:after, .ImageGallery-pagination .swiper-pagination-bullet:hover:after {
  opacity: 1;
}

.ImageGallery-button-prev {
  transform: rotate(180deg);
}

.ImageGallery-button-prev, .ImageGallery-button-next {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ImageGallery:has(.swiper-slide:only-child) {
  margin-bottom: var(--spaceLg);
}

.ImageGallery:has(.swiper-slide:only-child) .ImageGallery-controls {
  display: none;
}

/*# sourceMappingURL=image-gallery.min.css.map */
