No one selector works

Hello!
I process 450+ sites with exhibition events. I read the forum and solve problems, but I came across a couple of sites that selectors don’t perceive. I applied ELEMENT CLICK first, because i have SHOW MORE button. But the popup window does not respond to any selector. Even HTML selector does not work. Please help!
Thank you!

In the console i can see site and mail:

Url: https://www.agritechnica.com/en/exhibitors-products#/
and one more site same problem:!
https://altenpflege-messe.de/ap_messe_aussteller_de#/suche/v_sg=0;v_fg=0

Sitemap:
{"_id":"agritechnica","startUrl":["https://www.agritechnica.com/en/exhibitors-products#/"],"selectors":[{"id":"company","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.LMA5IJ-v-O","multiple":true,"delay":"500","clickElementSelector":".LMA5IJ-e-H div div:nth-of-type(2) div.LMA5IJ-u-a","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"","type":"SelectorText","parentSelectors":["company"],"selector":"","multiple":false,"regex":"","delay":0}]}

Try this, it has no paginator or Show More. I'm using "Body" for selector. Scraper is intentionally limited to 6 companies for testing. You can remove the limits by deleting the nth of type bits, leaving only:
div.listContentContainer > div[class^='LMA'][style]

Sitemap:
{"_id":"agritechnica-test4","startUrl":["https://www.agritechnica.com/en/exhibitors-products#/"],"selectors":[{"id":"Company","type":"SelectorText","parentSelectors":["Popup"],"selector":"div[itemprop='legalName']","multiple":false,"regex":"","delay":0},{"id":"Addr","type":"SelectorText","parentSelectors":["Popup"],"selector":"div[itemprop='address']","multiple":false,"regex":"","delay":0},{"id":"Website","type":"SelectorText","parentSelectors":["Popup"],"selector":"a[itemprop='url']","multiple":false,"regex":"","delay":0},{"id":"Click companies","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"body","multiple":true,"delay":"6000","clickElementSelector":"div.listContentContainer > div[class^='LMA'][style]:nth-of-type(n+2):nth-of-type(-n+6)","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Phone","type":"SelectorText","parentSelectors":["Popup"],"selector":"div[itemprop='telephone']","multiple":false,"regex":"","delay":0},{"id":"Email","type":"SelectorText","parentSelectors":["Popup"],"selector":"span:contains('Email') ~ a[class='gwt-Anchor']","multiple":false,"regex":"","delay":0},{"id":"Stand","type":"SelectorText","parentSelectors":["Popup"],"selector":" div > div[class^='LMA'] > div.gwt-Label:contains(' Stand')","multiple":false,"regex":"","delay":0},{"id":"Exhibitor type","type":"SelectorText","parentSelectors":["Popup"],"selector":"div[class^='LMA'] > div[style^='margin-left'] > div.gwt-Label:contains('exhibitor')","multiple":false,"regex":"","delay":0},{"id":"Fax","type":"SelectorText","parentSelectors":["Popup"],"selector":"div[itemprop='faxNumber']","multiple":false,"regex":"","delay":0},{"id":"Category","type":"SelectorText","parentSelectors":["Popup"],"selector":" div > div[class^='LMA'] > span[style] ~ div.gwt-Label[style^='color: rgb(255']","multiple":false,"regex":"","delay":0},{"id":"Popup","type":"SelectorElement","parentSelectors":["Click companies"],"selector":"div.popupContent","multiple":false,"delay":0}]}

OMG - magic! Leemeng thank you very much! I remove nth like you say, but last problem is stop on 25 position - Acres Machinery . Why does it work like this?