.gallery-wrapper {
    margin: 0 0;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    -webkit-column-width: 25%;
    -moz-column-width: 25%;
    column-width: 25%;
}
.tile {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    position: relative;
}
.tile:hover {

}

.scale-anm {
    transform: scale(1);
}

.tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
}


#gallery .gallery-wrapper {
    /*margin: 0.3rem 0;*/

    /*-webkit-column-gap: 0.3rem;
    -moz-column-gap: 0.3rem;*/
    column-gap: 4px;

    -webkit-column-width: 24%;
    -moz-column-width: 24%;
    column-width: 24%;
}

#gallery .tile img {
    margin-bottom: 0.3rem;
}

#room-page .gallery-wrapper {
    margin: 0.3rem 0;

    -webkit-column-gap: 0.3rem;
    -moz-column-gap: 0.3rem;
    column-gap: 0.3rem;
    -webkit-column-width: 24%;
    -moz-column-width: 24%;
    column-width: 24%;
}

#room-page .tile img {
    margin-bottom: 0.3rem;
}