body.lb-disable-scrolling {
  overflow: hidden;
}
.lightboxOverlay {
  background-color: black;
  display: none;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  z-index: 9999;
}
.lightbox {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 10000;
}
.lb-outerContainer {
  background-color: white;
  border-radius: 3px;
  height: 250px;
  margin: 0 auto;
  position: relative;
  width: 250px;
}
.lb-outerContainer img {
  border: 3px solid white;
  display: block;
  height: auto;
  max-width: inherit;
}
.lb-loader {
  height: 25%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 43%;
  width: 100%;
}
.lb-cancel {
  background: url(../images/loading.gif) no-repeat;
  border: none;
  display: block;
  height: 2rem;
  margin: 0 auto;
  outline-color: transparent;
  width: 2rem;
}
.lb-nav {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.lb-prev,
.lb-next {
  border: none;
  cursor: pointer;
  display: block;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s;
  width: 49%;
}
.lb-prev:hover,
.lb-prev:focus,
.lb-next:hover,
.lb-next:focus {
  opacity: 1;
}
.lb-prev:focus,
.lb-next:focus {
  outline-color: transparent;
}
.lb-nav .lb-prev {
  background: url(../images/prev.png) left center no-repeat;
  float: left;
}
.lb-nav .lb-next {
  background: url(../images/next.png) right center no-repeat;
  float: right;
}
.lb-outerContainer .lb-magnify {
  border: 1px solid #333;
  border-radius: 50%;
  cursor: none;
  height: 30vh;
  position: absolute;
  top: 0;
  width: 30vh;
  z-index: 11;
}
.lb-dataContainer {
  color: #fff;
  margin: 0 auto;
  padding-top: 0.25rem;
}
.lb-data .lb-details {
  float: left;
  font-size: 0.85rem;
  width: 75%;
  z-index: 12;
}
.lb-data .lb-caption {
  font-weight: 600;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  font-size: 0.8rem;
}
.lb-toolContainer {
  text-align: right;
}
.lb-toolContainer button {
  border: none;
  display: inline-block;
  height: 30px;
  margin-left: 0.75rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  width: 30px;
}
.lb-toolContainer button:hover,
.lb-toolContainer button:focus {
  cursor: pointer;
  opacity: 1;
}
.lb-toolContainer button:focus-visible {
  outline-color: #fff;
}
.lb-data .lb-zoom {
  background: url(../images/zoom.png) center center no-repeat;
}
.lb-data .lb-close {
  background: url(../images/close.png) center center no-repeat;
}
