A candidate attempted to view the PDF of their Form 2 but the drop down menu (for CSV, .fec, PDF download) is behind another HTML element and the user cannot click to view the PDF.
It looks like the Div w/ class #results-info overlays the download drop down options.
User should be able to click all available options when they expand the drop down for CSV/.fec/PDF.
The options are not clickable.
URL: https://www.fec.gov/data/candidate/H0FL13125/?tab=filings
_Which version of which browser are you using? Does this issue occur with other browsers or with other browser sizes?_
_Tell us what you can about your device and its operating system._

If you resize the browser window (make it less wide relative to the height) you can expose the PDF option and download the PDF.
Doesn't seem to happen on committee profiles pages: https://www.fec.gov/data/committee/C00508416/?cycle=2020&tab=filings
While playing with it in Chrome inspector, we could set the z-index of the table (#DataTables_Table_1 {z-index:1}) or address the pointer-events (with something like .results-info {pointer-events:none}, .results-info * {pointer-events:auto}). Both worked.
Most helpful comment
While playing with it in Chrome inspector, we could set the z-index of the table (
#DataTables_Table_1 {z-index:1}) or address the pointer-events (with something like.results-info {pointer-events:none}, .results-info * {pointer-events:auto}). Both worked.