.toast
{
    display: block;
    position: absolute;
    bottom: 10%;
    width: 340px;
    margin-left: calc(50% - 170px);
    background: rgba(0,0,0, 0.7);
    border-radius: 5px;
    color: white;
    text-align: center;
    padding: 0.4em;
}

.toast.errorToast
{
    background: rgba(255,0,0, 0.7);
    z-index: 150;
}