div.found-address {
  background: #ebebeb;
  padding: 20px;
  border-radius: 5px;
  margin-top: 15px;
  display: none;
}

div.gf-postcode-field {
  display: flex;
  gap: 10px;
}

div.loading {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  align-self: center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
