.react-autosuggest__container {
  position: relative;
}

/* .react-autosuggest__input {
    width: 240px;
    height: 30px;
    padding: 10px 20px;
    font-family: Helvetica, sans-serif;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid #aaa;
    border-radius: 4px;
  } */

.react-autosuggest__input {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  width: 100%;
  height: calc(2.125rem + 2px);
  padding: 0.4375rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e9eef2;
  border-left: none;
  border-radius: 0 10rem 10rem 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.react-autosuggest__input::placeholder {
  color: #aaa;
}

.react-autosuggest__input--focused {
  outline: none;
}
.react-autosuggest__input--focused-within {
  outline: none;
}
/* .react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
} */

.react-autosuggest__suggestions-container {
  display: none;
}

.react-autosuggest__suggestions-container--open {
  width: 100%;
  display: block;
  position: absolute;
  border: 1px solid lightgray;
  background-color: #fff;
  font-weight: 300;
  font-size: 16px;
  /* border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; */
  border-radius: 10px;
  z-index: 2;
  max-height: 300px;
  overflow: auto;
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #eee;
  margin: 10px;
}

.react-autosuggest__suggestion--highlighted {
  background-color: #ddd;
}
