
pragma-notification-detail {
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 15.625rem;
  padding: 0.5rem;
  z-index: 600;
  will-change: transform;
  background: var(--c-surface-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
pragma-notification-detail .pnd-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-height: 3rem;
  padding: 0 0.5rem;
}
pragma-notification-detail .pnd-header h3 {
  font-size: var(--font-size-base);
  margin: 0;
  line-height: 3rem;
  flex: 1;
}
pragma-notification-detail .pnd-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  will-change: transform;
}
pragma-notification-detail .pnd-body #pnd-items {
  width: 100%;
  background: var(--c-surface-bg);
}
pragma-notification-detail .pnd-body #pnd-items li:hover {
  background: var(--c-hover);
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 0.5rem;
  align-items: center;
  cursor: pointer;
  height: 3rem;
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item svg {
  height: 1.5rem;
  width: 1.5rem;
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item .pnd-item-body {
  flex: 1;
  padding: 0.5rem;
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item:nth-child(odd) {
  background: var(--c-item-bg);
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item:nth-child(odd):hover {
  background: var(--c-hover);
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item[data-severity=information] svg {
  fill: var(--c-text);
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item[data-severity=warning] svg {
  fill: var(--c-warning);
}
pragma-notification-detail .pnd-body #pnd-items .pnd-item[data-severity=error] svg {
  fill: var(--c-error);
}
pragma-notification-detail .close {
  transition: transform 0.2s ease-in;
  transform: translateY(100%);
}
pragma-notification-detail .collapsed {
  display: none;
}
pragma-notification-detail .expandIcon {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}
