.lightbox {
  /** Default lightbox to hidden */
  display: none;

  /** Position and style */
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
}

.lightbox.open {
  display: inline-block;
}

.lightbox img {
  /** Pad the lightbox image */
  cursor: pointer;
  max-width: 100%;
  height: auto;
  margin-top: 8vh;
}

.lightbox span {
  display: block;
  background-color: #db0005;
  width: 10%;
  margin: 20px auto;
  padding: 11px;
  color: white;
  font-size: 1.4em;
  cursor: pointer;
}

.mfp-close,
.mfp-preloader {
  display: none;
}

@media screen and (max-width: 480px) {
  .lightbox img {
    max-width: 80%;
    margin-top: 28%;
  }

  .lightbox span {
    width: 20%;
    font-size: 1em;
    padding: 7px;
    margin: 15px auto;
  }
}
