RESERVATION SEANCE D’ESSAI

(GRATUIT ET SANS ENGAGEMENT)

Tu souhaites réserver un cours classique et aucune de ces heures ne te convient ? envoie nous un message, et nous conviendrons d’un jour et d’une heure qui te conviennent !

document.addEventListener('DOMContentLoaded', function() { const checkMollieButton = setInterval(function() { const iframe = document.querySelector('iframe[src*="mollie"]'); if (iframe) { try { const iframeDoc = iframe.contentDocument || iframe.contentWindow.document; const button = iframeDoc.querySelector('button, input[type="submit"]'); if (button) { // Styles de base button.style.cssText = ` background: #E31937 !important; color: white !important; padding: 15px 40px !important; font-size: 18px !important; border-radius: 5px !important; font-weight: bold !important; text-transform: uppercase !important; margin: 20px auto !important; display: block !important; max-width: 300px !important; border: none !important; cursor: pointer !important; transition: all 0.3s ease !important; `; // Gestion du survol button.onmouseover = () => { button.style.background = '#C0102D !important'; button.style.transform = 'translateY(-2px) !important'; }; button.onmouseout = () => { button.style.background = '#E31937 !important'; button.style.transform = 'none !important'; }; clearInterval(checkMollieButton); } } catch(e) { console.error("Erreur de style Mollie:", e); } } }, 1000); // Vérifie toutes les secondes });
Verified by MonsterInsights