pn-button-dropdown .pn-button-dropdown > pn-button > .pn-button {
  min-height: initial;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media screen and (max-width: 767px) {
  .sr-only-mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}

pn-address-autofill {
  display: flex;
  flex-direction: column;
  width: 50rem;
}
pn-address-autofill pn-input {
  width: 50%;
}
pn-address-autofill .input-container-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
pn-address-autofill .label-container {
  color: #5e554a;
  font-size: 0.875em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
pn-address-autofill .autocomplete-items {
  position: absolute;
  border-radius: 0.8rem;
  border: 0.1rem solid #5e554a;
  width: 100%;
  max-height: 30rem;
  overflow-y: auto;
}
pn-address-autofill .autocomplete-items:hover,
pn-address-autofill .autocomplete-items :focus {
  border: 0.1rem solid #00a0d6;
}
pn-address-autofill .autocomplete-items div {
  padding: 1.6rem;
  cursor: pointer;
  background-color: #fff;
  border: 0.1rem solid transparent;
}
pn-address-autofill .autocomplete-items div:first-child {
  border-radius: 0.8rem 0.8rem 0 0;
}
pn-address-autofill .autocomplete-items div:last-child {
  border-radius: 0 0 0.8rem 0.8rem;
}
pn-address-autofill .autocomplete-items div:hover {
  background-color: #e0f8ff;
}
pn-address-autofill .autocomplete-items .autocomplete-active {
  background-color: #e0f8ff;
}
pn-address-autofill .autocomplete-items:empty {
  display: none;
}
pn-address-autofill pn-input {
  max-width: 25rem;
  width: 100%;
}