/* Notification bell icon in header */
.notification-bell {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  text-decoration: none;

  svg { width: 22px; height: 22px; }
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-crimson);
  color: #fff;
  font-size: var(--text-xxxx-small);
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
