.notification {
    display: flex;
    gap: 20px;
    padding: 24px 24px 19px;
    line-height: 24px;
    text-align: initial;
    transition: opacity 0.3s ease;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .notification {
        padding: 24px 32px 19px;
    }
}

@media (min-width: 992px) {
    .notification {
        padding: 24px 48px 19px;
        font-size: 1.125rem !important;
    }
}

@media (min-width: 1200px) {
    .notification {
        padding: 24px 96px 19px;
    }
}

.notification.information {
    background-color: var(--color-db-10);
}

.notification.error {
    background-color: var(--color-er-10);
}

.notification.success {
    background-color: var(--color-sg-10);
}

.notification.warning {
    background-color: var(--color-wo-10);
}

.notification .icon {
    font-size: 24px;
}

.notification .content {
    flex-grow: 1;
}

.notification .content .title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.notification .content .message {
    font-weight: 300;
}

.notification .close-icon {
    font-size: 24px;
    cursor: pointer;
}

div.notification:last-of-type {
    margin-bottom: 40px;
}
