notifications-container {
    position: fixed;
    top: 30px;
    right: 30px;
    overflow: visible;
    z-index: 100030;
    opacity: .95;
}

.notifications-list {
    overflow: visible;
}

.notifications-list .item {
    margin-top: 16px;
    transition: transform .5s, height 0s linear .51s;
    transform: translateX(150%);
    height: 0;
}

.notifications-list .item.show {
    transition: transform .5s, height 0s linear 0s;
    transform: translateX(0);
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notifications-list .progress .bg-info,
.notifications-list .progress .bg-success,
.notifications-list .progress * {
    background-color: #FFD600 !important;
    color: #FFD600 !important;
}

.notification {
    font-size: 12px;
    background-color: #fff;
    padding: 1rem 3rem 1rem 1.5rem;
    min-width: 250px;
    border-radius: 2px;
}

.notification .notification__header {
    font-size: 16px;
    font-weight: 500;
}

.notification .notification__header i {
    margin-right: 2px;
}

.notification .notification__buttons {
    display: flex;
}

.notification .notification__buttons .ui-button {
    color: #fff;
    text-decoration: underline !important;
    background: transparent !important;
    padding: 0;
    margin-top: 0.8em;
}

.notification .notification__content {
    padding-top: 0.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.notification--success {
    background: #4dbd74;
    color: #fff;
}

.notification--warning {
    background: #f8cb00;
    color: rgb(84, 84, 84);;
}

.notification--primary {
    background: #63c2de;
    color: #fff;
}

.notification--danger {
    background: #f86c6b;
    color: #fff;
}

.notification--progress {
    padding: 1.5rem;
}

.notification__close {
    cursor: pointer;
    position: absolute;
    height: 16px;
    width: 16px;
    right: 16px;
    top: 12px;
}