﻿.toast-container {
    position: fixed;
    top: 3em;
    right: 2em;
    border-radius: 0.5em;
    background-color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    box-shadow: var(--box-shadow);
    z-index: 9000;
    width: calc(100% - 4em);
}

.green {
    background-color: var(--toast-green);
}

.toast-container > h3 {
    color: var(--white);
}

@media (min-width: 841px) {
    .toast-container {
        width: calc(100% - 19em);
    }
}
