.ImageSlider {
  margin-top: 35px;
}

.ImageSlider-stage {
  overflow: hidden !important;
}

.ImageSlider-stage {
  width: 100%;
  position: relative;
}

.ImageSlider-collection {
  display: flex;
  align-items: stretch;
}

.ImageSlider-menu {
  margin-top: 20px;
}

.ImageSlider-menuButtons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.ImageSlider-button,
.ImageSlider-button:disabled {
  background: transparent;
}

.ImageSlider-button + .ImageSlider-button {
  margin-left: 25px;
}

.ImageSlider-collection .Picture {
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.ImageSlider-collection .Picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* === Lightbox === */

.ImageSlider-lightbox {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
}

.ImageSlider-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
  cursor: zoom-out;
}

.ImageSlider-lightbox img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
