.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #00090f;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.93;
  display: none;
}

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

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  border-radius: 5px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  margin: 0 auto;
}

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

.lb-container {
  padding: 5px;
}

.lb-loader {
  position: absolute;
  top: 45%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32.5px;
  height: 32.5px;
  margin: 0 auto;
  background: url() no-repeat;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 0.5;
  width: 100%;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

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

.lb-data {
  padding: 0 5px;
  color: white;
}

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

.lb-data .lb-caption {
  position: relative;
  font-size: 18.5px;
  font-weight: bold;
  line-height: 1.5em;
}

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

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(https://raw.githubusercontent.com/lokesh/lightbox2/master/dist/images/close.png)
  top right no-repeat; text-align: right; outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.0s;
  -moz-transition: opacity 0.0s;
  -o-transition: opacity 0.0s;
  transition: opacity 0.0s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
  
  
  
  
  
  img {
    width: 100%;
    border-radius: 5px;
  }
  
  figure {
    display: flex;
    break-inside: avoid;
  }
  
  .container {
    column-count: 4;
    column-gap: 25px;
  }


  @media (max-width: 1000px) {
  .container {
    column-count: 1;
  }

  .album {
    margin-bottom: 15px;
  }
  
  .album-no-space {
    margin-bottom: 0px;
  }
  }