#viewer {
    display: none;
}

.containerElmtViewer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;

    cursor: pointer;

    width: 12.5vw;
    /* height: 12.5vw; */
    margin: auto;
    margin-top: 5px;
    max-height: 150px;
    max-width: 150px;

    grid-column: 1;

    transition: box-shadow 0.2s;
}

.containerElmtViewer:hover {
    filter: brightness(1.1);
}

#containerFullImg {
    padding-top: 0;
    margin-top: 0;

    background: linear-gradient(
        rgb(40, 40, 40),
        rgb(20, 20, 20)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    margin: auto;
    width: 85%;
    height: 100vh;
    right: 0;
    bottom: 0;

    z-index: 8000;
}

#contFullImg {
    margin: auto;
    justify-content: center;
    width: 100%;
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    box-sizing: border-box;
    padding: 5px;
}

#fullImg {
    padding: 2px;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    box-sizing: border-box;

    opacity: 0;

    transition: opacity 0.3s;
}

#containerTextMargin {
    width: 100%;
    padding-top: 1px;
    box-sizing: border-box;
    max-height: 25%;
}

#containerTextFullImg {
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

#titleFullImg {
    padding: 10px;
    margin-left: 50px;
}

#titleFullImg, #descriptionFullImg {
    color: whitesmoke;
}

#containerDescriptionFullImg {
    position: relative;
    overflow-y: auto;
    box-sizing: border-box;
    max-height: 150px;
    padding-left: 5px;
}

#arrowCurrentImg {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    transition: top 0.2s, left 0.2s;

    z-index: 7901;
}

/* THUMBNAILS */
#wrapperContainerThumbnails {
    top: 0;
    position: absolute;
    height: 100vh;
    width: 15%;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 7900;   
    background-color: rgba(10, 10, 10, 0.45);
    padding-top: 10px;
    padding-bottom: 10px;
}

#containerThumbnails {
    position: relative;
    height: 100%;
    overflow: hidden;

    display: grid;
    grid-template-columns: repeat(1, 1fr);

    scroll-behavior: smooth;
}

.textElmtThumbnailViewer {
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    background-color: whiteSmoke;
    transition: opacity 0.2s;
    opacity: 0;
    padding: 5px;
    font-size: 0.75em;
    z-index: 8030;
}

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

.containerElmtViewer:hover .textElmtThumbnailViewer {
    opacity: 0.75;
}

.descriptionElmtThumbnailViewer {
    display: none;
}

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

.containerImgsViewer {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.highlightThumbnail {
    /*Dark*/
    box-shadow: 0px 0px 10px rgba(40, 40, 40, 0.75);
    /*Light*/
    /* box-shadow: 0px 0px 10px whitesmoke; */
}

#closeViewerBtn {
    position: absolute;
    right: 0px;
    top: 0px;
}