.notification {
    /* border: 2px solid white;
    border-radius: 10px; */
    color: white;
    display: inline-table;
    /* max-width: 500px; */
    padding: 10px;
    position: fixed;
    width: 321px;
    z-index: 99999;
}

.notification.info {
    background-color: darkturquoise;
}

.notification.danger {
    background-color: firebrick;
}

.notification .header .title {
    font-weight: bolder;
}

.notification .header .close {
    float: right;
    cursor: pointer;
}

.slideInLeft {
    animation-name: slideInLeft;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInRight {
    animation-name: slideInRight;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0px, 0px);
        visibility: visible;
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0px, 0px);
        visibility: visible;
    }
    100% {
        transform: translate3d(0px, 0px, 0px);
    }
}
