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

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

.lightbox {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
  height: 90%;
  top: 5% !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}


.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: 100%;
  /*max-height: 100%;*/
}

.lightbox a img {
  border: none;
  max-width: 90%;
  max-height: 90%;
}

.lb-outerContainer {
  position: relative;
  background-color: transparent;
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
}

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

.lb-container{
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.lb-loader {
  position: fixed;
  height: 100%;
  width: 100%;
  line-height: 0;
  z-index: 100000;
}

.lb-cancel {
  display: inline-flex;
  background-image: url(../images/loading.gif);
  background-repeat:  no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

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

.lb-nav a {
  outline: none;
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav .lb-prev {
  width: 50%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav .lb-prev:hover {
  opacity: 1;
}

.lb-nav .lb-next {
  width: 50%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav .lb-next:hover {
  opacity: 1;
}

.lb-dataContainer {
  width: 100%!important;
}

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

.lb-data {
  position: relative;
  color: #ffffff;
}

.lb-data .lb-details {
}

.lb-data .lb-caption {
line-height: 1;
}

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

.lb-data .lb-number {
  color: white;
  margin-left: 1rem;
}

.lb-closeContainer {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  line-height: 0;
  z-index: 10001;
}

.lb-data .lb-close {
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/close.png) top right no-repeat;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-data .lb-close {
  /* display: none;*/
}