.lb-loader, .lightbox {
  line-height: 0;
  position: absolute;
  left: 0;
  text-align: center;;
}

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

.lightboxOverlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: none;
  width: 100vw !important;
  height: 100vh !important;
  opacity: 0.8;
  background-color: #000000;

  filter: alpha(Opacity=80);;
}

.lightbox {
  font-weight: 400;
  position: fixed !important;
  z-index: 10000;
  top: 50vh !important;
  left: 50vw !important;
  width: 100%;
  transform: translate(-50%, -50%);
  outline: 0;
}

.lightbox .lb-image {
  object-fit: cover;
  display: block;
  width: 100% !important;
  max-width: inherit;
  height: 100% !important;
  height: auto;
  max-height: none;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 30vw !important;
  height: 30vw !important;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lb-outerContainer {
    width: 100vw !important;
    height: 100vw !important;
  }

  .lb-data .lb-number {
    font-size: 2rem;
  }
}


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

.lb-loader {
  top: 43%;
  width: 100%;
  height: 25%;;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.lb-nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;;
}

.lb-container {
  width: 100%;
  height: 100%;
}

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

.lb-nav a {
  outline: 0;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

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

.lb-nav a.lb-prev {
  position: relative;
  left: -17%;
  float: left;
  width: 7%;
  -webkit-transition: opacity 0.6s;
     -moz-transition: opacity 0.6s;
       -o-transition: opacity 0.6s;
          transition: opacity 0.6s;
  background: url(/assets/images/prev.png) left 48% no-repeat;
  background-size: contain;

  filter: alpha(Opacity=0);;
}

.lb-nav a.lb-prev:hover {
  filter: alpha(Opacity=100);
}

.lb-nav a.lb-next {
  position: relative;
  right: -17%;
  float: right;
  width: 7%;
  -webkit-transition: opacity 0.6s;
     -moz-transition: opacity 0.6s;
       -o-transition: opacity 0.6s;
          transition: opacity 0.6s;
  background: url(/assets/images/next.png) right 48% no-repeat;
  background-size: contain;

  filter: alpha(Opacity=0);;
}

.lb-nav a.lb-next:hover {
  filter: alpha(Opacity=100);
}

.lb-dataContainer {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
  transform: translate(-50%, -90%);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

@media (max-width: 768px) {
.lb-dataContainer {
  width: 80vw !important;
  padding-bottom: 2rem;
}
}


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

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

.lb-data .lb-details {
  line-height: 2.0em;
  float: left;
  width: 85%;
  text-align: left;;
}

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

.lb-data .lb-caption a {
  color: #44aaee;
}

.lb-data .lb-number {
  font-size: 12px;
  display: block;
  clear: left;
  padding-bottom: 1em;
  color: #999999;
}

@media (max-width: 768px) {
  .lb-data .lb-number {
    font-size: 2.5rem !important;
  }
}


.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  -webkit-transition: opacity 0.2s;
     -moz-transition: opacity 0.2s;
       -o-transition: opacity 0.2s;
          transition: opacity 0.2s;
  text-align: right;
  opacity: 0.7;
  outline: 0;
  background: url(/assets/images/close.png) top right no-repeat;

  filter: alpha(Opacity=70);;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;

  filter: alpha(Opacity=100);;
}