function waitForElementToExist(selector) {
	return new Promise(resolve => {
		if (document.querySelector(selector)) {
			return resolve(document.querySelector(selector));
		}
		const observer = new MutationObserver(() => {
			if (document.querySelector(selector)) {
				resolve(document.querySelector(selector));
				observer.disconnect();
			}
		});
		observer.observe(document.body, {
			subtree: true,
			childList: true,
		});
	});
}
if (typeof oxi_initialized === 'undefined') {
    var oxi_initialized = true;
    console.log("Oxi Social Login Initialized");
        var list = document.querySelectorAll('form[id="customer_login"], form[id="create_customer"]');
			var oxi_list_length = 0;
			if (list.length > 0)
				oxi_list_length = 1;
			for(var osli1 = 0; osli1 < oxi_list_length; osli1++) {
				var osl_checkout_url = '';
				if (list[osli1].querySelector('[name="checkout_url"]') !== null) {
					osl_checkout_url = '&osl_checkout_url='+list[osli1].querySelector('[name="checkout_url"]').value;
				}
				list[osli1].insertAdjacentHTML('beforeend', '<div class="oxi_social_wrapper" style=""><iframe id="social_login_frame" title="Social Login Frame" src="https://social-login.oxiapps.com/widget?site=vedi-herbals.myshopify.com&vt=928366&parenturl='+document.location.href+osl_checkout_url+'" style="width:100%;max-width:100%;padding-top:0px;margin-bottom:5px;border:0px;height:50px;" scrolling=no></iframe></div>');
			}
        if (document.getElementById('oxi-social-login')!==null) {
        document.getElementById('oxi-social-login').innerHTML="<iframe id='social_login_frame' title='Social Login Frame' src='https://social-login.oxiapps.com/widget?site=vedi-herbals.myshopify.com&vt=928366&parenturl="+document.location.href+"' style='width:100%;max-width:100%;padding-top:0px;margin-bottom:5px;border:0px;height:50px;' scrolling=no></iframe>";
    }
	waitForElementToExist('.oxi-social-login').then(element => {
		var oxi_elms = document.querySelectorAll(".oxi-social-login");
		oxi_elms.forEach((oxi_elm) => {
			oxi_elm.innerHTML="<iframe id='social_login_frame' title='Social Login Frame' src='https://social-login.oxiapps.com/widget?site=vedi-herbals.myshopify.com&vt=928366&parenturl="+document.location.href+"' style='width:100%;max-width:100%;padding-top:0px;margin-bottom:5px;border:0px;height:50px;' scrolling=no></iframe>";
		});
	});
	
	//for(var osli2 = 0; osli2 < oxi_elms.length; osli2++) {
		//    oxi_elms[osli2].innerHTML="<iframe id='social_login_frame' title='Social Login Frame' src='https://social-login.oxiapps.com/widget?site=vedi-herbals.myshopify.com&vt=928366&parenturl="+document.location.href+"' style='width:100%;max-width:100%;padding-top:0px;margin-bottom:5px;border:0px;height:50px;' scrolling=no></iframe>";
	//}
        var resized = false;
    var response = function(event) {
        if (event.origin+'/'=="https://social-login.oxiapps.com/") {
            var message = event.data+'';
            var key = message.split(':')[0];
            var value = message.split(':')[1];
            if (key=="height") {
                var oxi_iframe = document.getElementById('social_login_frame');
                if (oxi_iframe && !resized) {
                    resized = true;
                    oxi_iframe.style.height = value + "px";
                }
            }
        }
    }
    if (window.addEventListener) {
        window.addEventListener('message', response, false);
    } else {
        window.attachEvent("onmessage", response);
    }
}
