﻿#fileUploading_div {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 30px;
    box-shadow: -3px -3px 6px #ae34db8d, inset 2px 2px 4px #ae34db6d;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
