.global-loading {
    z-index: 9999;
    position: fixed;
    top: 0;
    left:-5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.global-loading-content {
    position: absolute;
    border: 8px solid #000000;
    border-top: 8px solid rgb(190 255 84);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 40%;
    left:50%;
    animation: spin 1s linear infinite;
}

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