*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
}

:host {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
}

:host(:not([highlight])) ::slotted(duet-heading),
:host(:not([highlight])) ::slotted(duet-paragraph) {
  opacity: 0.7;
}

.duet-notification {
  display: block;
  padding: 16px;
  padding-bottom: 0;
  cursor: pointer;
}
:host(:first-of-type) .duet-notification {
  border-top-left-radius: var(--notification-border-top-radius, 8px);
  border-top-right-radius: var(--notification-border-top-radius, 8px);
}
:host(:last-of-type) .duet-notification {
  border-bottom: 0;
  border-bottom-right-radius: var(--notification-border-bottom-radius, 8px);
  border-bottom-left-radius: var(--notification-border-bottom-radius, 8px);
}
.duet-notification.duet-theme-turva {
  color: rgb(23, 28, 58);
  border-bottom-color: rgb(222, 224, 228);
}
.duet-notification.duet-notification-highlight {
  font-weight: 600;
}
.duet-notification.duet-notification-highlight.duet-theme-turva {
  background: rgb(245, 247, 250);
}
@media (min-width: 62em) {
  .duet-notification:hover {
    background: rgb(240, 247, 250);
  }
  .duet-notification:hover.duet-theme-turva {
    background: rgb(245, 247, 250);
  }
}
.duet-notification a {
  text-decoration: none;
}
.duet-notification a:focus {
  outline: 0;
}
:host(.user-is-tabbing) .duet-notification:focus-within {
  outline: 2px solid;
  outline-offset: -2px;
  outline-color: rgba(0, 119, 179, 0.8);
  z-index: 1;
}
.duet-theme-turva :host(.user-is-tabbing) .duet-notification:focus-within, :host(.user-is-tabbing) .duet-notification:focus-within.duet-theme-turva, .duet-theme-turva2 :host(.user-is-tabbing) .duet-notification:focus-within, :host(.user-is-tabbing) .duet-notification:focus-within.duet-theme-turva2 {
  outline-color: rgba(53, 79, 101, 0.8);
}

.duet-notification-container {
  position: relative;
  display: flex;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(212, 223, 229);
}

.duet-indicator-container {
  position: relative;
  width: 10px;
  margin-top: 6px;
  margin-left: 6px;
}

.duet-notification-content {
  flex: 1;
}

.duet-notification-date {
  position: absolute;
  top: 2px;
  right: 0;
  width: 96px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgb(8, 42, 77);
  text-align: right;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 35.9375em) {
  .duet-notification-date {
    width: auto;
  }
}
.duet-theme-turva .duet-notification-date {
  color: rgb(113, 118, 132);
}

@media (min-width: 62em) {
  :host(:not([highlight])) ::slotted(duet-heading),
  :host(:not([highlight])) ::slotted(duet-paragraph) {
    opacity: 1;
  }
  .duet-notification {
    padding: 16px;
    border-bottom: 1px solid rgb(212, 223, 229);
  }
  .duet-notification:hover {
    background: rgb(228, 241, 247);
  }
  .duet-notification.duet-notification-highlight {
    font-weight: 600;
    background: rgb(240, 247, 250);
  }
  .duet-notification-container {
    padding-bottom: 0;
    border-bottom-style: none;
  }
}
::slotted(duet-heading) {
  padding-right: 80px !important;
}

::slotted(duet-paragraph) {
  margin-bottom: 2px !important;
}

:host(.duet-theme-turva2) .duet-notification.duet-theme-turva {
  color: rgb(23, 42, 59);
  border-bottom-color: rgb(251, 225, 209);
}
:host(.duet-theme-turva2) .duet-notification.duet-notification-highlight.duet-theme-turva {
  background: rgb(253, 247, 242);
}
:host(.duet-theme-turva2) .duet-notification-badge.duet-theme-turva {
  background: rgb(230, 23, 64);
}
@media (min-width: 62em) {
  :host(.duet-theme-turva2) .duet-notification:hover.duet-theme-turva {
    background: rgb(251, 235, 225);
  }
}