#toasts {
    position: fixed;
    top: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    touch-action: none;
    pointer-events: none;
    padding: 1rem;
    gap:.25rem;
    z-index: 9999;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.toast {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    font-size: 1.05em;
    padding: 0.5rem;
    display: flex;
    flex-direction: row;
    gap: 0.3em;
    align-items: center;
    touch-action: auto;
    pointer-events: auto;
    animation: fadeIn 0.3s ease-out forwards, fadeOut 0.3s ease-in forwards, fadeOut 0.3s ease-out forwards;
    animation-delay: 0s, 3s;
    animation-fill-mode: forwards;
    overflow: hidden;
    max-width: 90vw;
    width: 20em;
    background-color: #212121fb;
}


.toast img {
    width: 1em;
    height: 1em;
    /* display: none; */
}

.toast p {
    color: whitesmoke;
}


/* .toast.info {
    background-color: #cce5ff;
    border-color: #b8daff;
}

.toast.warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.toast.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
} */