.pde-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;

    color: var(--rojo-400);
}

.pde-loading-overlay.hidden {
    display: none;
}

.pde-loading-box {
    min-width: 220px;
    padding: 24px 28px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.pde-spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border: 10px solid var(--rojo-50);
    /*#ddd;*/
    border-top-color: var(--rojo-300);
    /*#333;*/
    border-radius: 50%;
    animation: pde-spin 0.8s linear infinite;
}

@keyframes pde-spin {
    to {
        transform: rotate(360deg);
    }
}