.loading-img {
    position: relative;
    animation: spinLoadingImg 3s infinite;
}

@keyframes spinLoadingImg {
    100% {
        transform: rotate(360deg);
    }
}
