.dropdown-address {
  width: 100%;
  max-height: 255px;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute !important;
  top: calc(100% + 6px);
  border-radius: 5px;
  z-index: 1000;
}
.dropdown-address ul {
  color: #7F7F7F;
  padding: 0;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--bw-light-grey);
  background-color: var(--background);
}
.dropdown-address li {
  list-style-type: none;
  padding: 3px 10px;
}
.dropdown-address li:hover {
  background-color: #f6f2f2;
}
.dropdown-address li a {
  color: #7F7F7F;
  display: block;
  padding: 7px;
  text-decoration: none;
}
.dropdown-address li a:hover, .dropdown-address li:hover a {
  color: var(--bw-black);
}