.notification-container {
    font-size: 14px;
    box-sizing: border-box;
    position: fixed;
    z-index: 999999999 !important;
}

.top-right {
    top: 0.55rem;
    right: 0.5rem;
    margin-left: 5px;
    transition: transform .6s ease-in-out;
    animation: toast-in-right .7s;
}

.bottom-right {
    bottom: 12px;
    right: 12px;
    transition: transform .6s ease-in-out;
    animation: toast-in-right .7s;
}

.top-left {
    top: 12px;
    left: 12px;
    transition: transform .6s ease-in;
    animation: toast-in-left .7s;
}

.bottom-left {
    bottom: 12px;
    left: 12px;
    transition: transform .6s ease-in;
    animation: toast-in-left .7s;
}

.notification {
    background: #fff;
    transition: .3s ease;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 30px;
    margin-bottom: 15px;
    width: 300px;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 0 10px #999;
    color: #000;
    opacity: .9;
    background-position: 15px;
    background-repeat: no-repeat;
}

.notification:hover {
    box-shadow: 0 0 12px #fff;
    opacity: 1;
    cursor: pointer
}

.notification-title {
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    margin-top: -6px;
    margin-bottom: 6px;
    width: 300px;
    height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notification-message {
    margin: 0;
    text-align: justify;
    margin-top: 12px;
}

.notification-image {
    float: left;
    margin-right: 15px;
    margin-top: -10px;
}

.notification-image img {
    width: 30px;
    height: 30px;
}

.toast {
    min-height: 50px;
    width: 19rem;
    color: #fff;
    padding: 20px 15px 10px 10px;
}

.notification-container button {
    position: relative;
    right: -0.2em;
    top: -0.2em;
    float: right;
    font-weight: 700;
    color: #fff;
    outline: none;
    border: none;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    line-height: 1;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0
}

@keyframes toast-in-right {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes toast-in-left {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}