html.lb-disable-scrolling {
  overflow: hidden;
  position: fixed;
  height: 100vh;
  width: 100vw;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2147483641;
  background-color: #373737;
  opacity: 0.5;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2147483642;
  text-align: center;
  line-height: 0;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border: 1rem solid white;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background-color: white;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2147483643;
  display: none;
  pointer-events: none;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 40%;
  left: 1rem;
  float: left;
  margin-left: 1rem;
  background-image: url(../img/prev.svg);
  background-position: 0 50%;
  background-size: 4rem 4rem;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity ease 300ms;
}
.lb-nav a.lb-prev:hover {
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 40%;
  right: 1rem;
  float: right;
  margin-right: 1rem;
  background-image: url(../img/next.svg);
  background-position: 100% 50%;
  background-size: 4rem 4rem;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity ease 300ms;
}
.lb-nav a.lb-next:hover {
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: .5rem;
  *zoom: 1;
  width: 100%;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 .5rem;
  color: #ffffff;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
}
.lb-data .lb-caption {
  font-size: .75rem;
  font-weight: 200;
}
.lb-data .lb-caption a {
  color: #ffffff;
}
.lb-data .lb-number {
  display: none;
}
.lb-data .lb-close {
  display: none;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}
/*# sourceMappingURL=lightbox.css.map */