/* upload layout ****************************************************************************/
/********************************************************************************************/

.bottom-nav-bar{
    position: fixed;
    overflow: visible;
    z-index: 9999;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    height: 80px;
    background-color: darkred;
    text-align: center;
    display: flex;     /* Aligns items horizontally */
    justify-content: space-around; /* Spaces items evenly */
    align-items: center;
}
.bottom-nav-bar-child{
    width: 46%;
    margin-left: 6px;
    margin-right: 12px;
/*    cursor: pointer;*/
    background-color: rgba(28,34,49,0.4);
    border-radius: 10px;
}
.bottom-nav-bar-img{
    height:70px;
}



/********************************************************************************************/
/********************************************************************************************/

.thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 308px;
    display: inline-grid;
    border-radius: 6px;
    background-color: #bbb;
    padding: 4px 4px 4px 4px;
    margin: 2px 2px 2px 2px;
    vertical-align: top;
    text-align: center;
}

.photo {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
}

.photo-adjust {
    filter: contrast(1.25);
    filter: brightness(1.40);
    filter: saturate(1.05);

}

.imagetext {
    position: absolute;
    top: 250px;
    left: 0px;
    height: 58px;
    width: 100%;
    font-size: 30px;
    font-weight: 900;
    opacity: 0.6;
    z-index: 100;
    color: darkcyan;
    margin: 0 auto;
    text-align: center;
    background-color: #333;
    border-radius: 4px;
}