:host {
  /**
  * @prop --notification-text-color: [DEPRECATED] The notification text color
  */
  --notification-text-color: var(--color-palette-neutral-1000);
  /**
  * @prop --notification-icon-color: The 'clear' icon's color
  */
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-grow: 1;
  align-items: center;
  align-content: center;
  top: -4.375rem;
  left: 0;
  height: 4.375rem;
  width: 100%;
  position: absolute;
  background-color: var(--notification-banner-color-background-standby);
  transition: top 0.5s ease;
  box-sizing: border-box;
  font-family: var(--font-heading-5-font-family);
  font-size: var(--font-heading-5-font-size);
  font-weight: var(--font-heading-5-font-weight);
  letter-spacing: var(--font-heading-5-letter-spacing);
  color: var(--notification-text-color);
}
:host rux-icon {
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem 0 0.625rem;
}
:host .rux-notification__message {
  padding: 1.063rem 1.25rem;
  white-space: nowrap;
  overflow: hidden;
}

:host([hidden]) {
  display: none;
}

:host(.rux-notification-banner-0ba5409c--open) {
  top: 0;
}

:host(.rux-notification-banner--small) {
  height: 2rem;
  font-family: var(--font-body-1-font-family);
  font-weight: var(--font-body-1-font-weight);
  font-size: var(--font-body-1-font-size);
  letter-spacing: var(--font-body-1-letter-spacing);
  line-height: var(--font-body-1-line-height);
  font-weight: var(--font-body-1-font-weight);
}
:host(.rux-notification-banner--small) .rux-notification__message {
  padding: 0.406rem 0.625rem;
}

.rux-notification__message {
  padding: 1.063rem 0;
}

:host([status=off]) {
  background-color: var(--notification-banner-color-background-off);
}
:host([status=off]) rux-icon {
  color: var(--notification-banner-icon-color-fill-off);
}

:host([status=standby]) {
  background-color: var(--notification-banner-color-background-standby);
}
:host([status=standby]) rux-icon {
  color: var(--notification-banner-icon-color-fill-standby);
}

:host([status=normal]) {
  background-color: var(--notification-banner-color-background-normal);
}
:host([status=normal]) rux-icon {
  color: var(--notification-banner-icon-color-fill-normal);
}

:host([status=caution]) {
  background-color: var(--notification-banner-color-background-caution);
}
:host([status=caution]) rux-icon {
  color: var(--notification-banner-icon-color-fill-caution);
}

:host([status=serious]) {
  background-color: var(--notification-banner-color-background-serious);
}
:host([status=serious]) rux-icon {
  color: var(--notification-banner-icon-color-fill-serious);
}

:host([status=critical]) {
  background-color: var(--notification-banner-color-background-critical);
}
:host([status=critical]) rux-icon {
  color: var(--notification-banner-icon-color-fill-critical);
}