.fg-header-typeahead {
  flex-grow: 1;
  margin-left: 0;
  margin-right: 25px;
}

.fg-header-typeahead-input {
  width: 100%;
  height: 100%;
  position: relative;
}

.fg-header-typeahead-input::-webkit-input-placeholder {
  color: #d74937;
}

.fg-header-typeahead-input::-moz-placeholder {
  color: #d74937;
  opacity: 1;
}

.fg-header-typeahead-input:-ms-input-placeholder {
  color: #d74937;
}

.fg-header-typeahead-input:-moz-placeholder {
  color: #d74937;
  opacity: 1;
}

.fg-header-typeahead-input::-ms-clear {
  display: none;
}

.fg-header-typeahead-result-list {
  position: absolute;
  width: 100%;
  max-height: 394px;
  left: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 35px 0 0 0;
  padding: 0;
  box-shadow: none;
  list-style: none;
  text-align: left;
  border-radius: 0 0 8px 8px;
}

.fg-header-typeahead-result-link {
  width: 100%;
  height: 65px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  line-height: 30px;
  align-items: center;
}

.fg-header-typeahead-result-item-avatar-img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}

.fg-header-typeahead-result-item-avatar-img--circle {
  border-radius: 50%;
}

.fg-header-typeahead-result-item-label {
  display: inline-block;
  max-width: calc(100% - 50px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1.5px solid transparent;
}

.fg-header-typeahead-result-item--active .fg-header-typeahead-result-item-label {
  border-color: #08b58e;
}

.fg-header-typeahead-result-item-label em {
  font-style: normal;
}

.fg-header-typeahead-result-list::-webkit-scrollbar {
  width: 5px;
}

.fg-header-typeahead-result-list::-webkit-scrollbar-thumb,
.fg-header-typeahead-result-list::-webkit-scrollbar-thumb:hover,
.fg-header-typeahead-result-list::-webkit-scrollbar-thumb:active {
  background: #999999;
  border-radius: 5px;
}

.fg-header-typeahead-result-list::-webkit-scrollbar-track,
.fg-header-typeahead-result-list::-webkit-scrollbar-track:hover,
.fg-header-typeahead-result-list::-webkit-scrollbar-track:active {
  background: transparent;
  border-radius: 5px;
}

.fg-header-typeahead-result-list::-webkit-scrollbar-corner {
  background: transparent;
}