.gallery {
  width: 100%;
  line-height: 0;
  margin-bottom: 25px;
}

.gallery div {
  width: 33.33%;
  height: 300px;
  text-align: center;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  display: inline-block;
}

.gallery div img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin-top: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-view {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.gallery-view * {
  min-width: 25%;
  max-width: calc(100vw - 50px);
  max-height: calc(100vh - 50px);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
/*# sourceMappingURL=gallery.css.map */