body {
    transition: background-color 2s;
}

#containerWallGallery {
    position: relative;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 30px;
  
    transition: margin-top 0.1s;
}

#containerWallGalleryImgs{
    justify-content: flex-start;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 5px;
    position: relative;
    left: 0;
  
    /* transition: opacity 0.5s, gap 0.5s ease-out; */
}

.containerElmtWall {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    width: 100%;
    cursor: pointer;

    transition: width 0.5s;
}

.containerElmtWall:hover .textElmtWall {
    opacity: 0.75;
}

.borderRadiusContainerWall {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: content-box;
    position: relative;
}

.textElmtWall {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    background-color: whitesmoke;
    transition: opacity 0.5s;
    opacity: 0;
    padding: 5px;
    font-size: 0.6em;
    z-index: 30;
}

.invisible {
    visibility: hidden;
}

.titleElmtWall {
    box-sizing: border-box;
    padding: 10px;
}

.descriptionElmtWall {
    display: none;
}

.containerImgWall {
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.imgElmtWall {
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* visibility: hidden; */
    opacity: 0;

    transition: opacity ease-in 0.2s;
}

/* .loader {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0; 
    width: 100vw;
    height: 100vh;
    background-color: rgba(250,250,250,0);
    text-align: center;
   
    display: flex;
    flex-direction: column;
    opacity: 0;

    transition: opacity 0.2s;

} */

.loadingText {
    color: rgba(50,50,50,0.8);
    font-size: 2em;   
    position: relative;
    margin: auto;
    
    animation: 1s infinite linear alternate slidein;
}

@keyframes slidein {
    from {
        font-size: 1.9em;
    }

    to {
        font-size: 2em;
    }
}

#nameCurrentGallery {
    margin: 20px;
}