.saved-addresses-wrapper {
  display: flex;
  column-gap: 4px
}

.saved-addresses-wrapper h6 {
  white-space: nowrap;
  align-items: center;
  display: flex;
  justify-content: start;
}

.saved-addresses-wrapper #save_addresses_chips_list {
  padding: 10px;
  border: solid #ccc 1px;
  overflow-x: auto;
  border-radius: 10px;
  flex-wrap: nowrap;
  column-gap: 5px;
  display: flex;
}

.md-chip {
  display: inline-flex;
  background: rgba(var(--shop-color-rgb), 0.5);
  padding: 0 8px;
  border-radius: 32px;
  font-size: 14px;
  column-gap: 4px;
  height: fit-content;
  user-select: none;
  cursor: pointer;
}

.md-chip span {
  white-space: nowrap;
}

.md-chip:hover {
  background: rgba(var(--shop-color-rgb), 0.2);
}

.md-chip-remove {
  display: inline-block;
  background: #aaa;
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  font: inherit;
  line-height: 20px;
}

.md-chip-remove::after {
  color: white;
  content: "x";
}

.md-chip-remove:hover {
  background: #999;
}

@media only screen and (max-width: 580px) {
  .saved-addresses-wrapper {
    flex-direction: column;
  }
}