@charset "utf-8";

#toast {
    position: fixed;
    bottom: 70px;
    left: 50%;
    padding: 15px 20px;
    transform: translate(-50%, 10px);
    border-radius: 30px;
    overflow: hidden;
    font-size: .8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s, transform .5s;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    z-index: 10000;
    width: 50%;
    text-align: center;
}

#toast.reveal {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    text-align: center;
}