/* .containerMain{
    display: flex;
    justify-content: center; 
    padding: 0; 
    position: absolute;
    width: max-content;      
    min-width: 72vw; 
    top: 100px;
    right:1vw;
}
.wrapperMain{    

    display: flex;
    flex-direction: column;
    justify-content: center;  
    width: 100%;       

    align-items: center;   
}
.imageContainer{

}
.imageMain{
    vertical-align: middle;
    border-radius: 50%;
    width: 32vw;
    transition: opacity 1s ease, border-radius 0.1s ease;
}
.textContainer{
    width: max-content;
    min-width: max-content;
    margin-top: 20px; 
}
.textContainer p{
    font-size: 30px;
    white-space: nowrap;
    margin: 0;
}
@media (max-width: 600px){
    .containerMain{
        position: relative;
        width: 100%;
        top: 0;
        right: inherit;
    }
    .imageMain{
        width: 80vw;
    }

} */
.imageLibraryContainerMain{
    display: flex;
    flex-wrap: wrap;
    padding: 0; 
    position: absolute;
    width: 72vw;
    top: 10px;
    right:2vw;
    transition: opacity 0.2s ease;
    /* z-index: 1; */
}
.columnMain{
    flex: 30;
    padding: 0px 5px;
}
.columnMain .smallImg {
    margin: 0px 0px 10px 0px;
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 2px;
    transition: opacity 1s ease, border-radius 0.1s ease;
}
.smallImg:hover{
    border-radius: 50%;
}
@media (max-width: 600px){
    .imageLibraryContainerMain{
        position: relative;
        width: 100%;
        top: 0;
        right: inherit;
    }
    .columnMain{
        padding: 0px 4px;
    }
    .columnMain .smallImg{
        margin: 4px;    
    }
}