.toast {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    width: 350px;
    max-width: 90%;
    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;
    font-weight: bold;
    background: rgba(128,221,66,1);
}

.toast.show {
    top: 20px;
}