.fondo-modal-espera {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2000;
}


.toast-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1055;
    display: none;
    justify-content: center;
}

.toast {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    background-color: rgba(209, 154, 255);
}

.toast.show {
    animation: slideDown 1s ease-out;
}


.toast-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(71, 71, 71);
    padding: 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}