
@keyframes justified-gallery-show-caption-animation {
0% {
    opacity: 0;
}
100% {
    opacity: 0.7;
}
}
@keyframes justified-gallery-show-caption-animation {
0% {
    opacity: 0;
}
100% {
    opacity: 0.7;
}
}
@keyframes justified-gallery-show-entry-animation {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
@keyframes justified-gallery-show-entry-animation {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
.justified-gallery {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.justified-gallery > a, .justified-gallery > div {
    display: inline-block;
    opacity: 0;
    overflow: hidden;
    position: absolute;
}
.justified-gallery > a > img, .justified-gallery > div > img {
    border: 0 none;
    left: 50%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
}
.justified-gallery > a > .caption, .justified-gallery > div > .caption {
    background-color: #000;
    bottom: 0;
    color: #fff;
    display: none;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 300;
    left: 0;
    margin: 0;
    padding: 5px;
    position: absolute;
    right: 0;
}
.justified-gallery > a > .caption.caption-visible, .justified-gallery > div > .caption.caption-visible {
    animation: 500ms ease 0s normal none 0 justified-gallery-show-caption-animation;
    display: initial;
    opacity: 0.7;
}
.justified-gallery > .entry-visible {
    animation: 300ms ease 0s normal none 0 justified-gallery-show-entry-animation;
    opacity: 1;
}
.justified-gallery > .spinner {
    bottom: 0;
    filter: initial;
    left: 50%;
    margin-left: -24px;
    opacity: initial;
    overflow: initial;
    padding: 10px 0;
    position: absolute;
}
.justified-gallery > .spinner > span {
    background-color: #000;
    border-radius: 6px;
    display: inline-block;
    height: 8px;
    margin: 0 4px;
    opacity: 0;
    width: 8px;
}
