.address_city {
  position: relative;
}

div.gf_machship_loading {
  width: 100%;
  position: absolute;
  top: 45px;
  z-index: 10;
  background-color: #fff;
  font-size: 1.5rem;
}

.gf_machship_spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.gf_machship_spinner:after {
  content: " ";
  display: block;
  width: 15px;
  height: 15px;
  margin: 8px 3px;
  border-radius: 50%;
  border: 2px solid #555;
  border-color: #555 transparent #555 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

ul.gf_machship_select_locations {
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  background-color: #fff;
  position: absolute;
  top: 45px;
  z-index: 10;
}

ul.gf_machship_select_locations li {
  list-style-type: none;
  margin: 0;
  padding: 2px 5px;
  font-size: 1.5rem;
}

ul.gf_machship_select_locations li:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

div.gf_machship_backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9;
}