.notification-list {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    z-index: 9999999999;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
}

.notification-list::-webkit-scrollbar {
    width: 0;
}

.notification-list__item {
    display: inline-table;
    background: #000;
    color: #fff;
    max-width: 300px;
    width: 300px;
    padding: 10px;
    margin: 0 0 10px 0;
    overflow: hidden;
}

.notification-list__item-title {
    font-family: 'black', sans-serif;
    font-size: 25px;
    line-height: 25px;
}

.notification-list__item-content {
    font-size: 18px;
    line-height: 28px;
}

.notification-type__success {
    background: #98c22d;
}

.notification-type__error{
    background: #f31700;
}

.notification-type__warning {
    background: #ffc000;
}

.notification-type__information {
    background: #0058e9;
}

.notification-item__closed {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
}