/* container */
.sweet-alert .app-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-family: 'Montserrat';
}
.sweet-alert {
    border-radius: 18px;
    padding: 35px 25px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.sweet-alert .spinner {
     width: 48px;
    height: 48px;
    border: 3px solid rgba(88, 186, 113, 0.15);
    border-top: 3px solid #58ba71;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    box-shadow: 0 0 12px rgba(88, 186, 113, 0.25);
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.sweet-alert .loader-text {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
}
.sweet-alert .typing::after {
    content: '|';
    margin-left: 3px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
.sweet-alert {
    border-radius: 16px;
    padding: 30px 20px;
}
.sweet-overlay {
    background-color: rgba(0, 0, 0, 0.45) !important;
}
.sweet-alert .loader-hint {
    margin-top: 8px;
    font-size: 14px;
    color: black;
}
.sweet-alert .app-loader {
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.sweet-alert .loader-text {
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease;
}