/*---------------------------------
----- dimension variables --------
----------------------------------*/
/*------ standard elements padding & margin -------*/
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
/**
** Official Font sizes
------------------------------- */
/*---------------------------------
----- dimension variables --------
----------------------------------*/
/*------ standard elements padding & margin -------*/
/**
* mobile first breakpoints based on design specification 
* designs are delivered in 3 sizes mobile(375px -> default), tablet(768px -> tablet), desktop(1440px -> desktop-l)
*/
/**
** Official Font sizes
------------------------------- */
.uxn-notification-text {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.uxn-notification-text__wrapper_expanded {
  max-height: unset !important;
  overflow: unset !important;
}

.uxn-notification-text__wrapper_gradient::before {
  content: "";
  width: 100%;
  height: 114px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
@media (min-width: 1200px) {
  .uxn-notification-text__wrapper_gradient::before {
    height: 150px;
  }
}

.uxn-notification-text__icon {
  transform: rotate(180deg);
}

.uxn-notification-text__wrapper {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
  max-height: 114px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .uxn-notification-text__wrapper {
    max-height: 150px;
  }
}
.uxn-notification-text__wrapper .uxn-notification-text__error {
  font-family: "Frutiger-Light", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  color: #ff0201;
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.uxn-notification-text__wrapper .uxn-notification-text__subject {
  margin-bottom: 4px;
}
@media (min-width: 1200px) {
  .uxn-notification-text__wrapper .uxn-notification-text__subject {
    margin-bottom: 6px;
  }
}
.uxn-notification-text__wrapper .uxn-notification-text__message {
  color: var(--uxn-notification-item-text-color);
}
.uxn-notification-text__wrapper .uxn-notification-text__message .uxn-text-link {
  white-space: nowrap;
}

.uxn-notification-item--information .uxn-notification-text__subject {
  color: #131313;
}

.uxn-notification-item--warning .uxn-notification-text__subject {
  color: #ff9302;
}

.uxn-notification-item--error .uxn-notification-text__subject {
  color: #ff0201;
}