ul.dropdown-address {
  display: flex;
  width: 100%;
  max-height: 250px;
  padding: 10px;
  overflow-y: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 20px;
  background: #FFF;
  position: absolute;
  z-index: 1000;
  box-shadow: 0px 1px 4px 0px rgba(114, 138, 155, 0.25);
}
.dropdown-address li {
  list-style-type: none;
  width: 100%;

}
.dropdown-address li a {
  text-decoration: none;
  display: flex;
  padding: 14px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  background: #FFF;
  line-height: normal;
  color: #181818;
  text-overflow: ellipsis;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;

  width: 100%;
  transition: var(--transition-time-all);
}


.dropdown-address li:hover a {
  color: #181818;
  background: #F4F4F4;
  cursor: pointer;
}