﻿
/*#loading {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: sans-serif;
}*/

/* círculo animado */
/*.loader {
    border: 6px solid white;
    border-top: 6px solid #036ac4;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}*/

#loading {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: sans-serif;
}

.loading-text {
    margin-top: 10px;
    font-size: 18px;
    color: #444;
}

#loading.fade {
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}