Contact Us
Have a question about Rigboy Pro or need help with your order? Our team is here to assist you.
[email protected]
Email: [email protected]
Customer Support
Response Time: We typically respond to all inquiries within 24 hours (Saturday – Thursday)
document.addEventListener('DOMContentLoaded', function() {
const trigger = document.getElementById('policy-trigger');
const menu = document.getElementById('my-floating-menu');
const closeBtn = document.getElementById('close-menu-btn');if (trigger && menu) {
// Open/Toggle from the main "Policy" icon
trigger.addEventListener('click', function(e) {
e.preventDefault();
e.stopPropagation();
menu.classList.toggle('show-menu');
});// Close strictly when the 'X' is clicked
if (closeBtn) {
closeBtn.style.cursor = 'pointer';
closeBtn.addEventListener('click', function(e) {
e.stopPropagation();
menu.classList.remove('show-menu');
});
}// Close if clicking anywhere outside the menu
document.addEventListener('click', function(event) {
if (!menu.contains(event.target) && !trigger.contains(event.target)) {
menu.classList.remove('show-menu');
}
});
}
});