/* Account status supplied by manual_verification. Never infer a badge from a listing email or IP. */
.mv-au-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: 4px 9px;
  border: 1px solid #81c9ae;
  border-radius: 99px;
  background: #ecf8f2;
  color: #0d6c49;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
  vertical-align: middle;
  white-space: normal;
}
.mv-au-trust-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0d8c61;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}
.mv-au-trust-badge--certified {
  border-color: #a9c8ee;
  background: #eff6ff;
  color: #155597;
}
.mv-au-trust-badge--certified .mv-au-trust-badge__icon {
  background: #216cba;
}
/* The name is part of the badge; do not repeat it on another line. */
.mv-au-account-identity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  padding: 3px 3px 3px 10px;
  border: 1px solid #74c4a1;
  border-radius: 999px;
  background: #f4fbf7;
  color: #1b3340;
  vertical-align: middle;
  white-space: nowrap;
  cursor: help;
  line-height: 1.25;
}
.mv-au-account-identity__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.mv-au-account-identity__status {
  flex: none;
  padding: 5px 9px;
  border-radius: 999px;
  background: #08774f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.mv-au-account-identity--certified {
  border-color: #80aee2;
  background: #f1f7ff;
}
.mv-au-account-identity--certified .mv-au-account-identity__status {
  background: #195da7;
}
.mv-au-account-identity:focus-visible {
  outline: 2px solid #195da7;
  outline-offset: 3px;
}
