.top-lip {
    margin-top: 10px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    margin-left: -125px;
    background-color: #d8f3e5;
    border-color: #c8eedb;
    color: #1e6641;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    left: 50%;
    bottom: 70px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: snackfadein 0.5s, snackfadeout 0.5s 2.5s;
    animation: snackfadein 0.5s, snackfadeout 0.5s 2.5s;
}

@-webkit-keyframes snackfadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 70px;
        opacity: 1;
    }
}

@keyframes snackfadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 70px;
        opacity: 1;
    }
}

@-webkit-keyframes snackfadeout {
    from {
        bottom: 70px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes snackfadeout {
    from {
        bottom: 70px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}