.upload-progress
{
    margin-right: auto;
    color: var(--color-soft);
    opacity: 0;
    transition: opacity .4s ease-out;
}
.upload-progress .upload-progress-icon
{
    margin-right: var(--space-between-s);
    display: inline-block;
}
.upload-progress.show
{
    opacity: 1;
}

