#vuelve-restore-loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:none;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#333;
    z-index:99999999;
}

.vuelve-spinner{
    width:50px;
    height:50px;
    border:5px solid #E5E7EB;
    border-top:5px solid #2f2f2f;
    border-radius:50%;
    animation: spin 1s linear infinite;
}

@keyframes spin{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

.vuelve-pulse-dot{
    width:10px;
    height:10px;
    background-color:#2f2f2f;
    border-radius:50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.vuelve-pulse-dot:nth-child(2){animation-delay:-0.3s;}
.vuelve-pulse-dot:nth-child(3){animation-delay:-0.6s;}

@keyframes pulse{
    0%,100%{transform:scale(0.6);opacity:0.7;}
    50%{transform:scale(1.1);opacity:1.0;}
}