- Click the button below to open the billing site in a new tab.
- Create a new account if you don’t have one.
- Proceed with your payment.
- Close the tab when completed to return to this page.
document.addEventListener('DOMContentLoaded', function () {
const ffForms = document.querySelectorAll('.ff-conversational-container');
ffForms.forEach(function (form) {
form.addEventListener('touchmove', function (e) {
e.stopImmediatePropagation();
}, { passive: true });
});
});