<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 40px;
  padding-bottom: 40px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  position: relative;
  top: 5%;
  height: 80%;
}

@media only screen and (max-width: 992px) {
  .modal-content {
    height: 65%;
    top: 15%;
  }
}
@media only screen and (max-width: 768px) {
  .modal-content {
    height: 55%;
    top: 20%;
  }
}
@media only screen and (max-width: 700px) {
  .modal-content {
    height: 50%;
    top: 20%;
  }
}
@media only screen and (max-width: 600px) {
  .modal-content {
    height: 46%;
    top: 22%;
  }
}
@media only screen and (max-width: 500px) {
  .modal-content {
    height: 40%;
    top: 25%;
  }
}
@media only screen and (max-width: 400px) {
  .modal-content {
    height: 33%;
    top: 28%;
  }
}
/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  height: 50%;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 1s;
  animation-name: zoom;
  animation-duration: 1s;
}

.out {
  -webkit-animation-name: zoom-out;
          animation-name: zoom-out;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: translate(0px, 20px);
    opacity: 0.7;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes zoom-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.6;
  }
}
@keyframes zoom-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.6;
  }
}
/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 1s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}/*# sourceMappingURL=imagezoom.css.map */</pre></body></html>