.address-search-container {
  position: relative;
  width: auto;
  min-height: 32px;
}

.address-search-input {
    background: transparent;
    border-style: none;
    color: #000000;
    font-size: 14px;
    height: auto;
    line-height: 32px;
    width: 100%;
    padding:0;
    padding-left: 0.5em;
    padding-right: 0.5em;
    outline: 0 !important;
}

.address-search-input::-webkit-input-placeholder {
  color: #d8d6d6!important;
  font-weight: 200!important;
}

.loading-icon {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #0f6cbd;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.address-not-found {
  padding: 5px;
}


.addressAutosearchFocused {
    background: transparent;
    border-width: 1px;
    border-color: #000000;
    color: #000000;
    font-size: 14px;
    line-height: 2.5rem;
    width: 98%;
    padding-left: 0.5em;
    padding-right: 0.5em;
    outline: 0 !important;
}

.suggestions-dropdown-content {
    display: block;
    background-color: #f6f6f6;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    width: 100%;
  }

  .suggestions-dropdown-content div {
    color: black;
    padding: 12px 8px;
    text-decoration: none;
    display: block;
    text-align: left;
    cursor: pointer;
   
  }
  .suggestions-dropdown-content div:hover {background-color: #f1f1f1;}

  .control-error {
    color: #e82727;
    font-size: 0.9rem;
    padding: 10px;
  }

  @keyframes spin {
    0% {
      transform: translateY(-50%) rotate(0deg); /* Combine translation and rotation */
    }
    100% {
      transform: translateY(-50%) rotate(360deg); /* Combine translation and rotation */
    }
  }