.gallery-modal {
    z-index: 200;
    display: flex;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    flex-direction: row;

    padding: 2rem;
    gap: 5%;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in, 
        visibility 0s linear 0.3s;

    pointer-events: none;

    /* border: 2px solid purple; */
}
.gallery-modal.show {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in;
}

.gallery-modal img {
    z-index: 65;
    margin-top: var(--nav-standard-height);
    max-width: 80%;
    max-height: 80%;

    /* border: 2px solid blue; */
}
.gallery-modal button {
    pointer-events: auto;
    
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    margin: 10px;
    
}
#closeGallery {
    pointer-events: auto;

    position: absolute;
    top: calc(10px + var(--nav-standard-height));
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

#loadingIndicator {
    display: flex;
    justify-content: center;
    align-items: center;
    display: block;
    position: absolute;

    width: 75px;
    height: auto;

    z-index: 60;
}