﻿.overlay {
    position: absolute;
    width: 95%;
    height: 95%;
    background: rgba(255, 255, 255, 0.8);
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;


 /*.Estilo para aplicar o overlay fullscreen   
     
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;*/
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #00AEEF;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 15px;
    font-size: 18px;
    color: #005A9C;
    font-weight: bold;
}
