.toast-container {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.toast-message {
    position: fixed;
    display: inline-block;
    max-width: 80%;
    padding: .8vw 1vw;
    color: white;
    background-color: #334d80E0;
    border-radius: 4px;
    border: solid 1px #334d80;
    z-index: 9999;
    
    transition: opacity ease-in 1.5s;
}
