.LoadingAnimation {
    display: flex;
    position: fixed;
    z-index: 1003;
    background: rgba(0, 0, 0, 0.5);
    width: 100%; height:100%; left:0; top:0;
    align-items: center;
    justify-content: center;
    transition: all 0.4s linear 0s;
}
.LoadingAnimation img {
    z-index: 1004;
    animation: ani 1s ease-in-out 0s infinite;
}
@keyframes ani {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}