<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">function closeFunction() {


    document.getElementById("close-btn").animate([
        {transform: "translateY(0px)"},
        {transform: "translateY(+300px)"}
    ], {
        duration: 1000,
        iterations: Infinity
    });
    setTimeout(function () {
        setCookie('app_banner' , true , 3);
        console.log("CLOSE ACTION CALLED");
        document.getElementById("close-btn").remove();
    }, 1000);

}
function setCookie(cname, cvalue, exdays) {
    const d = new Date();
    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    let expires = "expires="+ d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
    let name = cname + "=";
    let decodedCookie = decodeURIComponent(document.cookie);
    let ca = decodedCookie.split(';');
    for(let i = 0; i &lt;ca.length; i++) {
        let c = ca[i];
        while (c.charAt(0) == ' ') {
            c = c.substring(1);
        }
        if (c.indexOf(name) == 0) {
            return c.substring(name.length, c.length);
        }
    }
    return "";
}</pre></body></html>