@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* The original site uses the "Gilroy" webfont, whose files were not part of the
   downloaded assets. Poppins is a close geometric substitute so the typography
   still matches the original design. Component icon fonts (primeicons) keep their
   own font-family and are not affected. */
html, body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, p, a, span, div {
  font-family: 'Poppins', 'Hind Siliguri', 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* "Locate me" small chip inside the location search field */
.fd-locate-me {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(3, 58, 27, 0.25);
  background: rgba(3, 58, 27, 0.06);
  color: #033A1B;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.fd-locate-me:hover { background: rgba(3, 58, 27, 0.12); }
.fd-locate-me svg { display: block; }
.fd-locate-me ~ input[placeholder="Locate me"] { padding-left: 7.5rem; }
