/* Address Suggestions Styles */
.address-suggestions {
  list-style-type: none;
  padding: 0;
  margin: 0;
  top: 49px;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  z-index: 1010;
  width: calc(100% - 16px);
}

.address-suggestions li {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.address-suggestions li:hover {
  background-color: #f0f0f0;
}

.suggestion-distance {
  float: right;
  color: #777;
  font-size: 0.8em;
}

/* Loader for Address Suggestions */
.input.loading {
  position: relative;
}

.input.loading::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #60967d;
  border-radius: 50%;
  animation: spinner-border 1s linear infinite;
  display: block;
  pointer-events: none;
}
