window.addEventListener("load", function () {
    window.cookieconsent.initialise({
        "type": "opt-out",
        "revokable": true,
        "palette": {
            "popup": {
                "background": "#bb141b",
                "text": "#fff"
            },
            "button": {
                "background": "#343434",
                "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": "<span id=\"cookieconsent:desc\" class=\"cc-message\">{{message}} <a aria-label=\"{{link}}\" tabindex=\"0\" class=\"cc-link\" href=\"{{href}}\">{{link}}</a></span>"
        },
        "onInitialise": function (status) {
            var type = this.options.type;
            var didConsent = this.hasConsented();
            if (type == 'opt-out' && didConsent) {
                enableAnalytics();
            }
        },
        "onStatusChange": function (status, chosenBefore) {
            var type = this.options.type;
            var didConsent = this.hasConsented();
            if (type == 'opt-out' && 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 });
}

