.FileProcessingStatus .StatusBox {
    height: 24px;
    vertical-align: middle;
    width: 24px;
}

.FileProcessingStatus .StatusBox.Processing {
    animation: Image-spin infinite 1s linear;
}

@keyframes Image-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
