/* Find-My-Property pill: auto-hide on scroll.
   Delivered on a fresh path so it reaches devices that cached the older files. */
.te-fab { transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .28s ease; }
.te-fab--hidden {
  animation: none !important;                 /* cancel entrance/glow so the hide transform wins */
  transform: translateY(170%) !important;
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .te-fab { transition: opacity .2s ease; }
  .te-fab--hidden { transform: none !important; }
}
