.email-domain-suggestions {
  position: absolute;
  z-index: 100001;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.3125rem;
  box-shadow: 0 6px 24px rgba(140, 152, 164, 0.25);
  list-style: none;
  margin: 2px 0 0;
  padding: 0.25rem 0;
  max-height: 200px;
  overflow-y: auto;
  min-width: 200px;
}
.email-domain-suggestions-item {
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #495057;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.email-domain-suggestions-item strong {
  font-weight: 600;
  color: #212529;
}
.email-domain-suggestions-item:hover, .email-domain-suggestions-item.active {
  background-color: rgba(28, 167, 102, 0.08);
  color: #1CA766;
}
.email-domain-suggestions-item:hover strong, .email-domain-suggestions-item.active strong {
  color: #1CA766;
}

.email-input-wrapper {
  position: relative;
}
.email-input-wrapper .email-domain-suggestions--inline {
  top: 100%;
  left: 0;
  right: 0;
  min-width: unset;
}