#galerie-current {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    margin: 0 0 2vh 0;
    float: left;
}
#galerie-current img {
    width: 100%;
    height: 100%;
    margin: 0;

    background: #BBB;
    border-radius: 1vh;
    object-fit: contain;
    object-position: center;
}

#galerie-list {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    margin: 0;
    float: left;

    background: #f0f0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#galerie-list img {
    width: 7.5vh;
    height: 7.5vh;
    margin: 0 0 1vh 1vh;

    border-radius: .5vh;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    opacity: .6;
    transition: all 187ms ease;
}
#galerie-list img[active], #galerie-list img:hover {
    opacity: .9;
}

/* RESPONSIVE */
@media only screen and (min-width: 1600px) {
    #galerie-current {
        height: 80vh;
    }
    #galerie-list {
        flex-direction: column;
        flex-wrap: wrap;
    }
}