.imax {
  display: inline-block;
  position: relative;
}
.imax.open {
  -webkit-animation-name: imax-zoom;
  animation-name: imax-zoom;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  background: #ffffff;
  display: inline-block;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100000;
  padding: 5vw;
}
.imax.open img {
  -webkit-animation-name: imax-zoom;
  animation-name: imax-zoom;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  display: block;
  margin: 0 auto;
  max-height: 90vh;
  max-width: 90%;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  vertical-align: middle;
  z-index: 100001;
}
.imax-close {
  color: #000000;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
}
.imax.open .imax-close {
  display: inline-block;
  z-index: 100002;
}
@-webkit-keyframes imax-zoom {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes imax-zoom {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=imax.css.map */