/* FORM */

.form-container {
  position: relative;
  margin-bottom: 32px;
  z-index: 1;
  transition: transform 0.5s ease, height 0.5s ease;
}

.first-inputs {
  position: relative;
}

.second-inputs {
  position: absolute;
  top: -1rem;
  left: calc(100% + 40px);
  width: 100%;
  display: none;
}



/* SIDEBAR TEXT */
.sidebar-text {
  font-size: 2.1rem;
  color: var(--font-color);
  line-height: 2.1rem;
  text-align: center;
  font-weight: bold;
}

.sub-text {
  margin-top: 16px;
  font-size: 0.9rem !important;
  margin-bottom: 32px;
}


/* ADDRESS INPUT */
.input-location-image {
  top: 50px;
  left: 10px;
  width: 22px;
  height: 22px;
  z-index: 3;
  position: absolute;
  align-self: flex-start;
  object-fit: cover;
}

/* PHONE NUMBER FLAG */
.iti__country-list {
  width: 360px !important;
  z-index: 5;
}

/* HIDE BACK BUTTON TO START */
.back-button {
  display: none;
}

/* Google Places Autocomplete Dropdown Styling */

/* Container */
/* Force Google autocomplete dropdown text uniform style */
.pac-container,
.pac-item,
.pac-item-query,
.pac-item span {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #333 !important;
  text-transform: none !important;
}


/* Suggestion rows */
.pac-item {
  display: flex !important;
  align-items: center !important;
  padding: 6px 16px !important;
  font-size: 15px !important;
  color: #333 !important;
  font-weight: 400 !important;  /* normal font everywhere */
  border-bottom: 1px solid #f1f1f1 !important;
}

/* Last item without border */
.pac-item:last-child {
  border-bottom: none !important;
}

/* Remove bold highlight on query match */
.pac-item .pac-item-query {
  font-weight: 400 !important;  /* force normal */
  color: #333 !important;
  font-family: 'Inter', sans-serif !important;
}

/* Remove Google’s location icons */
.pac-icon {
  display: none !important;
}

/* Remove the left padding reserved for the icon */
.pac-item {
  padding-left: 16px !important;
}

/* Highlight background for selected/hover */
.pac-item:hover,
.pac-item-selected {
  background-color: #f9f9f9 !important;
  cursor: pointer !important;
}







/* HANDLE DROPDOWN INPUTS */
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 3 !important;
  max-height: 200px;
  overflow-y: auto;
}
.dropdown-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.dropdown-arrow {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px; color: #666;
}
