﻿/*Overlay cubriendo toda la pantalla*/ 
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 9999; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #f8f8f8;
    font-size: 18px;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

 /*Spinner*/ 
    #loadingOverlay .spinner {
        border: 6px solid #f8f8f8;
        border-top: 6px solid #e59523;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
        margin-bottom: 15px;
        filter: drop-shadow(1px 1px 4px #000);
    }

    #loadingOverlay p {
        font-family: "Montserrat", Serif;
        font-weight: 600;
        text-shadow: 1px 1px 4px #000;
        text-align: center;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}