/*
Lo siguiente permite customizar el botón de upload file
*/
.galery_uploads{
    display:inline-block;
    padding:10px;
    border: 1px solid #333;
    border-radius:7px;
}
.upload_element{
    position: relative;
    float:left;
    display: inline-block;
    margin-right:9px;
    border: 1px solid #ccc;
    border-radius:7px;
}
/* upload_div_img div father thumb img */
.upload_father_img{
    position: relative;
    display: inline-block;
    margin:10px;
    min-width:50px;
    max-width:100px;
    min-height:100px;
    max-height:100px;
}
.file_upload{
    display: flex;
    align-items: center;
    margin: 10px;
}
.standard_file_to_upload {
    display: none; 
}
.custom_button{
    background-color: green;
    color: white;
    padding: 0px 18px;
    border: none;
    cursor: pointer;
    border-radius: 30%;
    font-size: 48px;
    font-weight: bold;
}
.file-name {
    font-size: 14px;
}
.upload_delete_img{
    width:30px;
    height:30px;
    margin-left:auto;
    margin-right:auto;
}
.uploadingLoading{
    position:absolute;
    top:50%;left:50%;
    transform:translate(-50%, -50%);
    opacity: 0.8;
}