/* SpaceNET Astro bubbles click fix
   Hidden bubbles have opacity:0 but were still clickable.
   Only bubbles with .visible should receive clicks.
*/
#astro-bubbles .astro-bubble {
  pointer-events: none !important;
}

#astro-bubbles .astro-bubble.visible {
  pointer-events: auto !important;
}
