
/* simple zoom */

.simple-zoom {
  position: relative;
  margin: 0;
  background-size: cover;
}

.simple-zoom > figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  background-repeat: no-repeat;
  opacity: 0;
  -o-transition: opacity 200ms ease-out;
  -moz-transition: opacity 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

.simple-zoom > figure:hover { opacity: 1; }
