(function() {
    var gtag_id = 'G-EKZF82FNQC';
    var top = document.querySelector('head'); // reach out to the parent window and get the head element

    var script = document.createElement('script'); //create a new script element
    script.src = 'https://www.googletagmanager.com/gtag/js?id=' + gtag_id; //sets the src attribute
    script.async = true;
    top.appendChild(script); // appends the newly created script element at the end of the top window head element

	window.dataLayer = window.dataLayer || [];
    function gtag() {
        dataLayer.push(arguments);
    }
    gtag('js', new Date());
    gtag('config', gtag_id);

})();