.Overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.85);
  transition: opacity 300ms;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -ms-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  z-index: 500;
  opacity: 0;
}

.Overlay.show {
  opacity: 1;
}

.zoom-image-clone {
  position: fixed;
  -moz-transition: -moz-transform 0.23s linear;
  -ms-transition: -ms-transform 0.23s linear;
  -webkit-transition: -webkit-transform 0.23s linear;
  transition: transform 0.23s linear;
  z-index: 500;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: -ms-zoom-out;
  cursor: zoom-out;
}

.Overlay.image-zoom-overlay {
  background-color: white;
  background-color: rgba(255,255,255,0.97);
}
