/* Preload images */
body:after {
  display: none;
}

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

.lightboxOverlay {
  position: fixed;
  top: 0;
  min-height: 100vh!important;
  left: 0;
  z-index: 9999;
  background-color: black;
  opacity: 0.9;
  display: none;
}

.lightbox {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10000;
  line-height: 0;
  font-weight: normal;
  padding: 0px 5%;
  height: 100%;
  top: 0!important;
  display: flex;
  align-items: center;
  overflow-y: scroll;
  padding: 20px 80px;
}

.lightbox .lb-image {
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 0px;
  max-width: 100%!important;
  height: auto!important;
  /* Image border */
  border: 1px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  width: 50%!important;
  float: left;
  z-index: 10;
  padding-right: 20px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: transparent;
}

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

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align:center;
  z-index: 9999;
}

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

.lightbox a {
  outline: none;
  text-decoration: none;
}

.lb-prev, .lb-next {
  position: fixed;
  height: 100px;
  width: 50px;
  background-color: rgba(255,255,255, 0.5);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: background-color 0.6s;
  -moz-transition: background-color 0.6s;
  -o-transition: background-color 0.6s;
  transition: background-color 0.6s;
  z-index: 0;
}

.lb-nav a.lb-prev {
  left: 0;
  float: left;
  
}

  .lb-nav a.lb-prev:before {
    font-family: 'FontAwesome';
    content: "\f104";
    color: #333;
    font-size: 60px;
    line-height:100px;
  }

.lb-nav a.lb-next {
  right: 17px;
  float: right;
}

  .lb-nav a.lb-next:before {
    font-family: 'FontAwesome';
    content: "\f105";
    color: #333;
    font-size: 60px;
    line-height:105px;
  }

    .lb-nav a.lb-prev:hover, .lb-nav a.lb-next:hover {
      background-color: rgba(255,255,255, 1);
    }

.lb-dataContainer {
  float: left;
  width: 50%!important;
  position: relative;
}

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

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

.lb-data .lb-details {
  width: 100%;
  float: left;
  text-align: justify;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 18px;
  line-height: 30px;
  text-align: justify;
}

  .lb-data .lb-caption .titulo_branco{
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
  }

  .lb-data .lb-caption b{
    margin-bottom: 10px;
  }

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

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

.lb-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255, 0.5);
  text-align: center;
  outline: none;
  -webkit-transition: background-color 0.6s;
  -moz-transition: background-color 0.6s;
  -o-transition: background-color 0.6s;
  transition: background-color 0.6s;
  z-index: 9999
}

  .lb-close:before {
    font-family: 'FontAwesome';
    content: "\f00d";
    color: #333;
    font-size: 26px;
    line-height:50px;
  }

  .lb-close:hover {
    background-color: rgba(255,255,255, 1);
  }

@media (max-width: 990px) {
  .lightbox {
    display: block;
    padding: 20px 0px;
    text-align: center;
  }

  .lb-outerContainer {
    width: 100%!important;
    float: none;
    padding: 0px 15px;
  }

  .lb-dataContainer {
    float: none;
    padding-left: 0px;
    margin-top: 20px;
    padding:0px 15px;
    width: 100%!important;
  }

    .lb-prev, .lb-next {
      position: absolute;
      opacity: 1;
      width:40px;
      top:48%;
    }

      .lb-nav a.lb-prev {
        left: 0;
      }

      .lb-nav a.lb-next {
        right: 0px;
      }
    
    .lb-data .lb-caption {
      font-size: 16px;
      line-height: 22px;
    }

      .lb-data .lb-caption .titulo_branco{
        font-size: 18px;
        margin-bottom: 10px;
      }
}
