.place-ac-wrap {
  position: relative;
  width: 100%;
}
.place-ac-wrap > input {
  width: 100%;
}
.place-ac-list {
  position: fixed;
  z-index: 5000;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  max-height: min(280px, 42vh);
  overflow-y: auto;
  background: #0a0a12;
  border: 1px solid rgba(119, 119, 125, 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}
.place-ac-list[hidden] {
  display: none !important;
}
.place-ac-item {
  display: block;
  width: 100%;
  padding: 0.4rem 0.65rem;
  border: 0;
  background: transparent;
  color: #e4e4ea;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  line-height: 1.3;
}
.place-ac-item:hover,
.place-ac-item.is-active {
  background: rgba(41, 137, 255, 0.14);
  color: #d9d9d9;
}
.place-ac-item-sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 10px;
  color: #66666c;
}
