.column {
  width: 350px;
  overflow: hidden;
}
.column img {
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 499px) {
  .column img {
    height: 190px;
  }
}
@media screen and (min-width: 500px) and (max-width: 799px) {
  .column img {
    height: 300px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1199px) {
  .column img {
    height: 210px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .column img {
    height: 160px;
  }
}
@media screen and (max-width: 499px) {
  .column {
    width: 350px;
  }
}
@media screen and (min-width: 500px) and (max-width: 799px) {
  .column {
    width: 400px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1199px) {
  .column {
    width: 330px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .column {
    width: 250px;
  }
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 4000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.mySlides img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 700px;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.cursor {
  cursor: pointer;
}

.lightboxThumbBox {
  display: flex;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  gap: 20px 10px;
}
.lightboxThumbBox .column {
  overflow: hidden;
  flex: auto;
}
.lightboxThumbBox .column img {
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (min-width: 800px) and (max-width: 1199px) {
  .lightboxThumbBox .column img {
    height: 170px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .lightboxThumbBox .column img {
    height: 170px;
  }
}
@media screen and (max-width: 499px) {
  .lightboxThumbBox .column {
    display: none;
  }
}
@media screen and (min-width: 500px) and (max-width: 799px) {
  .lightboxThumbBox .column {
    display: none;
  }
}
@media screen and (min-width: 800px) and (max-width: 1199px) {
  .lightboxThumbBox .column {
    width: 150px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .lightboxThumbBox .column {
    width: 250px;
  }
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 30px 30px 30px 10px;
  margin-top: -100px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.4s ease;
  border-radius: 0 50px 50px 0;
  -moz-user-select: none;
       user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  padding: 30px 10px 30px 30px;
  border-radius: 50px 0 0 50px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.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 */