/* PROGRESS */
#progress {
    position: fixed;
    background: url("loading.gif") center center no-repeat no-repeat, #f5f5f5;
    background-size: cover;
    border-radius: 0.25em;
    left: 50%;
    top: 50%;
    margin: -1.5em 0 0 -1.5em;
    width: 3em;
    height: 3em;
    display: none;
    z-index: 10003;
}

.Overlay {
    position: fixed;
    width: 100%;
    /*background-color: rgba(39, 39, 39, 0.75);*/
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10002;
    text-align: center;
    display: none;
}

.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.gallery-wrapper .album-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.gallery-wrapper .album-wrapper .album-item {
    display: flex;
    width: calc(25% - 20px);
    margin: 10px;
    background: #fff;
    overflow: hidden;
}

.gallery-wrapper .album-wrapper .album-item .image {
    content: "";
    padding-bottom: 70%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 300ms ease-in-out;
}