.notification {
    width: 100%;
    display: flex;
}
.notification-header {
    width: 10%;
    background-color: #AF0000;
    padding: 10px 15px;
}
.notification-title {
    color: #FFF;
    align-items: center;
    font-weight: 600;
}
.notification-title > i {
    margin-right: 15px;
}
.notification-content {
    width: 90%;
    display: flex;
    overflow: hidden;
    padding: 10px 0;
}
.notification-scroll{
    display: flex;
}
.notification-item {
    margin-right: 20px;
    font-weight: 600;
}
.notification-item > i {
    margin-right: 15px;
    color: RED;
}

@media (max-width: 480px) {
    .notification-header {
        width: 32%;
    }
    .notification-content {
        width: 68%;
    }
}