﻿/* Layout Modal Loading */
#layout-modal-loading {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.800) !important;
    display: none;
    z-index: 10;
    font-family: var(--fonte);
    position: fixed;
}

.loading-modal-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-modal-box {
    z-index: 11;
    display: block;
    display: flex;
    flex-direction: column;
    border-radius: 6px;  
}

/* Efeito girando */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; 
    border-top: 5px solid orange; 
    border-radius: 50%; 
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

