Step 1: Book a Time That Works Best For You
Step 2: Tell Us a Little About Yourself
.scout-page-banner {
padding-bottom: 40px !important;
min-height: 430px !important;
padding-top: 90px !important;
}
iframe.timezest-wrap {
border: none;
margin: 0 auto;
display: block;
}
@media(min-width:920px){
#timezest-frame {
width:900px;
height:700px;
}
}
@media(max-width:919px){
#timezest-frame {
width:100%;
height:700px;
}
}
/*NOTE: Attempted to hide the confirm button in Timezest and click programatically but CORS policies prohibited it
// When the page is ready
window.addEventListener(‘load’, function () {
if (document.querySelector(‘body’) !== null) { // Some element that should be rendered by now before we execute code
const iframeStyle = document.createElement(‘style’);
iframeStyle.textContent = `
form.new_client_details_form button[type=”submit”] {
display: none !important;
}
`;
//document.head.appendChild(iframeStyle);
//document.getElementById(“myframe”).contentDocument
document.getElementById(“timezest-frame”).contentDocument.head.appendChild(iframeStyle);
}
});
*/