.autocomplete-wrapper {
  display: contents;
}

.autocomplete-label {
  display: block;
  margin-bottom: 4px;
}

.autocomplete {
  position: relative;
}

.autocomplete-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(111, 121, 120, 0.38);
  outline: none;
  padding: 4px 12px;
  width: calc(100% - 24px);
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.015625rem;
  color: #111111;
}

.autocomplete-input:focus {
  border-bottom-color: #3f4948;
}

.autocomplete-input--multiline {
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  margin: 0;
  vertical-align: top;
  resize: none;
  overflow: hidden;
}

.autocomplete-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: #dae5e3;
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
              0px 4px 5px 0px rgba(0, 0, 0, 0.14),
              0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.autocomplete-menu-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  min-height: 32px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111111;
  position: relative;
  overflow: hidden;
}

.autocomplete-menu-item:hover::after {
  background-color: rgba(63, 73, 72, 0.08);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.autocomplete-menu-item[data-focused="true"]::after {
  background-color: rgba(63, 73, 72, 0.12);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.autocomplete-menu-empty {
  cursor: default;
  color: rgba(0, 0, 0, 0.6);
}
