.fluidbox {
  outline: none;
}
.fluidbox-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  background-color: rgba(255,255,255,.85);
  opacity: 0;
  transition: all .25s ease-in-out;
}
.fluidbox-wrap {
  position: relative;
  margin: 0 auto;
  background-position: center center;
  background-size: cover;
  transition: all .25s ease-in-out;
}
.fluidbox-ghost {
  position: absolute;
  background-position: center center;
  background-size: cover;
  transition: all .25s ease-in-out;
}
.fluidbox-closed .fluidbox-ghost {
  transition-delay: 0, 0, .25s, 0;
  -webkit-transition-property: top, left, opacity, -webkit-transform;
  -moz-transition-property: top, left, opacity, -moz-transform;
  -o-transition-property: top, left, opacity, -o-transform;
  transition-property: top, left, opacity, transform;
}
.fluidbox-closed .fluidbox-wrap img {
  transition-delay: .25s;
  transition-duration: 0s;
  transition-property: opacity;
}
