.album__teaser {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 250px;
    background: rgba(255,255,255,.7);
    z-index: 5;
    transition: all ease-in .4s;
}
.album__teaser__image {
    display: block;
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    filter: blur(1px);
}
.album__teaser:hover {
    background: transparent;
}
.album__label {
    /* color: #fff; */
    color: #f3702a;
    font-size: 50px;
    font-weight: 400;
    /* line-height: 250px; */
    text-align: center;
}
.album__teaser:hover .album__label {
    /* color: #000; */
    text-shadow: 1px 1px 4px rgba(255,255,255,.9);
}

.gallery {
    display: inline-block;
    margin-bottom: 40px;
    width: 100%;
}

.thumbnail {
    float: left;
    display: block;
    margin: 7px;
    /* padding: 10px; */
    padding: 0;
    background-color: #FCFCFC;
    /* border: 1px solid #DDD; */
    border: none;
    border-radius: unset;
}
.thumbnail:nth-child(5n-2) {
    /* margin-left: 0 !important; */
}
.thumbnail:nth-child(5n-3) {
    /* margin-right: 0 !important; */
}
