Create Account

Join the future of wealth management

Already have an account? Sign In

© 2026 Everwealth Financial

(function() { // 1. Create and inject the CSS Styles const style = document.createElement('style'); style.textContent = ` .wabtn [wa-tooltip] { position: relative; cursor: default; } .wabtn [wa-tooltip]:hover::before { content: attr(wa-tooltip); font-size: 16px; text-align: center; position: absolute; display: block; right: calc(0% - 100px); left: null; min-width: 200px; max-width: 200px; bottom: calc(100% + 40px); transform: translate(-50%); animation: fade-in 500ms ease; background: #00E785; border-radius: 4px; padding: 10px; color: #ffffff; z-index: 1; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } `; document.head.appendChild(style); // 2. Create the main wrapper div const waContainer = document.createElement('div'); waContainer.className = 'wabtn'; waContainer.id = 'wabutton'; // 3. Assemble the inner HTML (Anchor & SVG) waContainer.innerHTML = ` `; // 4. Append the fully built element to the body document.body.appendChild(waContainer); })();