<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">window.addEventListener("load", function () {
    window.cookieconsent.initialise({
        "type": "opt-out",
        "revokable": true,
        "palette": {
            "popup": {
                "background": "#ed1d08",
                "text": "#fff"
            },
            "button": {
                "background": "#303030",
                "text": "#fff"
            }
        },
        "content": {
            "message": "This website uses cookies to ensure you get the best experience on our website.",
            "link": "View our Privacy Policy",
            "dismiss": "OK",
            "href": "privacy-policy/"
        },
        "elements": {
            "messagelink": "&lt;span id=\"cookieconsent:desc\" class=\"cc-message\"&gt;{{message}} &lt;a aria-label=\"{{link}}\" tabindex=\"0\" class=\"cc-link\" href=\"{{href}}\"&gt;{{link}}&lt;/a&gt;&lt;/span&gt;"
        },
        "onInitialise": function (status) {
            var type = this.options.type;
            var didConsent = this.hasConsented();
            if (type == 'opt-out' &amp;&amp; didConsent) {
                enableAnalytics();
            }
        },
        "onStatusChange": function (status, chosenBefore) {
            var type = this.options.type;
            var didConsent = this.hasConsented();
            if (type == 'opt-out' &amp;&amp; didConsent) {
                enableAnalytics();
            }
        },
        "onRevokeChoice": function () {
            var type = this.options.type;
        }
    })
});

function enableAnalytics() {

    // REMOVE IF THEY DON'T HAVE FACEBOOK PIXEL
    //fbq('track', 'PageView');

    window.dataLayer = window.dataLayer || [];
    function gtag() { dataLayer.push(arguments); }
    gtag('js', new Date());
    gtag('config', 'G-1HNJKGT7FZ', { 'anonymize_ip': true });
}

</pre></body></html>