(function() { function bxBootstrap() { var re = /bot|crawl|slurp|spider|mediapartners|headlesschrome|snap-prefetch|remotasks|woorank|uptime\.com|facebookexternalhit|facebookcatalog/i; if (re.test(navigator.userAgent) || navigator.userAgent == '') { return; } if (!(window.bouncex&&bouncex.website)) { var pushedData = []; if(window.bouncex && bouncex.push && bouncex.length){ pushedData = bouncex; } window.bouncex = {}; bouncex.pushedData = pushedData; bouncex.website = {"id":3030,"name":"Burt's Bees","cookie_name":"bounceClientVisit3030","domain":"burtsbees.com","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"/* search page type SPA fix https://www.wrike.com/open.htm?id=1038936602 */\nvar currPageType = bouncex.website.pts;\nbouncex.on(bouncex.document, 'click.bxSrch', function() {\n bouncex.setTimeout2(function() {\n var srchOvrlyOpen = jQuery('[class*=SearchOverlay-module-open]:visible').length > 0;\n if (srchOvrlyOpen) {\n bouncex.website.pts = 'search';\n } else {\n bouncex.website.pts = currPageType;\n }\n }, 1000);\n}, 'button[aria-label=\"Search\"], #close-search-overlay-btn');","force_https":false,"waypoints":false,"content_width":900,"gai":"UA-45178306-1","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"/* ---------------------------- SHARED VARIABLES ---------------------------- */\n\nvar CLEAN_URL = bouncex.utils.url.allowParams();\n\n/* --------------------------------- HELPERS -------------------------------- */\nfunction slugify(text) {\n return text.toString().toLowerCase()\n .replace(/\\s+/g, '-') // Replace spaces with -\n .replace(/[^\\w\\-]+/g, '') // Remove all non-word chars\n .replace(/\\-\\-+/g, '-') // Replace multiple - with single -\n .replace(/^-+/, '') // Trim - from start of text\n .replace(/-+$/, ''); // Trim - from end of text\n}\n\nfunction getImg() {\n var rawImgSrc = jQuery('[data-testid=product-img]').attr('src') || '';\n return rawImgSrc ? bouncex.utils.url.allowParams([], rawImgSrc) : '';\n}\n/* ------------------------------ ITEM TRACKING ----------------------------- */\nfunction getItem() {\n var copyName = jQuery('meta[name=\"title\"]').attr('content') || '';\n return {\n id: slugify(copyName),\n copy: copyName,\n category: jQuery('[class*=breadcrumbs-link]:last').text() || 'Global',\n url: CLEAN_URL,\n imageurl: getImg(),\n instock: jQuery('[class*=Button-module-disabled]').length === 0\n };\n}\n\nfunction initializeItemEvents() {\n var item;\n\n bouncex.et.onTrue(\n function () {\n item = getItem();\n return !!item.id &&\n !!item.copy &&\n !!item.category &&\n !!item.url &&\n !!item.imageurl;\n },\n function () {\n if (item.url.indexOf('gift-card') > -1) {\n return;\n }\n bouncex.push(['item', item]);\n bouncex.push(['view item', { 'item:id': item.id }]);\n\n initializeATCClickTracking(item.id);\n },\n 10\n );\n}\n\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\n\nfunction getItemIdsCat() {\n var ids = [];\n\n jQuery('[class*=item-module] [class*=richContent-root]').each(function (i, e) {\n var id = slugify(jQuery(e).text())\n\n if (id && ids.indexOf(id) < 0) {\n ids.push(id);\n }\n });\n\n return ids.join(',');\n}\n\nfunction getCategoryObject() {\n return {\n 'page:url': CLEAN_URL,\n 'items:ids': getItemIdsCat()\n };\n}\n\nfunction initializeCategoryEvents() {\n var categoryObj;\n\n bouncex.et.onTrue(\n function () {\n categoryObj = getCategoryObject();\n return !!categoryObj['items:ids'].length &&\n !!categoryObj['page:url'];\n },\n function () {\n bouncex.push(['view category', categoryObj]);\n },\n 10\n );\n}\n\n/* ------------------------------- CART EVENTS ------------------------------ */\n\nfunction fireAddToCart(itemId) {\n bouncex.push(['add to cart', { 'item:id': itemId }]);\n\n if (bouncex.vars.cart) {\n return;\n }\n bouncex.setVar('cart', true);\n}\n\nfunction initializeATCClickTracking(itemId) {\n bouncex.et.on(bouncex.document, 'click.bxatc', function () {\n fireAddToCart(itemId);\n }, 'button[class*=cartActionButton]:not(\"[class*=Button-module-disabled]\")');\n}\n\nfunction emptyCart() {\n bouncex.et.onVarChange('cart_qty', function (oldVal, newVal) {\n if (bouncex.vars.cart && newVal === 0 && oldVal > 0) {\n bouncex.push(['empty_cart']);\n bouncex.setVar('cart', false);\n }\n });\n}\n\nfunction initializeCartEvents() {\n bouncex.et.cart.init({\n replenish: function () { },\n replenishmentType: 'single'\n });\n\n bouncex.setTimeout2(function () {\n emptyCart();\n }, 1000);\n}\n\n/* ------------------------------ USER TRACKING ----------------------------- */\nfunction initializeUserTracking() {\n if (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\n return;\n }\n\n var userEmail;\n\n bouncex.et.onTrue(\n function () {\n userEmail = bouncex.utils.gtmLookup('email');\n return bouncex.utils.validate.email(userEmail);\n },\n function () {\n bouncex.push([\n 'user',\n {\n 'email': userEmail,\n 'source': 'LoggedIn'\n }\n ]);\n bouncex.setVar('logged_in_identified', true);\n },\n 5\n );\n}\n\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\n\nfunction isValidDomain() {\n return CLEAN_URL.indexOf('www.burtsbees.com') > -1;\n}\n\nfunction isEn() {\n return bouncex.html.attr('lang') === 'en-US';\n}\n\nfunction isValidForTracking() {\n return isValidDomain() && isEn();\n}\n\nfunction init() {\n if (!isValidForTracking()) {\n return;\n }\n\n initializeUserTracking();\n initializeCartEvents();\n\n switch (bouncex.website.pts) {\n case 'category':\n case 'search':\n initializeCategoryEvents();\n break;\n case 'product':\n bouncex.setTimeout2(function () {\n initializeItemEvents();\n }, 1000);\n break;\n default:\n break;\n }\n}\n\ninit();\n","dge":true,"bxidLoadFirst":false,"pie":true,"cme":true,"gbi_enabled":0,"bpush":false,"pt":{"cart":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}],[{"activation":"js","prop":"","prop2":"","prop3":"","val":"!!document.querySelector('[class*=SearchOverlay-module-open]') === false"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('[class*=\"breadcrumbs-currentCategory\"], [class*=\"categoryContent-module\"]').length > 0;"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"category/"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/sale"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/new"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/outdoor"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/lip-care/"}],[{"activation":"js","prop":"","prop2":"","prop3":"","val":"!!document.querySelector('[class*=SearchOverlay-module-open]') === false"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"checkout"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/success-checkout"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.location.pathname === \"/\";"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/home"}],[{"activation":"js","prop":"","prop2":"","prop3":"","val":"!!document.querySelector('[class*=SearchOverlay-module-open]') === false"}]]},"product":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/product/"}],[{"activation":"js","prop":"","prop2":"","prop3":"","val":"!!document.querySelector('[class*=SearchOverlay-module-open]') === false"}]]},"search":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search"}],[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('[class*=SearchOverlay-module-open]').length > 0;"}]]}},"els":{"CART - Checkout Button":".cart-action-checkout button.button-fancy-large","CART - Promo Code Apply Button":".promocode-wrapper .form-row-button","CART - Promo Code Box":".promocode-wrapper .required","CAT - Product Grid Image":".product-tile","CAT - Quickview Box":".quickview","Footer":"#footer","Navigation bar":"#new-header","PDP - Add to Cart Button":".add-button .add-to-cart-button ","PDP - Color Option":"ul.swatches.Color","PDP - Hero Image":".product-primary-image","PDP - Product Name":"h1.product-name","PDP - Product Price":".add-to-cart-button .product-price","PDP - Review Stars":".bv_stars_button_container.outline:visible","PDP - Size Option":"ul.swatches.size","PDP - Thumbnail Image":"#thumbnails","SEARCH - Product Grid Image":"li.grid-tile"},"vars":[{"name":"logged_in","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"!!bouncex.utils.gtmLookup('username') || !!bouncex.utils.gtmLookup('email');","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"0","code":"(function () {\n var count = 0;\n\n if (bouncex.website.pts === 'checkout') {\n jQuery('[class*=\"checkoutProductItem-module-readQuantity\"]').each(function () {\n count += Number(jQuery(this).text().replace(/[^0-9.]/g, ''));\n });\n return count;\n }\n\n return Number(jQuery('[class*=\"cartTrigger\"]').first().text().replace(/[^0-9.]/g, ''));\n})();","trigger":""},{"name":"cart_value","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"0","code":"Number(jQuery('[class*=\"orderInfo-price\"]').first().text().replace(/[^0-9.]/g, ''));","trigger":""},{"name":"prod_price","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"0","code":"+jQuery('[class*=\"ProductInfo\"] [class*=\"price-module-final\"]:first').text().replace(/[^0-9.]/g, '');","trigger":""},{"name":"prod_name","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('h1').text();","trigger":""},{"name":"in_stock","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function() {\n if ((bouncex.website.pts === 'product' || jQuery('.quickview_img_desc_wrap:visible').length > 0) && (bouncex.state && !bouncex.state.mobile)) {\n var availabilityInput = jQuery('input[name=\"availability\"]');\n var inStock = 0;\n\n if (availabilityInput.length > 1) {\n if (jQuery('.error-outofstock:visible').length > 0) {\n return false;\n } else if (jQuery('.add-all-to-cart:visible').length > 0) {\n return true;\n } else if (jQuery('#add-all-to-cart:visible').length > 0){\n return true;\n }\n } else if (jQuery('.not-available-msg:visible').length > 0) {\n return false;\n } else if (jQuery('.shortDescriptor').text().indexOf('product is discontinued') > -1) {\n return false;\n } else if (jQuery('.add-to-cart-button:visible').length > 0) {\n return true;\n }\n } else if (bouncex.state && !bouncex.state.mobile) {\n if (jQuery('.quickview_img_desc_wrap:visible').length > 0 && jQuery('.select-cart-quick:visible').length > 0) {\n return true;\n } else if (bouncex.website.pts === 'product' && jQuery('.product-add-to-cart #add-to-cart:not(\"disabled\")').length > 0) {\n return true;\n }\n } else {\n return false;\n }\n})();","trigger":""},{"name":"average_rating","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function(){\n var quickViewVisible = jQuery('.quickview_img_desc_wrap:visible').length > 0;\n var onPdp = jQuery('section#pdpMain:visible').length > 0;\n\n if (onPdp && !quickViewVisible) {\n return jQuery('button[itemprop=\"ratingValue\"]').length > 0 && jQuery('button[itemprop=\"ratingValue\"]').eq(0).text()!== \"\" ? jQuery('button[itemprop=\"ratingValue\"]').eq(0).text() : false;\n } else if (quickViewVisible) {\n\t\tif (jQuery('.quickview_img_desc_wrap:visible').length > 0 && jQuery('dl.bv-stars-container span.bv-off-screen').length > 0 && jQuery('dl.bv-stars-container span.bv-off-screen').text() !== \"\") {\n\t\t\treturn jQuery('dl.bv-stars-container span.bv-off-screen').text().split('out of')[0].trim();\n\t\t} else if (bouncex.state.mobile && bouncex.website.pts === 'product' && jQuery('.bv_avgRating:visible').text() !== \"\") {\n\t\t\treturn jQuery('.bv_avgRating:visible').text();\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n } else {\n return false;\n }\n})();","trigger":"pageload"},{"name":"ibx_category_ids","polling":"none","persist":"no","page_types":["category"],"testmode":false,"default":"false","code":"(function() {\n\tvar $prodDivs = jQuery('#search-result-items .product-tile');\n\treturn $prodDivs.map(function() {\n\t\treturn jQuery(this).find('.product-name').text().trim().toLowerCase().split(' ').join('-');\n\t})\n\t.get()\n\t.slice(0, 10)\n\t.join(',');\n})();","trigger":"pageload"},{"name":"ibx_category_url","polling":"none","persist":"no","page_types":["category"],"testmode":false,"default":"false","code":"(function() {\n\treturn jQuery('link[rel=canonical]').attr('href') || bouncex.utils.url.allowParams('w');\n})();","trigger":"pageload"},{"name":"ibx_category_title","polling":"none","persist":"no","page_types":["category"],"testmode":false,"default":"false","code":"(function(){\n var title = jQuery('title').text().trim().split('|');\n if (title.length > 1) {\n \treturn jQuery('title').text().trim().split('|')[1].trim();\t\n } else { \n \treturn jQuery('title').text().trim()\n }\n})();","trigger":"pageload"},{"name":"ibx_product_id","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"(function(){\n return jQuery('meta[itemprop=\"name\"]').length > 0 ? jQuery('meta[itemprop=\"name\"]').attr('content').trim().toLowerCase().split(' ').join('-') : jQuery('.product-name[itemprop=\"name\"]').eq(0).text().trim().toLowerCase().split(' ').join('-')\n})();","trigger":"pageload"},{"name":"ibx_product_url","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"(function(){\n return window.location.origin + window.location.pathname;\n})();","trigger":"pageload"},{"name":"ibx_product_img","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"(function(){\n return jQuery('meta[itemprop=\"image\"]').attr('content') !== undefined ? jQuery('meta[itemprop=\"image\"]').attr('content') : jQuery('meta[property=\"og:image\"]').attr('content');\n})();","trigger":"pageload"},{"name":"ibx_product_category","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"(function(){\r\n if(jQuery('.product-breadcrumb .breadcrumb-last').length > 0) {\r\n\t\treturn jQuery('.product-breadcrumb .breadcrumb-last').first().text();\r\n } else if(dw.ac._category != \"\") {\r\n\t\treturn dw.ac._category \r\n } else if (window.cmCategoryID != undefined) {\r\n\t\treturn window.cmCategoryID;\r\n } else if( window.interactionData && window.interactionData.usermeta && window.interactionData.usermeta.itemcategory) {\r\n\t\treturn window.interactionData.usermeta.itemcategory\r\n } \r\n\treturn 'home';\r\n})();","trigger":"pageload"},{"name":"ibx_quickview_id","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function(el){\n return jQuery(el).find('h1[itemprop=\"name\"]').eq(0).text().toLowerCase().split(' ').join('-');\n})(this);","trigger":"event"},{"name":"is_english","polling":"vars","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"(function(){\n\tvar pattern = /^[\\sa-zA-Z0-9!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?]*$/;\n\tif (bouncex.vars.prod_name.match(pattern) && jQuery('html[lang=\"en\"]').length > 0) {\n\t\treturn true;\n\t}\n\treturn false;\n})();","trigger":"pageload"},{"name":"ibx_item_ready","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"ibx_fire_log_in","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"on_mainsite","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function(){\n return window.location.host === \"www.burtsbees.com\" || window.location.host === 'products.burtsbees.com';\n})();","trigger":"pageload"},{"name":"ibx_not_replenish","polling":"vars","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function(){\n return window.location.href.indexOf('bx_cart') === -1;\n})();","trigger":"pageload"},{"name":"native_cookie_present","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('#onetrust-banner-sdk').length > 0 && jQuery('#onetrust-banner-sdk').css('display') === \"block\";","trigger":"pageload"},{"name":"not_cbd_product","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"window.location.pathname.indexOf('cbd') === -1;","trigger":"pageload"},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"}],"dgu":"pixel.cdnwidget.com","dgp":false,"ba":{"enabled":0,"fbte":0},"biu":"assets.bounceexchange.com","bau":"api.bounceexchange.com","beu":"events.bouncex.net","ibx":{"tjs":"","cjs":"","miw":1,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"bxid":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":[{"data_fields":[[{"activation":"item:id","prop":"","prop2":"","prop3":"","val":"ibx_product_id"},{"activation":"item:copy","prop":"","prop2":"","prop3":"","val":"prod_name"},{"activation":"item:category","prop":"","prop2":"","prop3":"","val":"ibx_product_category"},{"activation":"item:url","prop":"","prop2":"","prop3":"","val":"ibx_product_url"},{"activation":"item:instock","prop":"","prop2":"","prop3":"","val":"in_stock"},{"activation":"item:imageurl","prop":"","prop2":"","prop3":"","val":"ibx_product_img"}]],"evaluation":[[{"activation":"page_type_criteria","prop":"","prop2":"","prop3":"","val":"product"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"is_english","prop3":"","val":"true"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"on_mainsite","prop3":"","val":"true"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"not_cbd_product","prop3":"","val":"true"}]],"name":"Item Event: Delayed","testmode":true,"trigger":{"activation":"delay","prop":"","prop2":"","prop3":"","val":"1"},"type":{"activation":"default","prop":"","prop2":"","prop3":"","val":"item"}},{"data_fields":[[{"activation":"item:id","prop":"","prop2":"","prop3":"","val":"ibx_product_id"}]],"evaluation":[[{"activation":"page_type_criteria","prop":"","prop2":"","prop3":"","val":"product"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"on_mainsite","prop3":"","val":"true"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"not_cbd_product","prop3":"","val":"true"}]],"name":"View Item Event: Immediate","testmode":true,"trigger":{"activation":"default"},"type":{"activation":"default","prop":"","prop2":"","prop3":"","val":"view item"}},{"data_fields":[[{"activation":"items:ids","prop":"","prop2":"","prop3":"","val":"ibx_category_ids"},{"activation":"page:url","prop":"","prop2":"","prop3":"","val":"ibx_category_url"},{"activation":"page:title","prop":"","prop2":"","prop3":"","val":"ibx_category_title"}]],"evaluation":[[{"activation":"page_type_criteria","prop":"","prop2":"","prop3":"","val":"category"}]],"name":"View Category Event: Immediate","testmode":true,"trigger":{"activation":"default"},"type":{"activation":"default","prop":"","prop2":"","prop3":"","val":"view category"}},{"data_fields":[[{"activation":"default"}]],"evaluation":[[{"activation":"custom_variable_criteria","prop":"equal","prop2":"cart_qty","prop3":"","val":"0"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"on_mainsite","prop3":"","val":"true"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"ibx_not_replenish","prop3":"","val":"true"}]],"name":"Empty Cart Event: On Cart Empty","testmode":true,"trigger":{"activation":"onCartEmpty","prop":"","prop2":"","prop3":"","val":""},"type":{"activation":"default","prop":"","prop2":"","prop3":"","val":"empty_cart"}},{"data_fields":[[{"activation":"item:id","prop":"","prop2":"","prop3":"","val":"ibx_quickview_id"}]],"evaluation":[[{"activation":"page_type_criteria","prop":"","prop2":"","prop3":"","val":"category"},{"activation":"page_type_criteria","prop":"","prop2":"","prop3":"","val":"home"},{"activation":"page_type_criteria","prop":"","prop2":"","prop3":"","val":"search"}],[{"activation":"custom_variable_criteria","prop":"equal","prop2":"on_mainsite","prop3":"","val":"true"}]],"name":"View Item Event: On Visible","testmode":true,"trigger":{"activation":"onVisible","prop":"","prop2":"","prop3":"","val":"CAT - Quickview Box"},"type":{"activation":"default","prop":"","prop2":"","prop3":"","val":"view item"}}],"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":1,"spatm":0,"preinit_cjs":"if (typeof window.jQuery === 'function') {\n bouncex.window = jQuery(window);\n}\n\n/* mobile specific SPA fix https://www.wrike.com/open.htm?id=1038936534 */\nSinglePageApp.setCustomParams({\n currentPageIdentifier: function() {\n return window.location.pathname;\n }\n});","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"","eventSharing":false,"shqId":"","enabled":0},"pde":true,"fmc":["US"],"fme":true,"fmx":"","sdk":{"android":{"enabled":false,"enabledVersions":[],"eventModifications":null},"ios":{"enabled":false,"enabledVersions":[],"eventModifications":null}},"onsite":{"enabled":1},"ads":{"enabled":0},"pubs":{"enabled":0},"websdk":{"enabled":0},"ga4_property_id":"","ga4_measurement_id":""} ; bouncex.tag = 'tag3'; bouncex.$ = window.jQuery; bouncex.env = 'production'; bouncex.restrictedTlds = {"casl":{"ca":1},"gdpr":{"ad":1,"al":1,"at":1,"ax":1,"ba":1,"be":1,"bg":1,"by":1,"xn--90ais":1,"ch":1,"cy":1,"cz":1,"de":1,"dk":1,"ee":1,"es":1,"eu":1,"fi":1,"fo":1,"fr":1,"uk":1,"gb":1,"gg":1,"gi":1,"gr":1,"hr":1,"hu":1,"ie":1,"im":1,"is":1,"it":1,"je":1,"li":1,"lt":1,"lu":1,"lv":1,"mc":1,"md":1,"me":1,"mk":1,"xn--d1al":1,"mt":1,"nl":1,"no":1,"pl":1,"pt":1,"ro":1,"rs":1,"xn--90a3ac":1,"ru":1,"su":1,"xn--p1ai":1,"se":1,"si":1,"sj":1,"sk":1,"sm":1,"ua":1,"xn--j1amh":1,"va":1,"tr":1}}; bouncex.client = { supportsBrotli: 1 }; bouncex.assets = {"ads":"e2e1dbb7c70b701b3c197204872400a0","creativesBaseStyles":"a53944a2","gpsAuction":"1375a7b38c31e98d14fe7f396b72da14","inbox":"02aca5df0e176b8810a86da97ac05424","onsite":"0e56ab6ba004ee080ce3deb3edae35e9","sms":"e39203556bab2366e56296ce42e974a7","websdk":"0704dae1eb637cbeb4a847506058402d"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_6459738026535cda4232dc813c61447d.br.js'); runtime.setAttribute('async', 'async'); runtime.setAttribute('onload', 'bouncex.initializeTag()'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_1247731b761376f768004922730ab4f3.br.js'); script.setAttribute('async', 'async'); document.body.appendChild(script); var deviceGraphScript = document.createElement('script'); deviceGraphScript.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/cjs_min_3a843477d8e318f67237a66d0a58c542.js'); deviceGraphScript.setAttribute('async', 'async'); var dgAttrs = [{"Key":"id","Value":"c.js"},{"Key":"async","Value":"true"},{"Key":"data-apikey","Value":"2^HIykD"},{"Key":"data-cb","Value":"bouncex.dg.initPostDeviceGraph"},{"Key":"data-bx","Value":"1"},{"Key":"data-gm","Value":"1"},{"Key":"data-fire","Value":"1"}]; if (dgAttrs) { for (var i = 0; i < dgAttrs.length; i++) { deviceGraphScript.setAttribute(dgAttrs[i].Key, dgAttrs[i].Value); } } document.body.appendChild(deviceGraphScript); bouncex.initializeTag = function() {}; }; document.body.appendChild(runtime); } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();