#full_messages {
  position: absolute;
  right: 1vw;
  top: 0;
  width: 42vw;
  z-index: 99;
  padding: 5px;
  font-size: 13px;
  line-height: 0.9;
}
#notices, #errors {
  text-align: center;
  div { border-radius: 5px; margin-top: 5px; padding: 5px; }
  div:empty { padding: 0; }
}
#notices {
  div { background-color: lightgreen; }
  color: green;
}
#errors {
  div { background-color: lightpink; }
  color: maroon;
}

div#errors, div#notices{ 
  & > div {
    animation: appear-then-fade 8s 300ms both;
    &:hover { animation-play-state: paused; }
  }
}

span.errors { color: var(--gapmed-pink); }
