.upload_file{
    float: left;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.upload_file label{
	display:flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	flex: 1;
	cursor: pointer;
}

.upload_file .file{height: 100%;position: absolute;top: 0;left: 0;opacity: 0.0;z-index: 0;}

.upload_file .button_file{
    cursor: pointer;
    z-index: 1;
    line-height: 17px;
}
.upload_file .imagePreview{
    height: 90px;
    aspect-ratio: 13/9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* box-shadow: inset 0 0 0px 3px #fff; */
    /* border: 1px solid var(--themeColorLightGrey); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}
.upload_file .imagePreview .loadgif{
    height: 40px;
}
.upload_file .imagePreview .upload_file_name{
    width: 100%;
    background-color: rgb(158 158 158 / 86%);
    text-align: center;
    color: white;
    font-size: 10px;
    padding: 5px;
    border-radius: 3px;
}
.upload_file .imagePreview .upload_file_name:empty{
    display:none;
}