.toast{
    position:fixed;
    bottom:0px;
    right:5px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    background:#1e8e3e;
    color:#fff;

    border-radius:8px;

    font-family:Arial,sans-serif;
    font-size:15px;

    box-shadow:0 12px 35px rgba(0,0,0,.25);

    opacity:0;
    transform:translateX(120%);
    pointer-events:none;

    transition:
        transform .35s ease,
        opacity .35s ease;

    

  
    z-index: 99999999 !important;
}



.toast.show{
    opacity:1;
    transform:translateX(0);
}



.toast span{
    font-size:18px;
}