div.imageZoom-container {
  object-fit: contain;
  overflow: hidden;
  margin: 0 0 16px 0;
}
div.imageZoom-container figure {
  padding: 16px;
}
div.imageZoom-container img.radius {
  border-radius: 8px;
  box-shadow: 0 0 0 1px #000000, 0 0 0 2px #313131; /* Third border */
}
div.imageZoom-container figure > figcaption {
  color: #7e848c;
  margin: 8px 0 0 0;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}
div.imageZoom-container img {
  cursor: zoom-in;
  transition: transform 0.25s ease-in-out;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}
div.imageZoom-container div.overlay {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}
div.imageZoom-container.clicked img {
  cursor: zoom-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-height: 80%;
  object-fit: contain;
  margin: auto;
  z-index: 2;
}

/*# sourceMappingURL=ImageZoom.css.map */
