
/* Invisible anchor that shares exactly the same formula as the CSS line */
.falling-dots-container .falling-line-anchor{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:var(--falling-line-w);
  height:var(--falling-line-h);
  top: calc( (var(--dot-count) * var(--dot-step)) + var(--dot-fall) + var(--falling-line-offset) + var(--line-touch) );
  pointer-events:none;
  opacity:0;
}
