.image-thumbnails { margin-top: 40px; }

.image-thumbnail {
  display: inline-block;
  overflow: hidden;
  border-radius: 3px;
  margin-right: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
  transition: all 0.2s ease;
}

.image-thumbnail a { display: block; }

.image-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 1px 2px 10px rgba(85, 84, 89, 0.6);
}

#lightbox-wrapper {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
}

#lightbox-wrapper.inactive { visibility: hidden; }

#lightbox-wrapper.active {
  visibility: visible;
  z-index: 10;
}

.lightbox-content {
  position: relative;
  max-width: 500px;
  margin-top: 120px;
  padding-top: 40px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lightbox-image img { box-shadow: 1px 5px 35px #000; }

.lightbox-image_title {
  margin-top: 20px;
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  color: #fff;
  padding: 5px;
}

.lightbox-nav:hover { color: #7e012d; }

.lightbox-nav.inactive { visibility: hidden; }

.lightbox-nav_prev {
  left: 0;
  top: 0;
}

/*.lightbox-nav_prev:before { content: '👈'; }*/

.lightbox-nav_next {
  right: 0;
  top: 0;
}

/*.lightbox-nav_next:after { content: ''; }*/

.lightbox-nav_dismiss {
  top: 0;
  left: 47%;
  font-size: 40px;
}
