.notify{
    position: fixed;
    right: 1rem;
    bottom: 30px;
    left: 1rem;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--bg-color-alt);
    color: var(--fg-color-alt);
    box-shadow: var(--shadow-2);
    z-index: 2000;

    transition: all;
    opacity:0;
    transform: translateY(75px);
}

.notify *:first-child {margin-top: 0;}
.notify *:last-child {margin-bottom: 0;}

.notify-done{
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0.7;
    color: white;
    cursor: pointer;
}

.notify-in {
    transform: translateY(0px);
    transition: all;    
    opacity: 1;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.notify-out {
    opacity: 1;
    animation-name: fadeouttobottom;
    animation-delay: 0.1s;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
