support-aa
Somehow, it happens on your site specific.
If above CSS breaks mobile, you can use media queries to apply this rule to large screens only. For example:
@media (min-width: 480px) {
a[name=IMLTargetOnlyBuyers] {
position: absolute;
top: -128px;
}
}
This code will affect screen size from 480px and above only.