
/* The Modal (background) */
.lb_modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .8);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 80%;
  /* @@@ width is pic-dependent */
  max-width: 726px;
}

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

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

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.lb_prev,
.lb_next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.lb_prev {
  left: 0;
}
/* Position the "next button" to the right */
.lb_next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

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

/* this is required for the slide otherwise it leaves a bottom gap */
.mySlides img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: #202020;
  padding: 2px 20px;
  color: white;
}