jQuery .Click event trigger goes beyond input element that it’s assigned to

Solution:

It was the label all along!

In this line I wrap the entire container that’s holding my tags with a label. This for some reason expands my iput to the entire label region.

jQuery(".wpcf7").before('<label class="tag-label">Selected Course<span style="font-size: 18px">(s)</span><span style="color:red;">*</span><div id="course-tag-container"/></label>');

When changing the label to a paragraph and stopping it right before the div, it worked as intended.

jQuery(".wpcf7").before('<p class="tag-label">Selected Course<span style="font-size: 18px">(s)</span><span style="color:red;">*</span></p><div id="course-tag-container"/>');