#overlay {
  width: 200px;
  max-width: calc(100vw - 125px);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.addressInputWrap { position: relative; }
#addressForm input[type="text"] {
  width: 100%;
  height: 48px;
  padding: 9px 11px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
}
#addressForm .addressInputHint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 11px 8px;
  margin: 0;
  box-sizing: border-box;
  pointer-events: none;
  color: #333;
  line-height: 1.25;
}
.addressInputHint span { font-size: 13px; font-weight: 700; line-height: 1.1; }
.addressInputHint small { margin-top: 2px; font-size: 11px; font-weight: normal; font-style: italic; color: #65717c; }
#address:focus + .addressInputHint,
#address:not(:placeholder-shown) + .addressInputHint { display: none; }
#address:focus { outline: 2px solid rgba(52, 152, 219, 0.22); border-color: #3498db; }
#suggestions { width: 100%; margin-top: -8px; }

@media (max-width: 768px) {
  #overlay { width: 190px; }
  .addressInputHint span { font-size: 12px; }
}
