
const modal = document.getElementById("IYwSWYkaDGaDxys");
const closeBtn = document.getElementById("TZoEKUmlzzBxFwU");

// When the user clicks on the close button, close the modal
closeBtn.onclick = function () {
    modal.style.display = "none";
}

window.onclick = function (event) {
    if (event.target == modal) {
        event.stopPropagation();
    }
}