body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  opacity: 1;
  display: none;
}

.lightbox {
  position: absolute;
  display: none;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 100;
  margin-top: -16px;
  margin-left: -16px;
  font-size: 5px;
  position: absolute;
  text-indent: -9999em;
  border: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #fff;
  transform: translateZ(0);
  animation: loading-icon 1.1s infinite linear;
}

.lb-loader:after {
  width: 10em;
  height: 10em;
  border-radius: 50%;
}

@keyframes loading-icon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lb-container > .nav {
  left: 0;
}


.lb-prev, .lb-next {
  position: absolute;
  z-index: 10;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.lb-prev svg, .lb-next svg, .lb-close svg {
	width: 20px;
	height: 20px;
	fill: #dcdcdc;
}

.lb-close {
  z-index: 11;
  width: 5%;
  left: 95%;
  position: absolute;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.lb-prev {
  width: 5%;
  left: 0;
  top: 0;
}

.lb-next {
  width: 5%;
  left: 95%;
  top: 0;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 100%;
  text-align: right;
  line-height: 1.1em;
  font-family: 'Lora';
  padding-bottom: 1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number, .lb-alt {
  display: block;
  clear: left;
  font-size: 12px;
  color: #999999;
}
