.toast {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    width: 300px;
    margin: auto;
    padding: 15px;
    background: #94dca3;
    border-radius: 7px;
    z-index: 1000;
    box-shadow: 0px 2px 6px -3px black;
    text-align: center;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: .2s;
    pointer-events: none;
}

.toast.show {
    bottom: 10px;
}