.container-foto-wrap {
    height: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto; /*repeat(12, 1fr);*/ /*repeat(2, 1fr);*/
    grid-template-rows: 40px auto;
}

.FIO-foto {
     grid-column: 1 / 3;
 }

.main-info-foto {
    grid-column: 1 / 3;
}

.flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
}

.flex-item {
    position: relative;
    margin-bottom: 15px;
    margin-right: 5px;
    overflow: hidden;
}

.flex-item-b16 {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
}

.flex-item.removing {
    transform: scale(0);
    transition: transform .3s;
}

.flex-item:hover .preview-remove{
    opacity: 1;
}

.flex-item:hover .preview-info{
    bottom: 4px;
}

.img-wrap {
    max-height: 250px;
    max-width: 250px;
}

/* ++ 1-2-4-001 31/08/2022 */
.img-wrap-33 {
    max-height: 33px;
    max-width: 60px;
}
/* -- 1-2-4-001 31/08/2022 */

.preview-remove {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .22s;
}

.preview-info {
    position: absolute;
    right: 0;
    bottom: -30px;
    left: 0;
    height: 25px;
    font-size: 1.0rem;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    transition: bottom .22s;
}