﻿#globalLoader h3 {
    font-weight: 300;
    font-size: 1.25rem;
    color: #1d61a1;
    margin: 0;
    text-align: center;
}

#globalLoader {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

    #globalLoader.active {
        opacity: 1;
        pointer-events: all;
    }

    #globalLoader .loader-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #globalLoader .spinner {
        width: 72px;
        height: 72px;
        border: 8px solid #e0e8f5;
        border-top: 8px solid #1d61a1;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 20px;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
