<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.notification {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px 25px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background .35s ease-in-out;
  transition: background .35s ease-in-out;
}

.notification:hover {
  background: #f6f6f6;
  text-decoration: none;
}

.notification:focus {
  text-decoration: none;
}

.notification:after {
  font-family: 'Material Icons';
  content: 'arrow_forward';
  color: #315470;
  font-size: 35px;
}

.notification__type {
  text-transform: uppercase;
  margin-bottom: 3px;
  line-height: 12px;
  font-size: 12px;
  font-weight: 600;
}

.notification__title {
  color: #315470;
  font-weight: bold;
  font-size: 24px;
}

.notification--announcement {
  color: #717C1C !important;
}

.notification--update {
  color: #103C90 !important;
}

@media screen and (max-width: 640px) {
  .notification__title {
    font-size: 18px;
  }
  .notification:after {
    font-size: 25px;
  }
}
/*# sourceMappingURL=notification.css.map */</pre></body></html>