.container-loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", Sans-serif;
}

.spinner {
    border: 8px solid rgb(0, 150, 64, 0.5);
    border-left-color: #00A550;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: auto;
}

.container-box p{
    font-size: 14px;
    margin-top: 20px;
    
}

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