/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* spinner + overlay : after search */
/* Overlay */
.gf-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
}
.gf-overlay.is-open {
  display: flex;
}
/* Box */
.gf-overlay__box {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  text-align: center;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
/* Spinner */
.gf-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0,0,0,.2);
  border-top-color: rgba(0,0,0,.8);
  border-radius: 50%;
  display: inline-block;
  margin: 0 auto;
  animation: gfspin .8s linear infinite;
}
@keyframes gfspin {
  to { transform: rotate(360deg); }
}
