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

.ImageGallery-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.ImageGallery-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.ImageGallery-pagination, .ImageGallery-button-controls {
  z-index: 1;
  background-color: #fff;
  padding: 0 .5rem;
}

.ImageGallery-pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}

.ImageGallery-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
  border: 1px solid var(--colorText);
  border-radius: 50%;
  opacity: 1;
}

.ImageGallery-pagination .swiper-pagination-bullet-active {
  background: var(--colorBrand);
  border-color: var(--colorBrand);
}

.ImageGallery-button-controls {
  display: flex;
  position: relative;
  gap: 0.5rem;
}

@media (min-width: 90rem) {
  .ImageGallery-button-controls {
    margin-right: 3vw;
  }
}

.ImageGallery-button-prev, .ImageGallery-button-next {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: clamp(1.75rem, 4vw, 2.5rem);
}

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

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

.ImageGallery-swiper-controls {
  position: relative;
}

.ImageGallery-swiper-controls::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid black;
  z-index: 0;
}

.ImageGallery-swiper-controls-wrapper {
  display: flex;
  justify-content: space-between;
  margin: .5rem auto;
  padding: 0 1rem;
}

@media (min-width: 75rem) {
  .ImageGallery-swiper-controls-wrapper {
    max-width: 90%;
  }
}

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