.notification {
    animation: slidein 1s 1;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.68, -.55, .265, 1.3);
    background-color: #f5f5f5;
    border-radius: 4px;
    max-width: 600px;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    position: fixed;
    right: .5rem;
    z-index:9999
}

@keyframes slidein {
    0% {
        transform: translateX(110%)
    }
    to {
        transform: translateX(0)
    }
}

@keyframes fadeout {
    0% {
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(0);
        visibility: hidden
    }
}

@keyframes slideout {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    to {
        opacity: 0;
        transform: translateX(110%)
    }
}