.combo-wrap {
  position: relative;
}

.combo-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  background: #fff;
}

.combo-input {
  flex: 1;
  padding: 6px 8px;
  padding-right: 40px;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: #000;
  box-sizing: border-box;
  min-width: 0;
}

.combo-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: #000;
  user-select: none;
  z-index: 1;
}

.combo-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  vertical-align: middle;
}

.combo-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  min-width: calc(100% + 2px);
  width: max-content;
  max-width: 260px;
  max-height: 160px;
  overflow-y: auto;
  z-index: 10000;
  box-sizing: border-box;
}

.combo-list.open {
  display: block;
}

.combo-list li {
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  color: #000;
  white-space: nowrap;
}

.combo-list li:hover {
  background: #fff3e0;
}

.combo-list li.selected {
  background: #FFB800;
  color: #000;
  font-weight: 600;
}

.combo-list li.selected:hover {
  background: #FFB800;
}

.combo-list li.combo-empty {
  color: #888;
  cursor: default;
  font-style: normal;
  font-size: 12px;
  text-align: left;
  padding: 8px 14px;
}

.combo-list li.combo-empty:hover {
  background: transparent;
}

.combo-list li.highlighted {
  background: #ffe0b2;
  font-weight: 600;
}
