/*!
 * justifiedGallery - v3.7.0
 * http://miromannino.github.io/Justified-Gallery/
 * Copyright (c) 2018 Miro Mannino
 * Licensed under the MIT license.
 */

.justified-gallery {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.justified-gallery > a,
.justified-gallery > div,
.justified-gallery > figure {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  /* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */
  filter: "alpha(opacity=10)";
  opacity: 0.1;
  margin: 0;
  padding: 0;
  border-radius: 10px;
}
.justified-gallery > a > img,
.justified-gallery > div > img,
.justified-gallery > figure > img,
.justified-gallery > a > a > img,
.justified-gallery > div > a > img,
.justified-gallery > figure > a > img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0px;
  border: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  border-radius: 10px;
}

.justified-gallery > a > .caption2,
.justified-gallery > div > .caption2,
.justified-gallery > figure > .caption2 {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 0 3px #000;
  opacity: 0.6;
  margin: -15px 0px 0px -15px;

}
.justified-gallery > a > .caption2.caption-visible,
.justified-gallery > div > .caption2.caption-visible,
.justified-gallery > figure > .caption2.caption-visible {
  display: block;
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.justified-gallery > .entry-visible {
  filter: "alpha(opacity=100)";
  opacity: 1;
  background: none;
  outline: none;
  }

.justified-gallery > .entry-visible > img,
.justified-gallery > .entry-visible > a > img {
  filter: "alpha(opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  -o-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  transition: 0.3s linear;

}

.justified-gallery a {
  margin-top: -6px;
}

.justified-gallery > .entry-visible:hover > img,
.justified-gallery > .entry-visible > a > img {
  -webkit-filter: brightness(85%) blur(3px);
  -moz-filter: brightness(85%) blur(3px);
  -o-filter: brightness(85%) blur(3px);
  -ms-filter: brightness(85%) blur(3px);
  filter: brightness(85%) blur(3px);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: filter 0.6s ease;
  -moz-transition: filter 0.6s ease;
  -o-transition: filter 0.6s ease;
  -ms-transition: filter 0.6s ease;
  transition: filter 0.6s ease;

}

.justified-gallery > .jg-filtered {
  display: none;
}
.justified-gallery > .spinner {
  position: absolute;
  bottom: 0;
  margin-left: -24px;
  padding: 10px 0 10px 0;
  left: 50%;
  filter: "alpha(opacity=100)";
  opacity: 1;
  overflow: initial;
}
.justified-gallery > .spinner > span {
  display: inline-block;
  filter: "alpha(opacity=0)";
  opacity: 0;
  width: 8px;
  height: 8px;
  margin: 0 4px 0 4px;
  background-color: #000;
  border-radius: 6px;
}
