﻿/* global-loading.css */
#global-loading {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.65);
    z-index: 99999;
}

    #global-loading.show {
        display: flex;
    }

    #global-loading .spinner {
        width: 4rem;
        height: 4rem;
        border: .5rem solid rgba(0,0,0,0.08);
        border-top-color: #0d6efd;
        border-radius: 50%;
        animation: spin .8s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
