#snackbar, #notify {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--theme-color);
    color: #fff;
    text-align: center;
    border-radius: 36px;
    padding: 16px;
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 24px;
    z-index: 1000;
}

#snackbar.show, #notify.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { opacity: 0; bottom: 20px; }
    to { opacity: 1; bottom: 30px; }
}

@keyframes fadeout {
    from { opacity: 1; bottom: 30px; }
    to { opacity: 0; bottom: 20px; }
}
