/*
 * This lightbox taken from https://www.w3schools.com/howto/howto_js_lightbox.asp
 */
.gallery {
  width: 100%;
  /* Create four equal columns that floats next to eachother */
  /* The Modal (background) */
  /* Modal Content */
  /* The Close Button */
  /* Hide the slides by default */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
  /* On hover, add a black background color with a little bit see-through */
  /* Number text (1/3 etc) */
  /* Caption text */
}
.gallery > .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px);
}
.gallery .row > .column {
  padding: 0 8px;
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
}
.gallery .row:after {
  content: "";
  display: table;
  clear: both;
}
.gallery .column {
  float: left;
  width: 25%;
}
.gallery .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}
.gallery .modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
.gallery .modal-content div.mySlides {
  background-color: black;
}
.gallery .modal-content div.mySlides img {
  margin: auto;
  display: inherit;
}
.gallery .close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.gallery .close:hover,
.gallery .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.gallery .mySlides {
  display: none;
}
.gallery .prev,
.gallery .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.gallery .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.gallery .prev:hover,
.gallery .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.gallery .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.gallery .caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}
.gallery img.demo {
  opacity: 0.6;
}
.gallery .thumbnails {
  display: flex;
}
.gallery .thumbnails img.demo {
  width: 100px;
}
.gallery .active,
.gallery .demo:hover {
  opacity: 1;
}
.gallery img.hover-shadow {
  transition: 0.3s;
}
.gallery .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*# sourceMappingURL=lightbox.css.map */