/* Need to check with designer */
/* Need to check with designer */
:host {
  font-family: var(--fw-font-family, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.name-box-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.name-box-container .name-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0 12px;
}
.name-box-container .name-box .name-box-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.name-box-container .name-box .name-box-email {
  font-size: 12px;
  color: #475867;
  line-height: 18px;
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}