I am creating a little box opening game where my users can open a box and an animated spinner scrolls along all of the prizes and lands on their winning prize (indicated by the black line in the middle in the pic below)

After the animation, a whole bunch of box elements that represent the prizes are added to the page. What I am trying to figure out is:
Using jQuery, how can I find which box the black line lands on?
Any help would be appreciated, thanks.
HTML STRUCTURE
<section class="boxes box-background">
<div class="winning-line" id="line"> </div>
<div class="container boxes-container">
<div class="row">
<div class="col-12">
<div class="open-box">
<div id="unbox-area" id="unbox">
<div id="cardList">
<div class="card" id="prize1">...</div>
<div class="card" id="prize2">...</div>
<div class="card" id="prize3">...</div>
//so on
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
PROBLEM
Currently, using the code below, I can only get the "open-box" element, not the actual individual "card" class element that the black line landed on.
let blackLineEl = document.getElementById("line");
let rect = blackLineEl.getBoundingClientRect();
let left = rect.x;
let originalDisplay = blackLineEl.style.display;
blackLineEl.style.display = "none"
let winner = document.elementFromPoint(left, 180.0);
blackLineEl.style.display = originalDisplay
console.log(winner.className);
I have tried adjusting the static top position to different values, but no luck.