.notifications-wrapper {
    inset: 0;
    padding: 16px;
    pointer-events: none;
    position: fixed;
    z-index: 10050
}

.notifications-wrapper .notification-items {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    width: 100%
}

.notifications-wrapper .notification-items .notification-item {
    background-color: #f2f2f2;
    color: #000;
    padding: 16px;
    width: -moz-max-content;
    width: max-content;
    width: 100%
}

@media(min-width:576px) {
    .notifications-wrapper .notification-items .notification-item {
        max-width: 400px;
        min-width: 400px
    }
}

.notifications-wrapper .notification-items .notification-item+.notification-item {
    margin-top: 12px;
}

@media(max-width:991.98px) {
    .notifications-wrapper .notification-items .notification-item .notification-item {
        max-width: 100%;
        min-width: 100%;
        padding: 24px 16px;
        width: 100%
    }
}

.notifications-wrapper .notification-items .notification-item p {
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #fff;
}

@media(max-width:991.98px) {
    .notifications-wrapper .notification-items .notification-item p {
        text-align: center
    }
}

.notifications-wrapper .notification-items .notification-item.notify-success {
    background-color: #198754
}

.notifications-wrapper .notification-items .notification-item.notify-error {
    background-color: #d44e4e
}

.notifications-wrapper .notification-items .notification-item.notify-info {
    background-color: #0dcaf0
}

.notifications-wrapper .notification-items .notification-item.notify-warning {
    background-color: #ffc107
}