Skip to main content
Thank you!
Your Care Team appointment is confirmed.
View your appointment details
Close Menu
Already a member? Log in
window.addEventListener("load", function () { setTimeout(function(){ const video = document.querySelector("video"); if(video){ if(!document.getElementById("videoToggleBtn")){ const btn = document.createElement("button"); btn.innerText = "Pause Background Video"; btn.id = "videoToggleBtn"; btn.style.position = "fixed"; btn.style.bottom = "20px"; btn.style.right = "20px"; btn.style.zIndex = "99999"; btn.style.padding = "10px 15px"; btn.style.background = "#000"; btn.style.color = "#fff"; btn.style.border = "none"; btn.style.borderRadius = "6px"; btn.style.cursor = "pointer"; document.body.appendChild(btn); btn.addEventListener("click", function(){ if(video.paused){ video.play(); btn.innerText = "Pause Background Video"; } else { video.pause(); btn.innerText = "Play Background Video"; } }); } } }, 2000); });