.file-item__spinner {
    display: inline-block;
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    align-self: center;
    margin-left: 4px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: jeboUploadSpin 0.8s linear infinite;
}

@keyframes jeboUploadSpin {
    to {
        transform: rotate(360deg);
    }
}
