
.notification {
    --color-background: var(--root-color--red-light);
    --color-border: var(--root-color--red);
    --font-size: var(--root-font-size); /* Reset, use REM */
}

.notification.is-alert {
    --color-background: var(--root-color--red-light);
    --color-border: var(--root-color--red);
}

.notification.is-alert .notification__icon .icon {
    --color-icon: var(--root-color--red);
}

.notification.is-information {
    --color-background: var(--root-color--blue-light);
    --color-border: var(--root-color--blue);
}

.notification.is-information .notification__icon .icon {
    --color-icon: var(--root-color--blue);
}

.notification.is-success {
    --color-background: var(--root-color--green-light);
    --color-border: var(--root-color--green);
}

.notification.is-success .notification__icon .icon {
    --color-icon: var(--root-color--green);
}

.notification.is-warning {
    --color-background: var(--root-color--orange-light);
    --color-border: var(--root-color--orange);
}

.notification.is-warning .notification__icon .icon {
    --color-icon: var(--root-color--orange);
}

.notification__title {
    --color-text: var(--root-color-text);
    --font-family: var(--root-heading-3-family);
    --font-size: var(--root-heading-3-size);
    --font-style: var(--root-heading-3-style);
    --font-weight: var(--root-heading-3-weight);
    --line-height: var(--root-heading-3-line-height);
}

.notification__layout-1 .notification__title {
    --color-text: var(--root-color-text);
    --font-family: var(--root-font-family--primary);
    --font-size: 1em;
    --font-style: normal;
    --font-weight: var(--root-font-weight--bold);
    --line-height: inherit;
}

.notification__text {
    --color-text: var(--root-color-text);
    --font-family: inherit;
    --font-size: 1em; /* Mobiel 16px / > Mobiel 18px */
    --font-style: normal;
    --font-weight: var(--root-font-weight--normal);
    --line-height: inherit;
}

.notification__link .link {
    --color-text: var(--root-color-text);
    --font-family: inherit;
    --font-size: 1em; /* Mobiel 16px / > Mobiel 18px */
    --font-style: normal;
    --font-weight: var(--root-font-weight--normal);
    --line-height: inherit;
}

.notification__link .link:active,
.notification__link .link:focus,
.notification__link .link:hover {
    --color-text: var(--root-color-text-link--hover);
}

.notification {
    display: flex;
    flex-direction: row;
    position: relative;
}

.notification:not(.notification__layout-1) {
    border-style: solid;
    border-width: 0.125rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.notification.notification__layout-1 {
    align-items: center;
}

.notification.notification__layout-1,
.notification + .notification {
    margin-top: 1rem;
}

.notification__icon {
    line-height: 0;
}

.notification .notification__icon {
    margin-right: 1rem;
}

.notification .notification__icon .icon {
    width: 1.667em;
}

.notification__text {
    flex-grow: 1;
}

.notification__layout-1 .notification__title {
    margin-top: 0;
}

.notification__link {
    margin-top: 1rem;
}



.notification {
    font-size: var(--font-size, 1rem);
}

.notification:not(.notification__layout-1) {
    background-color: var(--color-background, hsl(6, 75%, 96%));
    border-color: var(--color-border, hsl(6, 75%, 51%));
}

.notification .notification__icon .icon {
    fill: var(--color-icon, hsl(6, 75%, 51%));
}

.notification__title {
    color: var(--color-text, black);
    font-family: var(--font-family, inherit);
    font-size: var(--font-size, 1.166em);
    font-weight: var(--font-weight, normal);
    font-style: var(--font-style, normal);
    line-height: var(--line-height, inherit);
}

.notification__layout-1 .notification__title em {
    font-style: inherit;
}

.notification__text {
    color: var(--color-text, black);
    font-family: var(--font-family, inherit);
    font-size: 1em;
    font-weight: var(--font-weight, normal);
    font-style: var(--font-style, normal);
    line-height: var(--line-height, inherit);
}

.notification__link .link {
    color: var(--color-text, black);
    font-family: var(--font-family, inherit);
    font-size: 1em;
    font-weight: var(--font-weight, normal);
    font-style: var(--font-style, normal);
    line-height: var(--line-height, inherit);
}
