CINXE.COM

SPANX | Shapewear, Clothing, Activewear & Intimates

<!doctype html> <html class="no-js supports-no-cookies" lang="en"> <head> <script> var storedUserCountry = localStorage.getItem('geotargetly_country_code') || null; // Function to check if geolocation data exists in local storage function geotargetlyDataExists() { return localStorage.getItem('geotargetly_country_name') !== null && localStorage.getItem('geotargetly_country_code') !== null && localStorage.getItem('geotargetly_region_name') !== null && localStorage.getItem('geotargetly_region_code') !== null && localStorage.getItem('geotargetly_city_name') !== null && localStorage.getItem('geotargetly_lat') !== null && localStorage.getItem('geotargetly_lng') !== null && localStorage.getItem('geotargetly_ip') !== null && localStorage.getItem('geotargetly_continent_name') !== null; } // Function to store Geotargetly data in local storage function storeGeotargetlyData() { if (typeof geotargetly_country_name === 'function' && typeof geotargetly_country_code === 'function' && typeof geotargetly_region_name === 'function' && typeof geotargetly_region_code === 'function' && typeof geotargetly_city_name === 'function' && typeof geotargetly_lat === 'function' && typeof geotargetly_lng === 'function' && typeof geotargetly_ip === 'function' && typeof geotargetly_continent_name === 'function') { localStorage.setItem('geotargetly_country_name', geotargetly_country_name()); localStorage.setItem('geotargetly_country_code', geotargetly_country_code()); localStorage.setItem('geotargetly_region_name', geotargetly_region_name()); localStorage.setItem('geotargetly_region_code', geotargetly_region_code()); localStorage.setItem('geotargetly_city_name', geotargetly_city_name()); localStorage.setItem('geotargetly_lat', geotargetly_lat()); localStorage.setItem('geotargetly_lng', geotargetly_lng()); localStorage.setItem('geotargetly_ip', geotargetly_ip()); localStorage.setItem('geotargetly_continent_name', geotargetly_continent_name()); } else { console.error('Geotargetly functions are not available.'); } } // Function to push data to GTM dataLayer function pushGeoDataToDataLayer() { var country_name = localStorage.getItem('geotargetly_country_name'); var country_code = localStorage.getItem('geotargetly_country_code'); var region_name = localStorage.getItem('geotargetly_region_name'); var region_code = localStorage.getItem('geotargetly_region_code'); var continent = localStorage.getItem('geotargetly_continent_name'); // assuming this is fetched and stored similarly window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: "geo_data_loaded", country_name: country_name, country_code: country_code, region_name: region_name, region_code: region_code, continent: continent }); } // Main function to check and store data if not already present function checkAndStoreGeotargetlyData(actualUserCountry) { if (!geotargetlyDataExists() || storedUserCountry !== actualUserCountry) { storeGeotargetlyData(); } pushGeoDataToDataLayer(); } const geoTargetlyURL = "https://g1386590346.co/gl?id=-Mz_o4WjljR7lE-VgVT-&refurl=" + document.referrer + "&winurl=" + encodeURIComponent(window.location); // Create and configure the Geotargetly script element var geotargetlyScript = document.createElement('script'); geotargetlyScript.setAttribute('type', 'text/javascript'); geotargetlyScript.setAttribute('src', geoTargetlyURL); if (geotargetlyDataExists()) { geotargetlyScript.async = 1; } else { geotargetlyScript.async = 0; } let geotargetlyResolve = null; geotargetlyScript.loaded = new Promise(resolve => geotargetlyResolve = resolve); // Add an event listener to ensure the data is pushed after the script loads geotargetlyScript.onload = function() { var allowedCountries = ["AT", "BE", "BG", "CY", "CH", "CZ", "DE", "DK", "EE", "ES", "FI", "FR", "GB", "GR", "HR", "HU", "IE", "IS", "IT", "LI", "LT", "LU", "LV", "MT", "NL", "NO", "PL", "PT", "RO", "SE", "SI", "SK"]; var userCountry = localStorage.getItem('geotargetly_country_code') ?? geotargetly_country_code(); var userContinent = localStorage.getItem('geotargetly_continent_name'); window.SPANX = window.SPANX || {}; if (allowedCountries.includes(userCountry)) { window.SPANX.inEU = true; } else { window.SPANX.inEU = false; } checkAndStoreGeotargetlyData(geotargetly_country_code()); geotargetlyResolve(true); }; // Append the script to the head document.getElementsByTagName('head')[0].appendChild(geotargetlyScript); // If data already exists in local storage, push it to GTM dataLayer immediately if (geotargetlyDataExists()) { pushGeoDataToDataLayer(); } </script> <!-- OneTrust Cookies Consent Notice start for spanx.com --> <script> const COOKIE_GROUPS_IDS = { targetingCookies: 'C0002', performanceCookies: 'C0003', functionalCookies: 'C0004' }; window.dataLayer = window.dataLayer || []; function createOneTrustCookieSettingsDesktopButton() { const cookieSettingsButton = document.createElement('li'); cookieSettingsButton.className = 'page-sidebar__link'; cookieSettingsButton.innerHTML = '<a href="javascript:Optanon.ToggleInfoDisplay()" class="u-no-link">Cookie Settings</a>'; return cookieSettingsButton; } function createOneTrustCookieSettingsMobileButton() { const cookieSettingsButton = document.createElement('button'); cookieSettingsButton.classList.add('button'); cookieSettingsButton.style.cssText += 'margin: 1rem 0 0 0;padding: 0 1rem;'; cookieSettingsButton.innerHTML = '<a href="javascript:Optanon.ToggleInfoDisplay()" class="u-no-link">Cookie Settings</a>'; return cookieSettingsButton; } function dismissOneTrustBanner() { const { isCanada } = window.i18nHelpers.functions; const client_in_us = getCountryCode() === 'US'; const store_is_CA = isCanada(); if (typeof window['OneTrust'] !== undefined && (client_in_us || store_is_CA)) { function scrollHandler() { if (!window.OneTrust.IsAlertBoxClosedAndValid()) { window.OneTrust.Close(); } } window.onscroll = scrollHandler; window.onclick = scrollHandler; } } function getConsentByOneTrustCustomGroupId(id) { const oneTrustActiveGroups = window.OnetrustActiveGroups; if (typeof oneTrustActiveGroups !== 'string') 'denied'; if (oneTrustActiveGroups.includes(id)) { return 'granted'; } return 'denied'; } function getConsentFromOneTrust() { const { isCanada } = window.i18nHelpers.functions; const clientInUS = getCountryCode() === 'US'; const storeIsCA = isCanada(); const consentObj = { analytics: true, marketing: true, preferences: true, sale_of_data: true }; const allCookieGroupsGranted = Object.values(COOKIE_GROUPS_IDS).every(group => window.OnetrustActiveGroups.includes(group) ); const grantedStr = 'granted'; if ((storeIsCA || clientInUS) && allCookieGroupsGranted) { return consentObj; } const hasFunctionalCookiesConsent = getConsentByOneTrustCustomGroupId(COOKIE_GROUPS_IDS.functionalCookies) === grantedStr; const hasTargetingCookiesConsent = getConsentByOneTrustCustomGroupId(COOKIE_GROUPS_IDS.targetingCookies) === grantedStr; const hasPerformanceCookiesConsent = getConsentByOneTrustCustomGroupId(COOKIE_GROUPS_IDS.performanceCookies) === grantedStr; consentObj.analytics = hasPerformanceCookiesConsent; consentObj.marketing = hasTargetingCookiesConsent; consentObj.preferences = hasFunctionalCookiesConsent; consentObj.sale_of_data = hasTargetingCookiesConsent; return consentObj; } function getCountryCode() { if (typeof window['geotargetly_country_code'] === 'function') { return window.geotargetly_country_code()?.toUpperCase(); } const storedCountryCode = localStorage.getItem('geotargetly_country_code'); if (storedCountryCode) { return storedCountryCode?.toUpperCase(); } return null; } // Function to inject cookie button and track load success/failure function injectOneTrustSettingsButton() { // Ideally this function should live in the Cookie Policy page but we are adding here // to have all OneTrust logic in a single place const isCookiePolicyPage = window.location.pathname.includes('cookie-policy'); if (isCookiePolicyPage) { const cookiePageSidebarMenuSelector = '.page-sidebar ul, .select-input__select-wrapper'; waitForElement(cookiePageSidebarMenuSelector).then(element => { if (element) { const isMobile = element.classList.contains('select-input__select-wrapper'); const onMobileString = isMobile ? 'on Mobile' : ''; try { if (isMobile) { element.insertAdjacentElement('afterend', createOneTrustCookieSettingsMobileButton()); } else { element.appendChild(createOneTrustCookieSettingsDesktopButton()); } } catch (error) { if (error instanceof TypeError) { sendEvent( 'cookie_setting_tag_load_error', 'Failure', 'TypeError: Possibly invalid element type ' + onMobileString + ': ' + error.message ); } else if (error instanceof DOMException) { sendEvent( 'cookie_setting_tag_load_error', 'Failure', 'DOMException: Problem with DOM manipulation ' + onMobileString + ': ' + error.message ); } else { sendEvent( 'cookie_setting_tag_load_error', 'Failure', 'General Error injecting Cookie Settings button ' + onMobileString + ': ' + error.message ); } } } else { sendEvent('cookie_setting_tag_load_error', 'Failure', 'Desktop container element not found'); } }); } } function integrateWithShopifyConsent() { function consentRegistrationHandler() { const consentObj = getConsentFromOneTrust(); window.Shopify.customerPrivacy?.setTrackingConsent(consentObj, consentRegistrationSuccessHandler); } function consentRegistrationSuccessHandler() { console.log('Shopify: consent-tracking-api registered'); } function consentRegistrationCallback(error) { if (error) { console.error('ERROR consent-tracking-api', error); } else { consentRegistrationHandler(); } } window.Shopify?.loadFeatures([{ name: 'consent-tracking-api', version: '0.1' }], consentRegistrationCallback); } function loadOneTrustScript() { const oneTrustScript = document.createElement('script'); oneTrustScript.src = 'https://cdn.cookielaw.org/scripttemplates/otSDKStub.js'; oneTrustScript.type = 'text/javascript'; oneTrustScript.charset = 'UTF-8'; oneTrustScript.dataset.domainScript = 'd31b955f-5b03-4f9b-8e3d-04a789d9ef97'; oneTrustScript.onload = function () { injectOneTrustSettingsButton(); console.log(`OneTrust script loaded successfully`); }; oneTrustScript.onerror = function (e) { console.log(`Error loading OneTrust script`, e); }; document.head.appendChild(oneTrustScript); } // Is called by default after OneTrust is completely loaded function OptanonWrapper() { dismissOneTrustBanner(); integrateWithShopifyConsent(); } function sendEvent(eventCategory, eventAction, eventLabel) { // Send event to Datadog if (window.DD_RUM && window.DD_RUM.addAction) { window.DD_RUM.addAction(eventCategory, { action: eventAction, label: eventLabel }); } if (window.dataLayer) { window.dataLayer.push({ event: eventCategory, category: eventCategory, action: eventAction, label: eventLabel }); } } function waitForElement(selector, location = document.body) { return new Promise(resolve => { const element = document.querySelector(selector); if (element) { return resolve(element); } const observer = new MutationObserver(() => { const element = document.querySelector(selector); observer.disconnect(); resolve(element); }); observer.observe(location, { childList: true, subtree: true }); }); } (function () { return new Promise(resolve => { const timeout = 5000; const startTimer = new Date().getTime(); const intervalId = setInterval(() => { if (typeof window['geotargetly_country_code'] === 'function' || new Date().getTime() - startTimer > timeout) { clearInterval(intervalId); loadOneTrustScript(); resolve(null); } }, 100); }); })(); </script> <script type="text/javascript"> (function () { var intervalTime = 4; // Set interval to 4 seconds var OptanonWrapperCount; var otIniGrps = ',C0001,C0002,C0003,C0004'; // OnetrustActiveGroups var hasLoggedOptanon = false; // Flag to ensure we log only once function deleteCookiesWithInterval() { // Ensure Optanon is defined before proceeding if (typeof Optanon !== 'undefined' && Optanon.GetDomainData) { if (typeof OnetrustActiveGroups !== 'undefined' && OnetrustActiveGroups.includes(otIniGrps)) { return; } if (typeof OptanonWrapperCount === 'undefined') { otGetInitialGrps(); } if (!hasLoggedOptanon) { var groups = Optanon.GetDomainData().Groups; var groupDetailsArray = []; groups.forEach(function (group) { // Create an object with the required properties var groupDetails = { GroupName: group.GroupName, CustomGroupId: group.CustomGroupId, Cookies: group.Cookies.map(function (cookie) { return cookie.Name; }) }; // Push the object to the array groupDetailsArray.push(groupDetails); }); // Log the array of objects console.log('Cookie Categorizations in OneTrust: ', groupDetailsArray); hasLoggedOptanon = true; // Set the flag to true to prevent further logs } // Delete cookies otDeleteCookie(otIniGrps); } // Retry until Optanon is available if (typeof Optanon === 'undefined' || !Optanon.GetDomainData) { console.log('Optanon not available yet, retrying...'); } } function otGetInitialGrps() { OptanonWrapperCount = ''; otIniGrps = ',C0001,C0002,C0003,C0004'; // OnetrustActiveGroups } function otDeleteCookie(iniOptGrpId) { var otDomainGrps = JSON.parse(JSON.stringify(Optanon.GetDomainData().Groups)); var otDeletedGrpIds = otGetInactiveId(iniOptGrpId, OnetrustActiveGroups); if (otDeletedGrpIds.indexOf('C0002') !== -1) { deleteTargetingCookiesFromClientStorage(); eraseAttCookies(); var cookiesToBeDeleted = [ 'tag_user_id', '_ScCbts', 'NID', 'SAPISID', 'SSID', '_gcl_au', '_scid', '_scid_r', '_sctr' ]; cookiesToBeDeleted.forEach(cookie => eraseCookie(cookie)); } if (otDeletedGrpIds.indexOf('C0003') !== -1) { // Delete cookies starting with 'optimizely_data$$' from client storage deletePerformanceCookiesFromClientStorage(); var cookiesToBeDeleted = ['__wtba', 'optimizelyEndUserId', 'optimizelySession', '_ALGOLIA', '_ga4_referrer']; cookiesToBeDeleted.forEach(cookie => eraseCookie(cookie)); } if (otDeletedGrpIds.indexOf('C0004') !== -1) { // Delete cookies starting with 'feh--' from client storage deleteFunctionalCookiesFromClientStorage(); var cookiesToBeDeleted = ['globalId', 'tag_session', 'tag_user_id', 'skip_shop_pay']; cookiesToBeDeleted.forEach(cookie => eraseCookie(cookie)); } if (otDeletedGrpIds.length > 0 && otDomainGrps.length > 0) { otDomainGrps.forEach(function (group) { if (group['CustomGroupId'] && otDeletedGrpIds.includes(group['CustomGroupId'])) { group['Cookies'].forEach(function (cookie) { eraseCookie(cookie['Name']); eraseCookieFromClientStorage(cookie['Name']); }); } if (group['Hosts'].length > 0) { group['Hosts'].forEach(function (host) { if (otDeletedGrpIds.includes(host['HostId']) && host['Cookies'].length > 0) { host['Cookies'].forEach(function (cookie) { eraseCookie(cookie['Name']); eraseCookieFromClientStorage(cookie['Name']); }); } }); } }); } otGetInitialGrps(); // Reassign new group ids } function deleteTargetingCookiesFromClientStorage() { var cookies = Object.keys(localStorage).concat(Object.keys(sessionStorage)); cookies.forEach(function (cookieName) { if (cookieName.includes('tt_appInfo')) { eraseCookieFromClientStorage(cookieName); } }); } function deleteFunctionalCookiesFromClientStorage() { var cookies = Object.keys(localStorage).concat(Object.keys(sessionStorage)); cookies.forEach(function (cookieName) { if ( cookieName.startsWith('feh--') || cookieName.startsWith('__paypal-httpswwwpaypalcomsdkjs') || cookieName.includes('lastSeenErrorReceiptId') || cookieName.includes('_workerCache') ) { eraseCookieFromClientStorage(cookieName); } }); } function deletePerformanceCookiesFromClientStorage() { var cookies = Object.keys(localStorage).concat(Object.keys(sessionStorage)); cookies.forEach(function (cookieName) { if ( cookieName.startsWith('optimizely_data$$') || cookieName.includes('startStopTimes') || cookieName.includes('userLeftCallbacks') || cookieName.includes('ga4_referrer') ) { eraseCookieFromClientStorage(cookieName); } }); } function otGetInactiveId(customIniId, otActiveGrp) { customIniId = customIniId.split(',').filter(Boolean); otActiveGrp = otActiveGrp.split(',').filter(Boolean); return customIniId.filter(function (id) { return !otActiveGrp.includes(id); }); } function eraseAttCookies() { var attentiveCookies = [ '__attentive_dv', '__attentive_pv', '__attentive_id', '__attentive_ss_referrer', '__attentive_cco', '__attentive_vf', '__attentive_utm_param_medium', '__attentive_utm_param_source', '_pinterest_ct_ua', '_fbp', '_dd_s', 'tag_user_id', '__attentive_session_id', '_attn_', '_attn_bopd_' ]; attentiveCookies.forEach(function (cookie) { eraseCookie(cookie); }); } function eraseCookieFromClientStorage(name) { localStorage.removeItem(name); sessionStorage.removeItem(name); } function eraseCookie(name) { var domainName = window.location.hostname; var pathArray = window.location.pathname.split('/'); var maxAge = 'Max-Age=-99999999'; // Delete root path cookies document.cookie = name + '=; ' + maxAge + '; Path=/; Domain=' + domainName; document.cookie = name + '=; ' + maxAge + '; Path=/;'; pathArray.forEach(function (path, index) { if (path) { var currentPath = pathArray.slice(0, index + 1).join('/'); document.cookie = name + '=; ' + maxAge + '; Path=' + currentPath + '; Domain=' + domainName; document.cookie = name + '=; ' + maxAge + '; Path=' + currentPath + '; Domain=.' + domainName; document.cookie = name + '=; ' + maxAge + '; Path=' + currentPath + ';'; document.cookie = name + '=; ' + maxAge + '; Path=' + currentPath + '/; Domain=' + domainName; document.cookie = name + '=; ' + maxAge + '; Path=' + currentPath + '/; Domain=.' + domainName; document.cookie = name + '=; ' + maxAge + '; Path=' + currentPath + '/;'; } }); } // Execute the function immediately deleteCookiesWithInterval(); // Set up the interval process to run every 4 seconds indefinitely setInterval(deleteCookiesWithInterval, intervalTime * 1000); })(); </script> <script> window.dataLayer = window.dataLayer || []; (() => { let imagePerformanceData = { totalImagesLoaded: 0, totalImageSize: 0, totalLoadTime: 0, imageLoadDetails: [], lazyLoadedImages: 0, loadErrors: 0, imageCountBeforeLcp: 0, imageSizeBeforeLcp: 0 }; /* webVitals.onLcp((lcp) => { lcpset = true; }); */ let lcpset = false; let imagePerfObserver; try { imagePerfObserver = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { if (/\.(png|jpg|svg|webp)/i.test(entry.name)) { const removeHttps = entry.name.replace("https:", ""); const imgElement = document.querySelector(`img[src="${removeHttps}"]`); if (imgElement) { imagePerformanceData.totalImagesLoaded++; if(!lcpset) { imagePerformanceData.imageCountBeforeLcp++; imagePerformanceData.imageSizeBeforeLcp += entry.decodedBodySize; } imagePerformanceData.totalImageSize += entry.decodedBodySize; imagePerformanceData.totalLoadTime += entry.duration; imagePerformanceData.imageLoadDetails.push({ url: entry.name, size: entry.decodedBodySize, time: Math.round(entry.duration), width: imgElement.naturalWidth, height: imgElement.naturalHeight, type: imgElement.src.split('.').pop().split('?').shift(), lcp_set: lcpset, error: '' // Placeholder, error handling to be implemented }); } } }); }); imagePerfObserver.observe({entryTypes: ['resource']}); } catch (error) { console.error('PerformanceObserver setup failed:', error); } function resetImagePerformanceData() { imagePerformanceData = { totalImagesLoaded: 0, totalImageSize: 0, totalLoadTime: 0, imageLoadDetails: [], lazyLoadedImages: 0, loadErrors: 0, imageCountBeforeLcp: 0, imageSizeBeforeLcp: 0 }; } function calculateLcpLoadRatio() { return imagePerformanceData.imageCountBeforeLcp * 100 / imagePerformanceData.totalImagesLoaded; } function pushDataToDataLayer() { try { if (!window.dataLayer || !Array.isArray(window.dataLayer)) { throw new Error('dataLayer is not initialized or not an array.'); } window.dataLayer.push({ 'event': 'performance_img', 'data_img': { 'total_count': imagePerformanceData.totalImagesLoaded, 'total_size': imagePerformanceData.totalImageSize, 'total_time': Math.round(imagePerformanceData.totalLoadTime), 'average_load_time': imagePerformanceData.totalImagesLoaded > 0 ? Math.round(imagePerformanceData.totalLoadTime / imagePerformanceData.totalImagesLoaded) : 0, 'lcp_load_ratio': calculateLcpLoadRatio(), 'error_count': imagePerformanceData.loadErrors, 'items': imagePerformanceData.imageLoadDetails.map(item => ({ url: item.url, size: item.size, time: item.time, width: item.width, height: item.height, type: item.type, error: item.error })) } }); // Reset the data structure for the next data push resetImagePerformanceData(); } catch (error) { console.error('Failed to push data to dataLayer:', error); } } const beforeUnloadHandler = (event) => { pushDataToDataLayer(); }; window.addEventListener("beforeunload", beforeUnloadHandler); })(); (() => { let cssPerformanceData = { totalCssLoaded: 0, totalCssSize: 0, totalCssLoadTime: 0, cssLoadDetails: [], cssLoadErrors: 0, cssCountBeforeLcp: 0, cssSizeBeforeLcp: 0 }; /* webVitals.onLcp((lcp) => { lcpset = true; }); */ let lcpset = false; let cssPerfObserver; try { cssPerfObserver = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { if (/\.css($|\?)/i.test(entry.name)) { cssPerformanceData.totalCssLoaded++; if(!lcpset) { cssPerformanceData.cssCountBeforeLcp++; cssPerformanceData.cssSizeBeforeLcp += entry.decodedBodySize; } cssPerformanceData.totalCssSize += entry.decodedBodySize; cssPerformanceData.totalCssLoadTime += entry.duration; cssPerformanceData.cssLoadDetails.push({ url: entry.name, size: entry.decodedBodySize, time: Math.round(entry.duration), lcp_set: lcpset, error: '' // Placeholder, error handling to be implemented }); } }); }); cssPerfObserver.observe({entryTypes: ['resource']}); } catch (error) { console.error('PerformanceObserver setup failed:', error); } function resetCssPerformanceData() { cssPerformanceData = { totalCssLoaded: 0, totalCssSize: 0, totalCssLoadTime: 0, cssLoadDetails: [], cssLoadErrors: 0, cssCountBeforeLcp: 0, cssSizeBeforeLcp: 0 }; } function calculateLcpLoadRatio() { return cssPerformanceData.cssCountBeforeLcp * 100 / cssPerformanceData.totalCssLoaded; } function pushDataToDataLayer() { try { if (!window.dataLayer || !Array.isArray(window.dataLayer)) { throw new Error('dataLayer is not initialized or not an array.'); } window.dataLayer.push({ 'event': 'performance_css', 'data_css': { 'total_count': cssPerformanceData.totalCssLoaded, 'total_size': cssPerformanceData.totalCssSize, 'total_time': Math.round(cssPerformanceData.totalCssLoadTime), 'average_load_time': cssPerformanceData.totalCssLoaded > 0 ? Math.round(cssPerformanceData.totalCssLoadTime / cssPerformanceData.totalCssLoaded) : 0, 'lcp_load_ratio': calculateLcpLoadRatio(), 'error_count': cssPerformanceData.loadErrors, 'items': cssPerformanceData.cssLoadDetails.map(item => ({ url: item.url, size: item.size, time: item.time, error: item.error })) } }); // Reset the data structure for the next data push resetCssPerformanceData(); } catch (error) { console.error('Failed to push data to dataLayer:', error); } } const beforeUnloadHandler = (event) => { pushDataToDataLayer(); }; window.addEventListener("beforeunload", beforeUnloadHandler); })(); (() => { let jsPerformanceData = { totalJsLoaded: 0, totalJsSize: 0, totalJsLoadTime: 0, jsLoadDetails: [], jsLoadErrors: 0, jsCountBeforeLcp: 0, jsSizeBeforeLcp: 0 }; /* webVitals.onLcp((lcp) => { lcpset = true; }); */ let lcpset = false; let jsPerfObserver; try { jsPerfObserver = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { if (/\.js($|\?)/i.test(entry.name)) { jsPerformanceData.totalJsLoaded++; if(!lcpset) { jsPerformanceData.jsCountBeforeLcp++; jsPerformanceData.jsSizeBeforeLcp += entry.decodedBodySize; } jsPerformanceData.totalJsSize += entry.decodedBodySize; jsPerformanceData.totalJsLoadTime += entry.duration; jsPerformanceData.jsLoadDetails.push({ url: entry.name, size: entry.decodedBodySize, time: Math.round(entry.duration), lcp_set: lcpset, error: '' // Placeholder, error handling to be implemented }); } }); }); jsPerfObserver.observe({entryTypes: ['resource']}); } catch (error) { console.error('PerformanceObserver setup failed:', error); } function resetjsPerformanceData() { jsPerformanceData = { totalJsLoaded: 0, totalJsSize: 0, totalJsLoadTime: 0, jsLoadDetails: [], jsLoadErrors: 0, jsCountBeforeLcp: 0, jsSizeBeforeLcp: 0 }; } function calculateLcpLoadRatio() { return jsPerformanceData.jsCountBeforeLcp * 100 / jsPerformanceData.totalJsLoaded; } function pushDataToDataLayer() { try { if (!window.dataLayer || !Array.isArray(window.dataLayer)) { throw new Error('dataLayer is not initialized or not an array.'); } window.dataLayer.push({ 'event': 'performance_js', 'data_js': { 'total_count': jsPerformanceData.totalJsLoaded, 'total_size': jsPerformanceData.totalJsSize, 'total_time': Math.round(jsPerformanceData.totalJsLoadTime), 'average_load_time': jsPerformanceData.totalJsLoaded > 0 ? Math.round(jsPerformanceData.totalJsLoadTime / jsPerformanceData.totalJsLoaded) : 0, 'lcp_load_ratio': calculateLcpLoadRatio(), 'error_count': jsPerformanceData.loadErrors, 'items': jsPerformanceData.jsLoadDetails.map(item => ({ url: item.url, size: item.size, time: item.time, error: item.error })) } }); // Reset the data structure for the next data push resetjsPerformanceData(); } catch (error) { console.error('Failed to push data to dataLayer:', error); } } const beforeUnloadHandler = (event) => { pushDataToDataLayer(); }; window.addEventListener("beforeunload", beforeUnloadHandler); })(); </script> <script> window.SPANX = window.SPANX || {}; // Adding `version` to use across systems, i.e Datadog, Jira window.SPANX.version = "2025-02-12_3aec2e159a7011462e94044cd839e291f7f8715f"; // Adding `release_date` to track the last build date window.SPANX.release_date = "2025-02-12"; </script><meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="theme-color" content=""> <link rel="canonical" href="https://spanx.com/"> <script src="https://cdn.optimizely.com/js/25231630058.js"></script> <script type="module" src="//spanx.com/cdn/shop/t/82/assets/datalayer-ga4.js?v=93783846053608315571737383097"></script> <script> // Javascript variables const pageName = "index"; const url = new URL(window.location.href); const gaCookieId = () => { let cookie = {}; document.cookie.split(';').forEach(function(el) { const splitCookie = el.split('='); const key = splitCookie[0].trim(); const value = splitCookie[1]; cookie[key] = value; }); return cookie["_ga"] ? cookie["_ga"] : ''; } const _dataLayer_contentGroup = { 'salesFunnelStage' : "index" } // Liquid variables // Functions /** * @desc Collects data of the items from a provided list * @param items * @param event */ const getListItems = (items, extendedItemData, event) => { if (!items) return; // Create faster lookups for extended item data const extendedItemDataMap = {}; extendedItemData.forEach((item) => { extendedItemDataMap[item.id] = item; }); const listItems = Array.isArray( items ) ? items : Array.from(Object.entries(items), ([key, value]) => value); builtItems = []; listItems.forEach((item, index) => { const productId = item.product_id || item.id; if (extendedItemDataMap[productId]) { const gaTrackingName = extendedItemDataMap[productId].ga_tracking_name; if (gaTrackingName) { item.ga_tracking_name = gaTrackingName; } } builtItems.push(buildProductObject(item, index, event)); }); return builtItems; } const removeCents = ( price ) => parseFloat( price ) / 100; /** * Builds a product object. Depending on the event the dimensions are customizable. * @param item * @param index * @param event */ const buildProductObject = (item, index, event) => { if (!item) return; let productObject = { "item_name": item && item.ga_tracking_name ? item.ga_tracking_name : (item && item.product_title ? item.product_title : (item && item.title ? getItemName(item.title, item.variant_title || null) : item.title ) || ""), "price": item && item.price ? removeCents(item.price) : "", "item_brand": item && item.vendor ? item.vendor : "" , "item_variant": item && item.variant_title ? item.variant_title : "", "index": index, } if ('handle' in item) { productObject._handle = item.handle; } // Check if the coupon and discount dimensions are needed if (item.line_level_discount_allocations && item.line_level_discount_allocations.length > 0) { let coupon = []; item.line_level_discount_allocations.forEach((discount) => { coupon.push({ 'couponTitle': discount.discount_application.title, 'amount': discount.amount }) }) productObject.coupon = coupon; productObject.discount = item.line_level_discount_allocations; } // Aditional event dimensions let options = {}; switch(event) { case "cart": options = { "item_id": item && item.product_id ? item.product_id : "", "quantity": item.quantity ? item.quantity : 1, "item_category": item && item.product_type ? item.product_type : "", "item_variant": item && item.variant_title ? item.variant_title : "", "item_color": getOption(item.options_with_values, item.variant_options, "Color", event), "item_inseam_length": getOption(item.options_with_values, item.variant_options, "Inseam", event), "item_size": getOption(item.options_with_values, item.variant_options, "Size", event), "item_band_size": getOption(item.options_with_values, item.variant_options, "Band Size", event), "item_cup_size": getOption(item.options_with_values, item.variant_options, "Cup Size", event) } break; case "product": options = { "item_id": item ? item.id : null, "quantity": item && item.quantity ? item.quantity : 1, "item_category": '' , "item_variant": '', "item_colors": '', "item_inseam_length": '', "item_size": '', "item_band_size": '', "item_cup_size": '', } break; case "single_cart_item": options = { "item_id": item && item.product_id ? item.product_id : "", "item_category": item ? (item.product_category ? item.product_category : item.product_type) : "", "quantity": item.quantity ? item.quantity : 1, "item_variant": item && item.title ? item.title : "", "item_options": item && item.title ? item.title : "" } } let productDetailedObject = { ...productObject, ...options } return productDetailedObject; } const getItemName = (itemTitle, variantTitle) => { if (variantTitle && itemTitle.includes(variantTitle)) { // Check for the variant title itemTitle = itemTitle.replaceAll(variantTitle, ''); // Check for "-" or "_" at the end of string itemTitle = itemTitle.slice(0, -3); } return itemTitle; } /** * @desc Obtains the specified option in 'option' parameter inside of the product options. + @param productOptions * @param variantOptions * @param option * @param event */ const getOption = (productOptions, variantOptions, option, event) => { if (event == "cart") { let value = ''; const options = productOptions.forEach((productOption) => { if (productOption.name == option) { value = productOption.value } }); return value; } const index = productOptions.indexOf(option); if (index != -1) { return variantOptions[index]; } return ''; } /** * @desc Money filter with multi-format support * * @param { Integer } value - Money amount, in cents * @param { Object } {options} (optional) - { * { String } decimalSeparator - The char to be used as the decimal separator | default: "."" * { String } symbol - Currency symbol (does not suppose to be the currency code) | default: "$" * { Boolean } trailingSymbol - when true, the symbol will be placed after the amount | default: false * } * * @returns { String } - The inputted value, in money format, without currency code */ const money = (value, options) => { const { decimalSeparator, symbol, trailingSymbol } = options; let str = String(parseFloat(value) / 100); str += str.indexOf(".") < 0 ? ".00" : "00"; let amount = `${str.substring(0, str.indexOf(".") + 3)}`; amount = trailingSymbol ? `${amount}${symbol}` : `${symbol}${amount}`; return decimalSeparator !== "." ? amount.replace(".", decimalSeparator) : amount; }; /** * Get the release data on production * @returns { Object } - An object with all of the meta data from the last release */ const getReleaseMetaData = () => { const spanxObject = window.SPANX; const shopifyObject = window.Shopify; let metaData = {}; if (spanxObject && shopifyObject) { metaData = { "version": spanxObject.version, "theme_name": shopifyObject.theme ? shopifyObject.theme.name : '', "theme_id": shopifyObject.theme ? shopifyObject.theme.id : '', "date": spanxObject.release_date } } return metaData; } /** * Builds the event body and schema. * @param event * @param variant */ const buildEventsJSON = (event, variant, cart = "", extraParams = null) => { const ecommerce = { "currency": Shopify?.currency?.active || window.NA, "value": removeCents(cart != "" ? cart.total_price : 0), }; let item_list_name = ""; let item_list_id = 0; switch(event) { case "page_view": return { "event": "page_view", "page_location": url.origin + url.pathname, "page_title": "index", "page_referrer": document.referrer, "full_url": url.href, "language": "en-US", "user_login_status": "Logged Out", "page_type": "index", "is_customer": false, "user_status": false, "site_country": "-US", "customer_type": "New", "hashed_email": '', "ga_cookie_id": gaCookieId(), "content_group": _dataLayer_contentGroup, "user_account_id": "", "release_meta_data": getReleaseMetaData() } case "view_cart": return { "event": "view_cart", "ecommerce": { ...ecommerce, "items": getListItems(cart != "" ? cart.items : [], [] , "cart") } } case "view_item": const product = null; const pageSearchParam = new URLSearchParams( location.search ); const pageVariantId = pageSearchParam.get( "variant" ); const pageVariant = product?.variants?.find( variant => variant.id == pageVariantId ); let view_item_items = []; let view_item_ga_tracking_data = [ { "id": null, "ga_tracking_name": null } ].find( epd => epd.id === product.id); view_item_items.forEach( vii => { vii.item_view_type = "pdp"; vii.item_name = view_item_ga_tracking_data && view_item_ga_tracking_data.ga_tracking_name ? view_item_ga_tracking_data.ga_tracking_name : product?.title || vii?.product_title || vii?.title || null; vii.product_title = product.title; }); let seenItem = getCachedItem({ product_id: product?.id || null, id: pageVariantId || null }) || {}; if ("item_list_name" in seenItem === false) { const product_page = window.location.pathname.includes("/products/") ? 'product_details_page' : ''; updateCachedItem({ ...product, product_id: product?.id || product?.product_id || null, locked: false, item_list_name: product?.item_list_name || product_page || "collection_search", item_list_id: product?.item_list_id || 1 }); seenItem = getCachedItem({ product_id: product?.id || null, id: pageVariantId || null }) || {}; } view_item_items[0].item_list_name = seenItem?.item_list_name; view_item_items[0].item_list_id = seenItem?.item_list_id; return { "event": "view_item", "item_list_name": seenItem?.item_list_name || view_item_items[0]?.item_list_name || "collection_search", "item_list_id": seenItem?.item_list_id || view_item_items[0]?.item_list_id || 1, "item_view_type": "pdp", "ecommerce": { ...ecommerce, items: view_item_items } } case "cart_quantity_decrease": case "remove_from_cart": let cartItems = cart?.items || []; let removed = cartItems?.length ? !(cartItems?.filter(item => item.id == variant?.id)?.length || 0) : true; if (removed) { unlockSeenItem(variant); } return { event, "ecommerce": { ...ecommerce, "items": getListItems(cart != "" ? cart.items : [variant], [], "single_cart_item") } } case "cart_quantity_increase": case "add_to_cart": let newItem = variant; let lockedItem = lockSeenItem(newItem); let parsedListItems = getListItems([newItem], [] , (variant?.sideCart ? "single_cart_item" : "product")); let itemVariantTitle = variant && variant?.title ? variant.title : getItemName(parsedListItems[0]?.title || "", parsedListItems[0]?.variant_title || null); if (parsedListItems[0]) { parsedListItems = [{ ...parsedListItems[0], item_name: parsedListItems[0]?.item_name || variant?.ga_tracking_name || variant?.product_title || "", item_colors: variant?.option1 || parsedListItems[0]?.item_colors || "", item_size: variant?.option2 || parsedListItems[0]?.item_size || "", item_cup_size: variant?.option3 || parsedListItems[0]?.item_cup_size || "", item_variant: itemVariantTitle, product_title: newItem?.product_title || newItem?.title || newItem?.ga_tracking_name || null, item_list_name: lockedItem?.item_list_name || newItem?.item_list_name || "collection_search", item_list_id: lockedItem?.item_list_id || newItem?.item_list_id || 1, add_to_cart_method: variant?.sideCart ? "quickview" : lockedItem?.add_to_cart_method || "pdp", item_view_type: lockedItem?.item_view_type || "pdp" }]; } if (lockedItem === false) { const product_page = window.location.pathname.includes("/products/") ? 'product_details_page' : ''; updateCachedItem({ ...newItem, locked: true, item_list_name: newItem?.item_list_name || product_page || "collection_search", item_list_id: newItem?.item_list_id || 1 }); } return { event, "ecommerce": { ...ecommerce, items: parsedListItems } } case "select_item": let selectedItem = variant; let cachedItem = getCachedItem(selectedItem) || {}; let component_list_item_name = selectedItem?.component_name ? "feature_product_" + selectedItem?.component_name : null; item_list_name = cachedItem?.item_list_name || selectedItem?.item_list_name || component_list_item_name || "collection_search"; item_list_id = cachedItem?.item_list_id || selectedItem?.item_list_id || 1; updateCachedItem({ ...selectedItem, ...cachedItem, item_list_name, item_list_id }); return { "event": "select_item", item_list_name, item_list_id, component_name: selectedItem?.component_name || null, "ecommerce": { "currency": Shopify?.currency?.active || window.NA, "items": [ { "component_name": selectedItem?.component_name || null, "item_id": selectedItem?.id || selectedItem?.product_id || cachedItem?.id || cachedItem?.product_id || null, "item_name": selectedItem?.item_name, "price": removeCents(selectedItem?.price) } ] } } case "begin_checkout": return variant != "" ? variant : "" case "add_shipping_info": return { "event": "add_shipping_info", "ecommerce": { "currency": variant.ecommerce.currency, "value": variant.ecommerce.value, "coupon": variant.ecommerce.coupon, "checkout_step": variant.ecommerce.checkout_step, "shipping_tier": variant.ecommerce.shipping_tier, "items": variant.ecommerce.items } } case "add_payment_info": return { "event": "add_payment_info", "ecommerce": { "currency": variant.ecommerce.currency, "value": variant.ecommerce.value, "coupon": variant.ecommerce.coupon, "checkout_step": variant.ecommerce.checkout_step, "payment_type": variant.ecommerce.payment_type, "items": variant.ecommerce.items } } case "purchase": return variant != "" ? variant : "" case "filter_interaction": return { "event": "filter_interaction", "filter_type": variant.filter, "filter_option": variant.option, "page_type": "index", "collection": "index", "filter_interaction_count": 1 } case "view_item_list": } } function getSeenItemsKey() { return "view_item_list_dict"; } function saveSeenItems(items) { const saveSeenItemsKey = getSeenItemsKey(); sessionStorage.setItem(saveSeenItemsKey, JSON.stringify(items)); } function getSeenItems() { const saveSeenItemsKey = getSeenItemsKey(); return JSON.parse(sessionStorage.getItem(saveSeenItemsKey) || "{}"); } function findSeenItemIndex(seenItems, item) { const productId = item?.product_id || null; const variantId = item?.id || null; const composedId = `${productId}-${variantId}`; const itemId = item?.item_id || null; if (typeof seenItems[productId] !== "undefined") { return productId; } else if (typeof seenItems[variantId] !== "undefined") { return variantId; } else if (typeof seenItems[composedId] !== "undefined") { return composedId; } else if (typeof seenItems[itemId] !== "undefined") { return itemId; } return null; } function getCachedItem(item) { const seenItems = getSeenItems(); const seenItemIndex = findSeenItemIndex(seenItems, item); return seenItemIndex ? seenItems[seenItemIndex] : null; } function updateCachedItem(item) { const seenItems = getSeenItems(); const seenItemIndex = findSeenItemIndex(seenItems, item); if (seenItemIndex) { seenItems[seenItemIndex] = { ...seenItems[seenItemIndex], ...{ item_list_name: item.item_list_name, item_list_id: item.item_list_id } }; saveSeenItems(seenItems); } else { saveSeenItems({ ...seenItems, [item.product_id]: { locked: false, item_list_name: item.item_list_name, item_list_id: item.item_list_id, add_to_cart_method: "pdp", item_view_type: "pdp" } }); } } function lockSeenItem(item) { const seenItems = getSeenItems(); const seenItemIndex = findSeenItemIndex(seenItems, item); if (seenItemIndex) { seenItems[seenItemIndex].locked = true; saveSeenItems(seenItems); return seenItems[seenItemIndex] || null; } return false; } function unlockSeenItem(item) { const seenItems = getSeenItems(); const seenItemIndex = findSeenItemIndex(seenItems, item); if (seenItemIndex) { seenItems[seenItemIndex].locked = false; saveSeenItems(seenItems); return true; } return false; } // Javascript variables const productItems = document.querySelectorAll('.product'); const couponCode = document.querySelector('.tags-list .reduction-code__text') ? document.querySelector('.tags-list .reduction-code__text').textContent : ""; // Functions /** * Returns the payment information on Payment step of the checkout */ const getPaymentMethod = () => { let paymentMethod = document.querySelector('.section--payment-method .content-box__row .input-radio:checked') ? document.querySelector('.section--payment-method .content-box__row .input-radio:checked').getAttribute("id").trim() : ""; const radioLabel = document.querySelectorAll('.radio__label__primary') ? document.querySelectorAll('.radio__label__primary') : ""; radioLabel.forEach((radioItem) => { if (radioItem.getAttribute("for") === paymentMethod) { paymentMethod = radioItem.textContent; } }); return paymentMethod; } /** * Builds a product object. */ const getCheckoutProductItems = () => { const items = []; productItems.forEach(productItem => { let productPriceNormal = "" let productPriceDiscount = ""; let productVariantColor = ""; let productVariantInseam = ""; let productVariantSize = ""; let productVariantBandSize = ""; let productVariantCupSize = ""; let productQuantity = productItem.querySelector('.product__quantity > span').textContent; const productType = productItem.getAttribute("data-product-type"); const productPriceStrike = productItem.querySelector('.product__price').querySelector('.order-summary__strike-price'); const productPriceSmallText = productItem.querySelector('.product__price').querySelector('.order-summary__small-text'); const productCoupon = productItem.querySelector('.product__description .reduction-code__text'); if (productPriceStrike !== null) { productPriceNormal = productPriceStrike.textContent; productPriceDiscount = productItem.querySelector('.product__price .order-summary__emphasis').textContent; } else if (productPriceSmallText !== null) { productPriceNormal = productPriceSmallText.textContent; productPriceDiscount = productItem.querySelector('.product__price .order-summary__emphasis').textContent; } else { productPriceNormal = productItem.querySelector('.product__price .order-summary__emphasis').textContent; productPriceDiscount = ""; } const productVariantInfo = (productItem.querySelector('.product__description__variant') || "").textContent.split("/").map(item => item.trim()); productVariantColor = productVariantInfo[0]; if (productType !== "Bras") { productVariantSize = productVariantInfo[1]; if (productVariantInfo.length === 3) { productVariantInseam = productVariantInfo[1]; productVariantSize = productVariantInfo[2]; } } else { productVariantBandSize = productVariantInfo[1]; productVariantCupSize = productVariantInfo[2]; } const itemsObject = { 'item_name': productItem.querySelector('.product__description__name').textContent, 'item_id': productItem.getAttribute("data-product-id"), 'quantity': productQuantity.includes(" ") ? productQuantity.replace(/\s/g,'') : productQuantity, 'price': productPriceNormal, 'item_category': productItem.getAttribute("data-product-type"), 'item_brand': 'Spanx', 'item_variant': productItem.querySelector('.product__description__variant').textContent, 'discount': productPriceDiscount, 'item_color': productVariantColor, 'item_inseam_length': productVariantInseam, 'item_size': productVariantSize, 'item_band_size': productVariantBandSize, 'item_cup_size': productVariantCupSize } items.push(itemsObject); }); return items; } /** * Handles the begin_checkout event data. */ const beginCheckoutEvent = () => { return { "event": "begin_checkout", "ecommerce": { "currency": "", "value": '', "coupon": couponCode, "checkout_step": window.Shopify.Checkout.step, "items": getCheckoutProductItems() } } } /** * Handles the add_shipping_info event data. And handles the click event on the "Continue" button */ const addShippingInfoEvent = () => { waitElement(".section--shipping-method").then((element) => { const continueButton = document.getElementById('continue_button'); if (!element || !continueButton) return; const shippingTier = document.querySelector('.section--shipping-method .content-box__row .input-radio:checked') ? document.querySelector('.section--shipping-method .content-box__row .input-radio:checked').getAttribute("data-checkout-total-shipping") : ""; continueButton.addEventListener("click", (e) => { const eventObject = { "event": "add_shipping_info", "ecommerce": { "currency": "", "value": '', "coupon": couponCode, "checkout_step": window.Shopify.Checkout.step, "shipping_tier": shippingTier, "items": getCheckoutProductItems() } } const clickedButtonEvent = new CustomEvent("checkoutButtonEvent", { "detail": { "event_name": "add_shipping_info", "event_only": false, "variant": eventObject } }); document.dispatchEvent(clickedButtonEvent); }) }) } /** * Handles the add_payment_info event data. And handles the click event on the "Continue" button */ const addPaymentInfoEvent = () => { waitElement("#continue_button").then((element) => { if (!element) return; element.addEventListener("click", (e) => { let paymentMethod = getPaymentMethod(); const eventObject = { "event": "add_payment_info", "ecommerce": { "currency": "", "value": '', "coupon": couponCode, "checkout_step": window.Shopify.Checkout.step, "payment_type": paymentMethod, "items": getCheckoutProductItems() } } const clickedButtonEvent = new CustomEvent("checkoutButtonEvent", { "detail": { "event_name": "add_payment_info", "event_only": false, "variant": eventObject } }); document.dispatchEvent(clickedButtonEvent); }) }) } /** * Handles the purchase event data. */ const purchaseEvent = () => { return { "event": "purchase", "ecommerce": { "currency": "", "value": '', "coupon": "", "transaction_id": "", "tax": "", "shipping": "", "items": getCheckoutProductItems() } } } </script> <script type="module"> import { pushOnloadEvents, pushDataLayerEvent, handleCheckoutEvents } from "//spanx.com/cdn/shop/t/82/assets/datalayer-ga4.js?v=93783846053608315571737383097"; document.addEventListener('DOMContentLoaded', function () { // Check if the page belongs to the checkout and execute corresponding events if (url.href.indexOf('checkouts') === -1) { pushOnloadEvents(); // Event listener for handle clicks. document.addEventListener('itemClicked', function (event) { pushDataLayerEvent(event.detail.event_name, event.detail.event_only, event.detail.variant); }); } else { handleCheckoutEvents(); // Event listener for handle checkout button clicks document.addEventListener('checkoutButtonEvent', function (event) { pushDataLayerEvent(event.detail.event_name, event.detail.event_only, event.detail.variant); }); } }); </script> <link data-spanx-hreflang rel="alternate" hreflang="fr-ca" href="https://spanx.ca/fr/"><link data-spanx-hreflang rel="alternate" hreflang="en-ca" href="https://spanx.ca/"> <link data-spanx-hreflang rel="alternate" hreflang="en-us" href="https://spanx.com/"> <link data-spanx-hreflang rel="alternate" hreflang="x-default" href="https://spanx.com/"><link rel="shortcut icon" href="//spanx.com/cdn/shop/files/favicon-32x32_32x32.png?v=1629901877" type="image/png"><title>SPANX | Shapewear, Clothing, Activewear &amp; Intimates</title><meta name="description" content="Shop Spanx.com for the largest selection of slimming intimates, body shapers, hosiery, apparel, and the latest innovations in shapewear for men and women."> <script type="application/ld+json"> { "@context": "http:\/\/schema.org", "@type": "Organization", "url": "https:\/\/www.spanx.com\/", "logo": "https:\/\/spanx.com/cdn/shop/t/82/assets/logo-black.svg?v=140515931841125915371649784351", "name": "Spanx.com", "telephone": "1-888-806-7311", "email": "contactus@spanx.com", "address": { "@type":"PostalAddress", "addressCountry": "United States", "addressLocality": "Atlanta", "postalCode": "30305", "streetAddress": "3035 Peachtree Rd NE, Suite 200", "addressRegion": "GA" } } </script> <meta property="og:site_name" content="Spanx"> <meta property="og:url" content="https://spanx.com/"> <meta property="og:title" content="SPANX | Shapewear, Clothing, Activewear &amp; Intimates"> <meta property="og:type" content="website"> <meta property="og:description" content="Shop Spanx.com for the largest selection of slimming intimates, body shapers, hosiery, apparel, and the latest innovations in shapewear for men and women."><meta property="og:image" content="http://spanx.com/cdn/shop/files/spanx-logo-1080p-darkest-blue-1920-1024.png?v=1709237753"> <meta property="og:image:secure_url" content="https://spanx.com/cdn/shop/files/spanx-logo-1080p-darkest-blue-1920-1024.png?v=1709237753"> <meta property="og:image:width" content="1920"> <meta property="og:image:height" content="1024"> <meta property="og:image:alt" content=""> <meta name="twitter:site" content="@SPANX"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="SPANX | Shapewear, Clothing, Activewear &amp; Intimates"> <meta name="twitter:description" content="Shop Spanx.com for the largest selection of slimming intimates, body shapers, hosiery, apparel, and the latest innovations in shapewear for men and women."><link rel="preconnect" href="https://use.typekit.net"> <style> /*Latin*/ @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url("//spanx.com/cdn/shop/t/82/assets/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2?v=67472602311321724321722363127") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url("//spanx.com/cdn/shop/t/82/assets/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2?v=67472602311321724321722363127") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url("//spanx.com/cdn/shop/t/82/assets/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2?v=67472602311321724321722363127") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url("//spanx.com/cdn/shop/t/82/assets/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2?v=67472602311321724321722363127") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url("//spanx.com/cdn/shop/t/82/assets/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2?v=67472602311321724321722363127") format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* * The Typekit service used to deliver this font or fonts for use on websites * is provided by Adobe and is subject to these Terms of Use * http://www.adobe.com/products/eulas/tou_typekit. For font license * information, see the list below. * * ivypresto-headline: * - http://typekit.com/eulas/00000000000000007735e5a9 * - http://typekit.com/eulas/00000000000000007735e5a2 * * © 2009-2024 Adobe Systems Incorporated. All Rights Reserved. */ /*{"last_published":"2023-07-07 13:37:33 UTC"}*/ @font-face { font-family:"ivypresto-headline"; src:url("https://use.typekit.net/af/3d3aa9/00000000000000007735e5a9/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"),url("https://use.typekit.net/af/3d3aa9/00000000000000007735e5a9/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"),url("https://use.typekit.net/af/3d3aa9/00000000000000007735e5a9/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype"); font-display:swap;font-style:italic;font-weight:400;font-stretch:normal; } @font-face { font-family:"ivypresto-headline"; src:url("https://use.typekit.net/af/e456f5/00000000000000007735e5a2/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/e456f5/00000000000000007735e5a2/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/e456f5/00000000000000007735e5a2/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype"); font-display:swap;font-style:normal;font-weight:400;font-stretch:normal; } .tk-ivypresto-headline { font-family: "ivypresto-headline",serif; } </style> <link href="//spanx.com/cdn/shop/t/82/assets/bva.css?v=35398333735194575451739372654" rel="stylesheet" type="text/css" media="all" /> <style> [v-cloak] { opacity: 0; max-height: 100vh; } </style> <script> window.__webpack_public_path__ = "//spanx.com/cdn/shop/t/82/assets/" </script> <script> (function () { const elements = document.querySelectorAll("link[hreflang]:not([data-spanx-hreflang])"); if (elements.length) { Array.from(elements).forEach(element => { element.parentNode.removeChild(element); }); } })(); window.i18nHelpers = window.i18nHelpers || {}; if (!window.i18nHelpers["functions"]) { window.i18nHelpers.functions = {}; } const isFrenchURL = () => { return window.location.pathname.split("/")[1] === "fr"; }; ;((window) => { const i18nCookiesKeys = { locationPrefCookieKey: "locationPref", langPrefCookieKey: "langPref" }; window.i18nHelpers.functions.getCookie = cookieKey => { if (!cookieKey) { return null; } let cookieVal = null; const cookieDecoded = decodeURIComponent(document.cookie); const cookieArray = cookieDecoded.split("; "); cookieArray.forEach(cookie => { if (cookie.indexOf(cookieKey) === 0) { cookieVal = cookie.substring(cookieKey.length + 1); } }); return cookieVal; }; window.i18nHelpers.functions.setCookie = (name, value, daysToLive) => { const date = new Date(); date.setTime(date.getTime() + daysToLive * 24 * 60 * 60 * 1000); let expires = "expires="; expires = expires.concat(date.toUTCString()); document.cookie = `${name}=${value}; ${expires}; path=/`; }; window.i18nHelpers.functions.getLanguageCookie = () => { const { getCookie } = window.i18nHelpers.functions; const { langPrefCookieKey } = i18nCookiesKeys; const languageCookieVal = getCookie(langPrefCookieKey) || false; if (languageCookieVal) { const preferredLanguageCode = languageCookieVal ? (languageCookieVal || "").toLowerCase().replace("_ca", "") : null; return preferredLanguageCode; } return null; }; window.i18nHelpers.functions.checkSiteLanguage = () => { const { setCookie } = window.i18nHelpers.functions; const { langPrefCookieKey } = i18nCookiesKeys; if (isFrenchURL()) { setCookie(langPrefCookieKey, "fr_ca", 30); } else { setCookie(langPrefCookieKey, "en", 30); } }; window.i18nHelpers.functions.removeLocationCookie = () => { const { locationPrefCookieKey } = i18nCookiesKeys; document.cookie = `${locationPrefCookieKey}=;expires=${new Date().toUTCString()}; path=/`; }; window.i18nHelpers.functions.getLocationCookie = () => { const { getCookie } = window.i18nHelpers.functions; const { locationPrefCookieKey } = i18nCookiesKeys; const locationCookieVal = getCookie(locationPrefCookieKey) || null; if (locationCookieVal) { const [countryCode, regionCode] = locationCookieVal.split("-"); return countryCode ? ({ countryCode, regionCode: regionCode || "" }) : null; } return null; }; window.i18nHelpers.functions.setLocationCookie = (countryCode, regionCode = "") => { if (!countryCode) { return false; } const { setCookie, getCookie } = window.i18nHelpers.functions; const { locationPrefCookieKey } = i18nCookiesKeys; const preferredCountry = countryCode.toUpperCase(); const preferredRegion = (regionCode || "").toUpperCase(); const expiresInDays = 360; const preferredLocation = `${preferredCountry}-${preferredRegion}`; setCookie(locationPrefCookieKey, preferredLocation, expiresInDays); const locationCookieVal = getCookie(locationPrefCookieKey) || null; return locationCookieVal ? locationCookieVal === preferredLocation : false; }; window.i18nHelpers.functions.checkSiteLanguage(); })(window);</script> <script> window.i18nHelpers = window.i18nHelpers || {}; ;((window) => { "use strict"; const geoLocationServiceEnabled = true; window.i18nHelpers.functions.removeCountryQueryParamFromCurrentURL = () => { try { const currentUrl = new URL(window.location.href); currentUrl.searchParams.delete("country"); window.history.replaceState({}, "", currentUrl.toString()); } catch (error) { console.error(error.message || error); } }; window.i18nHelpers.functions.titleCase = str => { return str.toLowerCase().split(" ").map(s => s.charAt(0).toUpperCase() + s.slice(1)).join(" ") || str; }; try { const { getLocationCookie, setLocationCookie, removeLocationCookie, getLanguageCookie, removeCountryQueryParamFromCurrentURL, titleCase } = window.i18nHelpers.functions; const setCookie = (countryCode, regionCode = "") => { const countryPrefCookieVal = setLocationCookie(countryCode, regionCode); if (!countryPrefCookieVal) { console.error("Error saving localization preference"); return null; } return countryCode; }; function getTopLevelDomain() { return "com"; }; function getAvailableLanguages() { const countryListFromUSStore = [{"name":"Austria","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"AT","continent":"Europe","popular":false,"current":false},{"name":"Belgium","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"BE","continent":"Europe","popular":false,"current":false},{"name":"Bulgaria","currency":{"code":"BGN","symbol":"лв."},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"BG","continent":"Europe","popular":false,"current":false},{"name":"Cyprus","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"CY","continent":"Europe","popular":false,"current":false},{"name":"Czechia","currency":{"code":"CZK","symbol":"Kč"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"CZ","continent":"Europe","popular":false,"current":false},{"name":"Germany","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"DE","continent":"Europe","popular":false,"current":false},{"name":"Denmark","currency":{"code":"DKK","symbol":"kr."},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"DK","continent":"Europe","popular":false,"current":false},{"name":"Estonia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"EE","continent":"Europe","popular":false,"current":false},{"name":"Spain","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"ES","continent":"Europe","popular":false,"current":false},{"name":"Finland","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"FI","continent":"Europe","popular":false,"current":false},{"name":"France","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"FR","continent":"Europe","popular":false,"current":false},{"name":"United Kingdom","currency":{"code":"GBP","symbol":"£"},"unitSystem":"imperial","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"GB","continent":"Europe","popular":false,"current":false},{"name":"Greece","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"GR","continent":"Europe","popular":false,"current":false},{"name":"Croatia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"HR","continent":"Europe","popular":false,"current":false},{"name":"Hungary","currency":{"code":"HUF","symbol":"Ft"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"HU","continent":"Europe","popular":false,"current":false},{"name":"Ireland","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"IE","continent":"Europe","popular":false,"current":false},{"name":"Italy","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"IT","continent":"Europe","popular":false,"current":false},{"name":"Lithuania","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"LT","continent":"Europe","popular":false,"current":false},{"name":"Luxembourg","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"LU","continent":"Europe","popular":false,"current":false},{"name":"Latvia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"LV","continent":"Europe","popular":false,"current":false},{"name":"Malta","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"MT","continent":"Europe","popular":false,"current":false},{"name":"Netherlands","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"NL","continent":"Europe","popular":false,"current":false},{"name":"Norway","currency":{"code":"NOK","symbol":"kr"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"NO","continent":"Europe","popular":false,"current":false},{"name":"Poland","currency":{"code":"PLN","symbol":"zł"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"PL","continent":"Europe","popular":false,"current":false},{"name":"Portugal","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"PT","continent":"Europe","popular":false,"current":false},{"name":"Romania","currency":{"code":"RON","symbol":"Lei"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"RO","continent":"Europe","popular":false,"current":false},{"name":"Sweden","currency":{"code":"SEK","symbol":"kr"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"SE","continent":"Europe","popular":false,"current":false},{"name":"Slovenia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"SI","continent":"Europe","popular":false,"current":false},{"name":"Slovakia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"SK","continent":"Europe","popular":false,"current":false},{"name":"United States","currency":{"code":"USD","symbol":"$"},"unitSystem":"imperial","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"US","continent":"North America","popular":false,"current":false},{"name":"Canada","currency":{"code":"CAD","symbol":"$"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"},{"name":"French","code":"fr","endonymName":"Français","isPrimary":false,"rootUrl":"\/fr"}],"code":"CA","continent":"North America","popular":true,"current":true}]; if(!countryListFromUSStore) { return false; } let availableLanguages = []; for (const country of countryListFromUSStore) { for (const lang of country.availableLanguages) { if (!availableLanguages.find(l => l.code === lang.code)) { availableLanguages.push({ endonymName: titleCase(lang.endonymName), name: titleCase(lang.name), code: lang.code, rootUrl: lang.rootUrl, isPrimary: lang.isPrimary }); } } } return availableLanguages; }; function getAvailableCountries(englishLang, filterCountries = true) { const enableCountryFiltering = ("false" === "true"); let availableLanguages = [englishLang]; const availableCountries = []; const countryListFromUSStore = [{"name":"Austria","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"AT","continent":"Europe","popular":false,"current":false},{"name":"Belgium","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"BE","continent":"Europe","popular":false,"current":false},{"name":"Bulgaria","currency":{"code":"BGN","symbol":"лв."},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"BG","continent":"Europe","popular":false,"current":false},{"name":"Cyprus","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"CY","continent":"Europe","popular":false,"current":false},{"name":"Czechia","currency":{"code":"CZK","symbol":"Kč"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"CZ","continent":"Europe","popular":false,"current":false},{"name":"Germany","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"DE","continent":"Europe","popular":false,"current":false},{"name":"Denmark","currency":{"code":"DKK","symbol":"kr."},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"DK","continent":"Europe","popular":false,"current":false},{"name":"Estonia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"EE","continent":"Europe","popular":false,"current":false},{"name":"Spain","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"ES","continent":"Europe","popular":false,"current":false},{"name":"Finland","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"FI","continent":"Europe","popular":false,"current":false},{"name":"France","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"FR","continent":"Europe","popular":false,"current":false},{"name":"United Kingdom","currency":{"code":"GBP","symbol":"£"},"unitSystem":"imperial","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"GB","continent":"Europe","popular":false,"current":false},{"name":"Greece","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"GR","continent":"Europe","popular":false,"current":false},{"name":"Croatia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"HR","continent":"Europe","popular":false,"current":false},{"name":"Hungary","currency":{"code":"HUF","symbol":"Ft"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"HU","continent":"Europe","popular":false,"current":false},{"name":"Ireland","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"IE","continent":"Europe","popular":false,"current":false},{"name":"Italy","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"IT","continent":"Europe","popular":false,"current":false},{"name":"Lithuania","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"LT","continent":"Europe","popular":false,"current":false},{"name":"Luxembourg","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"LU","continent":"Europe","popular":false,"current":false},{"name":"Latvia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"LV","continent":"Europe","popular":false,"current":false},{"name":"Malta","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"MT","continent":"Europe","popular":false,"current":false},{"name":"Netherlands","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"NL","continent":"Europe","popular":false,"current":false},{"name":"Norway","currency":{"code":"NOK","symbol":"kr"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"NO","continent":"Europe","popular":false,"current":false},{"name":"Poland","currency":{"code":"PLN","symbol":"zł"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"PL","continent":"Europe","popular":false,"current":false},{"name":"Portugal","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"PT","continent":"Europe","popular":false,"current":false},{"name":"Romania","currency":{"code":"RON","symbol":"Lei"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"RO","continent":"Europe","popular":false,"current":false},{"name":"Sweden","currency":{"code":"SEK","symbol":"kr"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"SE","continent":"Europe","popular":false,"current":false},{"name":"Slovenia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"SI","continent":"Europe","popular":false,"current":false},{"name":"Slovakia","currency":{"code":"EUR","symbol":"€"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"SK","continent":"Europe","popular":false,"current":false},{"name":"United States","currency":{"code":"USD","symbol":"$"},"unitSystem":"imperial","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"}],"code":"US","continent":"North America","popular":false,"current":false},{"name":"Canada","currency":{"code":"CAD","symbol":"$"},"unitSystem":"metric","availableLanguages":[{"name":"English","code":"en","endonymName":"English","isPrimary":true,"rootUrl":"\/"},{"name":"French","code":"fr","endonymName":"Français","isPrimary":false,"rootUrl":"\/fr"}],"code":"CA","continent":"North America","popular":true,"current":true}]; if (enableCountryFiltering && filterCountries) { let countryFilteringList = "US,CA,GB,DE,IE".split(","); if(countryFilteringList.length === 1 && countryFilteringList[0] === "") { countryFilteringList = ["US", "CA"]; } const filteredCountries = availableCountries.concat(countryListFromUSStore).filter(country => countryFilteringList.includes(country.code)); return filteredCountries; } return availableCountries.concat(countryListFromUSStore); if (enableCountryFiltering && filterCountries) { let countryFilteringList = "US,CA,GB,DE,IE".split(","); if(countryFilteringList.length === 1 && countryFilteringList[0] === "") { countryFilteringList = ["US", "CA"]; } const filteredCountries = availableCountries.filter(country => countryFilteringList.includes(country.code)); return filteredCountries; } return availableCountries; }; function getCurrentLocalization() { return { country: { name: titleCase("United States"), code: "US", unitSystem: "imperial" }, currency: { code: "USD", symbol: "$" }, language: { endonymName: titleCase("English"), name: titleCase("English"), code: "en", rootUrl: "/", isPrimary: true }, continent: "North America" }; }; function getGeoLocalization() { if (typeof window.geotargetly_loaded !== "function") { return null; } return { country: { name: typeof geotargetly_country_name === "function" ? geotargetly_country_name() : "", code: typeof geotargetly_country_code === "function" ? geotargetly_country_code().toUpperCase() : "" }, currency: { code: typeof geotargetly_currency_code === "function" ? geotargetly_currency_code().toUpperCase() : "", symbol: typeof geotargetly_currency_symbol === "function" ? geotargetly_currency_symbol() : "" }, region: { name: typeof geotargetly_region_name === "function" ? geotargetly_region_name() : "", code: typeof geotargetly_region_code === "function" ? geotargetly_region_code().toUpperCase() : "" }, continent: typeof geotargetly_continent_name === "function" ? geotargetly_continent_name() : "" }; }; function getLocationCookies() { const { countryCode: countryPref, regionCode: regionPref } = getLocationCookie() || { countryCode: null, regionCode: null }; const countryCookied = ( countryPref !== false && countryPref !== null && countryPref !== "" ); const regionCookied = ( regionPref !== false && regionPref !== null && regionPref !== "" ); const locationCookied = countryCookied && regionCookied; const languagePref = getLanguageCookie() || null; const languageCookied = ( languagePref !== false && languagePref !== null && languagePref !== "" ); return { countryPref, regionPref, languagePref, countryCookied, regionCookied, locationCookied, languageCookied }; }; function isIntlRedirection(isUSStore) { const referrerUrl = window?.document?.referrer || false; const referrerHost = referrerUrl ? new URL(referrerUrl)?.host || false : false; const currentUrl = window?.location?.href || false; const currentHost = currentUrl ? new URL(currentUrl)?.host || false : false; if (!referrerHost || !currentHost || referrerHost === currentHost) { return false; } const isSpanxCADomainRegEx = new RegExp(/^(spanx)[.-](ca){1}[.-]?(com|dev)?(.myshopify.com)?$/); const isSpanxUSDomainRegEx = new RegExp(/^(spanx)[.-](com|dev){1}[.-]?(com|dev)?(.myshopify.com)?$/); return isUSStore ? isSpanxCADomainRegEx.test(referrerHost) : isSpanxUSDomainRegEx.test(referrerHost); }; function updateCookieOnIntlRedirection() { const searchParams = window?.location?.search || false; const urlParams = searchParams ? new URLSearchParams(searchParams) || false : false; const targetCountryCode = urlParams ? urlParams.get("country") || false : false; if (!targetCountryCode) return false; /* const { getLocationCookie } = window?.i18nHelpers?.functions; const locationCookie = getLocationCookie(); const cookied = locationCookie && locationCookie?.countryCode && locationCookie?.countryCode !== ""; if (cookied) return; */ const cookieUpdated = setCookie(targetCountryCode, "") === targetCountryCode; if (!cookieUpdated) { console.error("Error updating the country preference"); } removeCountryQueryParamFromCurrentURL(); return cookieUpdated; }; function updateLocalization(localization, cookies) { const { currentLocation, isUSStore, isCAStore, preferredCountryCode } = localization; const { countryPref, regionPref, languagePref, countryCookied, regionCookied, locationCookied, languageCookied } = cookies; const geoLocation = !locationCookied ? getGeoLocalization() : null; const visitor = geoLocation ? ({ isUSVisitor: (geoLocation?.country?.code || "") === "US", isCAVisitor: (geoLocation?.country?.code || "") === "CA", isROWVisitor: (geoLocation?.country?.code || false) !== "US" && (geoLocation?.country?.code || false) !== "CA", geoAndCurrentCountryMatch: (currentLocation?.country?.code || false) === (geoLocation?.country?.code || ""), geoAndPreferredCountryMatch: (geoLocation?.country?.code || true) === countryPref }) : ({ isUSVisitor: null, isCAVisitor: null, isROWVisitor: null, geoAndCurrentCountryMatch: null, geoAndPreferredCountryMatch: null }); let suggestStoreChange = null; if (isUSStore && countryCookied) { suggestStoreChange = countryPref === "CA"; } else if (isUSStore && !countryCookied) { suggestStoreChange = geoLocation ? visitor.isCAVisitor || false : false; } else if (isCAStore && countryCookied) { suggestStoreChange = countryPref !== "CA"; } else if (isCAStore && !countryCookied) { suggestStoreChange = geoLocation ? visitor.isCAVisitor !== true : false; } else { suggestStoreChange = false; } let suggestLanguageChange = null; let isQuebecVisitor = false; if (isCAStore && !suggestStoreChange) { if (regionCookied) { isQuebecVisitor = (regionPref || "").toUpperCase() === "QC"; } else { isQuebecVisitor = geoLocation ? ( (geoLocation?.region?.name || "").toUpperCase() === "QUEBEC" || (geoLocation?.region?.code || "").toUpperCase() === "QC" ) : false; } const suggestedLanguageCode = isQuebecVisitor ? "fr" : "en"; const targetLanguage = (languageCookied && preferredCountryCode) ? languagePref : suggestedLanguageCode; const languageMatch = (currentLocation?.language?.code || "") === targetLanguage; const isTranslationAvailable = ( currentLocation.availableLanguages.filter( lang => (lang?.code || "") !== (currentLocation?.language?.code || "") ) || [] ).length > 0; suggestLanguageChange = isTranslationAvailable && !languageMatch; } else { suggestLanguageChange = false; } let suggestCountryChange = suggestStoreChange; if (isUSStore && !suggestStoreChange) { if (countryCookied) { suggestCountryChange = countryPref !== (currentLocation?.country?.code || false); } else if (!countryCookied && geoLocation) { suggestCountryChange = (visitor?.geoAndCurrentCountryMatch || false) === null ? false : !visitor?.geoAndCurrentCountryMatch || false; } } const isROWVisitor = visitor?.isROWVisitor || false; const isCAVisitor = visitor?.isCAVisitor || false; const isIntlRedir = localization?.isIntlRedir || false; const shouldCookieUS = isROWVisitor || isIntlRedir; const shouldCookieCA = isCAVisitor || isIntlRedir; if (shouldCookieUS && isUSStore && !locationCookied && geoLocation) { const geoLocatedCountryCode = geoLocation?.country?.code || false; const geoLocatedRegionCode = geoLocation?.region?.code || ""; const countryPrefCookie = countryCookied ? countryPref : geoLocatedCountryCode; let regionPrefCookie = regionCookied ? regionPref : geoLocatedRegionCode; if (countryCookied) { if (countryPref !== geoLocatedCountryCode) { regionPrefCookie = ""; } } if (countryPrefCookie) { setCookie(countryPrefCookie, regionPrefCookie); } } if (shouldCookieCA && isCAStore && !locationCookied && geoLocation) { const geoLocatedCountryCode = geoLocation?.country?.code || ""; const geoLocatedRegionCode = isQuebecVisitor ? "QC" : (geoLocation?.region?.code || ""); let regionPrefCookie = regionCookied ? regionPref : geoLocatedRegionCode; if (countryCookied) { if (countryPref !== geoLocatedCountryCode) { regionPrefCookie = ""; } } setCookie("CA", regionPrefCookie); } return { ...localization, geoLocation, geoLocated: geoLocation ? true : false, suggestStoreChange, suggestCountryChange, suggestLanguageChange, visitor }; }; const tld = getTopLevelDomain(); const isUSStore = tld === "com"; const isCAStore = tld === "ca"; const isIntlRedir = isIntlRedirection(isUSStore); const intlRedirCookied = isIntlRedir ? updateCookieOnIntlRedirection() : false; const currentLocation = getCurrentLocalization(); const availableLanguages = getAvailableLanguages() || []; const englishLang = availableLanguages.find(lang => lang.code === "en"); const availableCountries = getAvailableCountries(englishLang); const allCountries = getAvailableCountries(englishLang, false); const cookies = getLocationCookies() || {}; const isCanadaMarketEnabled = isUSStore && false; const localization = { availableCountries, allCountries, currentLocation: { ...currentLocation, availableLanguages }, isUSStore, isCAStore, isIntlRedir: isIntlRedir && intlRedirCookied, preferredCountryCode: cookies.countryPref || null, preferredRegionCode: cookies.regionPref || null, preferredLanguageCode: cookies.languagePref || null, suggestStoreChange: null, suggestCountryChange: null, suggestLanguageChange: null, isGeoLocationServiceAvailable: false, geoLocation: null, geoLocated: false, visitor: null, isCanadaMarketEnabled }; window.i18nHelpers.localization = localization; window.geotargetly_loaded = () => { localization.isGeoLocationServiceAvailable = true; if (geoLocationServiceEnabled) { if (!cookies.locationCookied) { window.i18nHelpers.localization = updateLocalization(localization, cookies); window.onload = () => window.dispatchEvent(new CustomEvent("geolocated", {detail: {sucessful: true}})); } } else { removeLocationCookie(); } window.geotargetly_loaded = () => null; }; window.addEventListener("load", event => { if (typeof window?.geotargetly_loaded === "function") { window.geotargetly_loaded(); } }); } catch (error) { console.error(error.message || error); }; })(window);</script> <meta name="google-site-verification" content="fIdc_kpcKUQu5WMRn1wGaQLUYsK2kvuSWxn0Pav83ok"> <meta name="google-site-verification" content="2Ae3a3YqlkVdWyxf8hAFqEW1V1Ogeu9b4lmgo2EO-zU"><script> window.dataLayer = window.dataLayer || []; dataLayer.push({ 'event': 'DataLayer Begin' }); </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://load.ssapi.spanx.com/suxoircs.js?st='+i+dl+'';f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','P42L4G5');</script> <script src="//spanx.com/cdn/shop/t/82/assets/na.js?v=74177399500391740531727874544"></script><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/54948954134/digital_wallets/dialog"> <meta name="shopify-checkout-api-token" content="11a1381875b0907706716b9224fd1846"> <meta id="in-context-paypal-metadata" data-shop-id="54948954134" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD"> <script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script> <link rel="preconnect" href="https://shop.app" crossorigin="anonymous"> <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-US&shop_id=54948954134" crossorigin="anonymous"></script> <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":54948954134,"countryCode":"US","currencyCode":"USD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/54948954134","merchantName":"Spanx","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","elo","jcb"],"total":{"type":"pending","label":"Spanx","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script> <script id="shopify-features" type="application/json">{"accessToken":"11a1381875b0907706716b9224fd1846","betas":["rich-media-storefront-analytics"],"domain":"spanx.com","predictiveSearch":true,"shopId":54948954134,"smart_payment_buttons_url":"https:\/\/spanx.com\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/spanx.com\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script> <script>var Shopify = Shopify || {}; Shopify.shop = "spanx-com.myshopify.com"; Shopify.locale = "en"; Shopify.currency = {"active":"USD","rate":"1.0"}; Shopify.country = "US"; Shopify.theme = {"name":"PRODUCTION | SPANX","id":122229915859,"schema_name":"Spanx Theme","schema_version":"1.3.8","theme_store_id":null,"role":"main"}; Shopify.theme.handle = "null"; Shopify.theme.style = {"id":null,"handle":null}; Shopify.cdnHost = "spanx.com/cdn"; Shopify.routes = Shopify.routes || {}; Shopify.routes.root = "/";</script> <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script> <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script> <script>window.ShopifyPay = window.ShopifyPay || {}; window.ShopifyPay.apiHost = "shop.app\/pay";</script> <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script> <script> window.Shopify = window.Shopify || {}; if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {}; window.Shopify.featureAssets['shop-js'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_OeEJaCCl.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_ebaeknJi.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_DFuavrNS.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_FYuhzIyB.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_BpgmfGjt.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_BeYjtKbh.en.esm.js","modules/v2/client.shop-login-button_lKeTheS8.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_PZ5lYCet.en.esm.js","modules/v2/client.shop-login-button_lKeTheS8.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_lKeTheS8.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_BJjZdiwD.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"pay-button":["modules/v2/client.pay-button_Bg1kIsBL.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_ChDGiggf.en.esm.js","modules/v2/client.shop-login-button_lKeTheS8.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"lead-capture":["modules/v2/client.lead-capture_aUqk28I9.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"],"payment-terms":["modules/v2/client.payment-terms_CgEU06X8.en.esm.js","modules/v2/chunk.common_CdbBmSm3.esm.js","modules/v2/chunk.modal_DqtUospk.esm.js"]}; </script> <script>(function() { function asyncLoad() { var urls = ["https:\/\/str.rise-ai.com\/?shop=spanx-com.myshopify.com","https:\/\/strn.rise-ai.com\/?shop=spanx-com.myshopify.com","https:\/\/static.fbot.me\/shopify\/friendbuy-shopify.js?merchantId=edeba4b0-672d-48a4-bd79-48491169aad3\u0026shop=spanx-com.myshopify.com","https:\/\/cdn.attn.tv\/spanx\/dtag.js?shop=spanx-com.myshopify.com","https:\/\/crossborder-integration.global-e.com\/resources\/js\/app?shop=spanx-com.myshopify.com","\/\/cdn.shopify.com\/proxy\/b57a688169aefd1c01c52d048e85dc8d8516eb9177ae9111ea7cc7527d740063\/web.global-e.com\/merchant\/storefrontattributes?merchantid=1759\u0026shop=spanx-com.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA","https:\/\/vision.duel.me\/duel-analytics.js?shop=spanx-com.myshopify.com"]; for (var i = 0; i < urls.length; i++) { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = urls[i]; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); } }; if(window.attachEvent) { window.attachEvent('onload', asyncLoad); } else { window.addEventListener('load', asyncLoad, false); } })();</script> <script id="__st">var __st={"a":54948954134,"offset":-18000,"reqid":"0c465406-bab5-48b5-95a3-708503acd5f8-1739705805","pageurl":"spanx.com\/","u":"33b4473a55b6","p":"home"};</script> <script>window.ShopifyPaypalV4VisibilityTracking = true;</script> <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script> <script integrity="sha256-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//spanx.com/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script> <script crossorigin="anonymous" defer="defer" src="//spanx.com/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script> <script integrity="sha256-HAs5a9TQVLlKuuHrahvWuke+s1UlxXohfHeoYv8G2D8=" data-source-attribution="shopify.dynamic-checkout" defer="defer" src="//spanx.com/cdn/shopifycloud/shopify/assets/storefront/features-1c0b396bd4d054b94abae1eb6a1bd6ba47beb35525c57a217c77a862ff06d83f.js" crossorigin="anonymous"></script> <link rel="stylesheet" media="screen" href="https://spanx.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous"> <style id="shopify-dynamic-checkout-cart">@media screen and (min-width: 750px) { #dynamic-checkout-cart { min-height: 50px; } } @media screen and (max-width: 750px) { #dynamic-checkout-cart { min-height: 120px; } } </style><script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script> <!-- BEGIN app block: shopify://apps/blotout-edgetag/blocks/app-embed/ae22d985-ba57-41f5-94c5-18d3dd98ea3c --> <script>window.edgetagSharedVariables = {...window.edgetagSharedVariables,tagUrl: 'https://lcdpq.spanx.com'};</script><script async type="text/javascript" src="https://lcdpq.spanx.com/load"></script><script>/* Copyright (c) Blotout, Inc. | Version 24-33 */window.edgetag = window.edgetag || function() {(edgetag.stubs = edgetag.stubs || []).push(arguments);};!function() {const url = new URL(window.location.href);const params = new URLSearchParams(url.search);const userId =params.get('et_u_id') ||params.get('tag_user_id') ||params.get('_glc[tag_user_id]') ||'';edgetag("init", {edgeURL: window.edgetagSharedVariables.tagUrl,disableConsentCheck: true,userId});}();let pageViewProviderObject = {};if ('index' === 'product') {pageViewProviderObject = {all: true,pinterest: false};}edgetag("tag", "PageView", {}, pageViewProviderObject, { destination: window.edgetagSharedVariables.tagUrl });</script><!-- BEGIN app snippet: page-capture --><script>!function() {const newsletterFormSelectors = ["#ContactFooter",".klaviyo-form","#wisepops-root","#contact_form","form[id*=\"newsletter\" i]","form[id*=\"subscribe\" i]","form.ml-block-form","#email_signup","form[id^=omnisend-form]"];const newsletterForm = newsletterFormSelectors.join(",");const sendNewsletterEvent = (beacon) => {const name = 'Lead';if (!name) {return;}if (beacon) {edgetag("tag", name, {}, {}, { method: "beacon", destination: window.edgetagSharedVariables.tagUrl });} else {edgetag("tag", name, {}, {}, { destination: window.edgetagSharedVariables.tagUrl });}};const getUser = (form, selectors) => {const user = {};if (!selectors) {return user;}Object.entries(selectors).forEach(([userKey, selector]) => {if (!selector || selector.length === 0) {return;}const selectorArray = Array.isArray(selector) ? selector : [selector];for (const selector of selectorArray) {if (!selector) {continue;}const inputUserValue = form.querySelector(selector);const userValue = (inputUserValue && inputUserValue.value) || "";if (userValue) {user[userKey] = userValue;break;}}});return user;};const sendUserData = (userData,isBeacon) => {if (!userData || !Object.keys(userData).length) {return;}if (isBeacon) {edgetag('data', userData, {}, { method: 'beacon', destination: window.edgetagSharedVariables.tagUrl });return;}edgetag("data", userData, {}, { destination: window.edgetagSharedVariables.tagUrl });};const actions = [{selectors: ["[type=\"submit\"]", newsletterForm],length: 2,fun: (ele) => {const user = getUser(ele, {email: ["input[type=\"email\"]", "input[name*=\"email\" i]:not([type=\"hidden\" i])"],phone: ["input[type=\"tel\"]", "input[name*=\"phone\" i]:not([type=\"hidden\" i])"],firstName: "input[name*=\"name\" i]:not([type=\"hidden\" i])",dateOfBirth: "input[name*=\"birthday\" i]:not([type=\"hidden\" i])"});sendUserData(user);sendNewsletterEvent(true);},current: 0},{selectors: ["button:not([role='combobox'])", newsletterForm],length: 2,fun: (ele) => {const user = getUser(ele, {email: ["input[type=\"email\"]", "input[name*=\"email\" i]:not([type=\"hidden\" i])"],phone: ["input[type=\"tel\"]", "input[name*=\"phone\" i]:not([type=\"hidden\" i])"],firstName: "input[name*=\"name\" i]:not([type=\"hidden\" i])",dateOfBirth: "input[name*=\"birthday\" i]:not([type=\"hidden\" i])"});sendUserData(user);sendNewsletterEvent(true);},current: 0},{selectors: ["[type=\"submit\"]", "form[action=\"/account/login\"]"],length: 2,fun: (ele) => {const user = getUser(ele, {email: ['input[type=\"email\"]', "#CustomerEmail"]});sendUserData(user);},current: 0},{selectors: ["[type=\"submit\"]", "form[action=\"/account\"]"],length: 2,fun: (ele) => {let user = getUser(ele, {email: [ 'input[type=\"email\"]', 'input[name=\"customer[email]\"]', '#RegisterForm-email' ],phone: "input[type=\"tel\"]",firstName: [ '#RegisterForm-FirstName', 'input[name=\"customer[first_name]\"]','input[name*=\"first\" i]:not([type=\"hidden\" i])' ],lastName: [ '#RegisterForm-LastName', 'input[name=\"customer[last_name]\"]','input[name*=\"last\" i]:not([type=\"hidden\" i])' ]});if (!user.firstName && !user.lastName) {user = {...user,...getUser(ele, { firstName: "input[name*=\"name\" i]:not([type=\"hidden\" i])" })};}sendUserData(user);edgetag("tag", "CompleteRegistration", {}, {}, { destination: window.edgetagSharedVariables.tagUrl });},current: 0},{selectors: ["[type=\"submit\"]", "form[action^=\"/contact\"]"],length: 2,fun: (ele) => {const user = getUser(ele, {email: ["input[type=\"email\"]", "input[name*=\"email\" i]:not([type=\"hidden\" i])"],phone: ["input[type=\"tel\"]", "input[name*=\"phone\" i]:not([type=\"hidden\" i])"],firstName: ["input[name*=\"first\" i]:not([type=\"hidden\" i])", "input[name*=\"name\" i]:not([type=\"hidden\" i])", "input[name*=\"nom\" i]:not([type=\"hidden\" i])"],lastName: "input[id*=\"last\" i]:not([type=\"hidden\" i])"});sendUserData(user);edgetag("tag", "Contact", {}, {}, { destination: window.edgetagSharedVariables.tagUrl });},current: 0}];const resetActions = () => {for (let i = 0; i < actions.length; i++) {actions[i].current = 0;}};const checkElement = (element) => {if (!element || element.nodeName === "BODY") {resetActions();return;}if (element.nodeName !== "DIV" && element.nodeName !== "INPUT" && element.nodeName !== "A" && element.nodeName !== "BUTTON" && element.nodeName !== "FORM") {checkElement(element.parentElement);return;}for (let i = 0; i < actions.length; ++i) {if (element.matches(actions[i].selectors[actions[i].current])) {++actions[i].current;if (actions[i].length === actions[i].current) {actions[i].fun(element);resetActions();return;}}}checkElement(element.parentElement);};document.addEventListener("click", (e) => {checkElement(e.target);});window.addEventListener("message",(event) => {if (event.origin !== "https://creatives.attn.tv") {return;}if (!event.data || !event.data.__attentive) {return;}try {const data = event.data.__attentive;if (!data.action || !data.action.includes("LEAD")) {return;}const user = {};if (data.email) {user.email = data.email;}if (data.phone) {user.phone = data.phone.replace(/[^0-9]/g, "");}sendUserData(user);sendNewsletterEvent();} catch (e) {console.log("[Edgetag]", e);}},false);window.addEventListener("message", (event) => {if (!event || !event.origin || !event.data || !event.origin.includes("postscript")) {return;}const user = {};if (event.data.values?.phone) {user.phone = event.data.values.phone;}if (event.data.CollectedEmailEvent?.email) {user.email = event.data.CollectedEmailEvent.email;}if (user.email || user.phone) {sendUserData(user);sendNewsletterEvent();}});window.juapp = window.juapp||function(){(window.juapp.q=window.juapp.q||[]).push(arguments)};juapp("trackFunc", "engagement", function(email, eventname, promotitle, cmid, options, form) {if (!email) {return;}const userData = { email };form.forEach((item) => {if (item.name === "phone_number" && item.value) {userData["phone"] = item.value;}});edgetag("data", userData);sendNewsletterEvent();});document.addEventListener('click', (e) => {if (!e.target.closest('form[action*="api.bounceexchange.com"] [type="submit"]')) {return;}const form = e.target.closest('form[action*="api.bounceexchange.com"]');if (!form) {return;}const user = getUser(form, {email: 'input[type="email"]',phone: 'input[type="tel"]',});sendUserData(user);if (user && Object.keys(user).length > 0) {sendNewsletterEvent();}}, { capture: true });document.addEventListener('submit', (e) => {if (!e.target.matches('form#customer_login')) {return;}if (e.target.getAttribute('action') === '/account/login' && e.target.querySelector('[type="submit"]')) {return;}const user = getUser(e.target, {email: ['input[type="email"]','#CustomerEmail'],});if (!user.email) {return;}sendUserData(user, true);});document.addEventListener('submit', (e) => {if (!e.target.matches('form#create_customer')) {return;}if (e.target.getAttribute('action') === '/account' && e.target.querySelector('[type="submit"]')) {return;}const user = getUser(e.target, {email: [ 'input[type=\"email\"]', 'input[name=\"customer[email]\"]', '#RegisterForm-email' ],phone: "input[type=\"tel\"]",firstName: [ '#RegisterForm-FirstName', 'input[name=\"customer[first_name]\"]','input[name*=\"first\" i]:not([type=\"hidden\" i])' ],lastName: [ '#RegisterForm-LastName', 'input[name=\"customer[last_name]\"]','input[name*=\"last\" i]:not([type=\"hidden\" i])' ]});sendUserData(user, true);edgetag("tag", "CompleteRegistration", {}, {}, { method: 'beacon', destination: window.edgetagSharedVariables.tagUrl });});window.addEventListener('message', (e) => {if (!e.origin.includes('emotivecdn')) {return;}if (e.data?.action === 'email_subscribe') {sendUserData({ email: e.data.data.email });sendNewsletterEvent();}});window.addEventListener('load', () => {let wisepopsCheckAttempts = 0;const captureWisepops = () => {wisepopsCheckAttempts++;if (typeof window.wisepops === 'function') {wisepops('listen', 'after-form-submit', function (event) {const eveEle = event.target.elements;const emailEle = eveEle['email'] || eveEle['email_address'];const email = emailEle && emailEle.value;const phone =(eveEle['phone-dialcode'] ? eveEle['phone-dialcode'].value : '') +(eveEle['phone-number'] ? eveEle['phone-number'].value : '');const firstName = eveEle['first_name'] && eveEle['first_name'].value;const lastName = eveEle['last_name'] && eveEle['last_name'].value;const data = {};if (email) {data.email = email;}if (phone) {data.phone = phone;}if (firstName) {data.firstName = firstName;}if (lastName) {data.lastName = lastName;}sendUserData(data);if (email || phone ) {sendNewsletterEvent();}});} else if (wisepopsCheckAttempts <= 10) {setTimeout(captureWisepops, 1000);}};captureWisepops();if (window.OptiMonk) {OptiMonk.addListener(document,'optimonk#campaign-before_mark_filled',function (event) {const campaign = event.parameters?.campaignId ?OptiMonk.campaigns[event.parameters.campaignId] :undefined;if (!campaign) {return;}const data = campaign.data;if (!data) {return;}const user = {};const email = data['visitor[email]'];if (email) {user.email = email;}const firstName = data['visitor[firstname]'];if (firstName) {user.firstName = firstName;}const [_, phone] = Object.entries(data).find(([key, value]) => key.includes('custom_fields') && value.startsWith('+')) ?? [];if (phone) {user.phone = phone;}sendUserData(user);if (phone || email) {sendNewsletterEvent();}});}});window.addEventListener('FORMTORO_FORM_LOADED', (t) => {const formToroIframe = document.querySelector(`[data-formtoro-form="${t.detail}"]`);if (!formToroIframe) {return;}const formToroRoot = formToroIframe.shadowRoot;const formToroForm =formToroRoot?.querySelector('ft-form-container');if (!formToroForm) {return;}formToroForm.addEventListener('submit',(e) => {const formData = new FormData(e.target);const email = formData.get('email');const user = {};if (email) {user.email = email;}const countryCodeEle = e.target.querySelector('div[class$="phone-number"] [class*="dropdown"]');const countryCode = countryCodeEle?.value;const phone = formData.get('phone-number')?.replace(/\D/g, '');if (phone) {user.phone = phone;if (countryCode) {user.phone = countryCode + phone;}}if (Object.keys(user).length == 0) {return;}sendUserData(user);sendNewsletterEvent();},{ capture: true });document.addEventListener('octane.quiz.completed',(e) => {if (!e || !e.detail) {return;}const email = e.detail.email;if (!email) {return;}sendUserData({ email });sendNewsletterEvent();},{ capture: true });}, { once: true });}();</script><!-- END app snippet --> <!-- END app block --><!-- BEGIN app block: shopify://apps/friendbuy-loyalty-referrals/blocks/friendbuy-auth-block/de138aa5-e87b-41e6-8e61-0dec9a2f9e38 --><script type="application/javascript"> window["friendbuyAPI"] = friendbuyAPI = window["friendbuyAPI"] || []; friendbuyAPI.merchantId = "edeba4b0-672d-48a4-bd79-48491169aad3"; friendbuyAPI.shopify = { page: "SPANX | Shapewear, Clothing, Activewear &amp; Intimates", } </script> <!-- END app block --><!-- BEGIN app block: shopify://apps/klaviyo-email-marketing-sms/blocks/klaviyo-onsite-embed/2632fe16-c075-4321-a88b-50b567f42507 --> <script async src="https://static.klaviyo.com/onsite/js/RN8rMY/klaviyo.js?company_id=RN8rMY"></script> <script>!function(){if(!window.klaviyo){window._klOnsite=window._klOnsite||[];try{window.klaviyo=new Proxy({},{get:function(n,i){return"push"===i?function(){var n;(n=window._klOnsite).push.apply(n,arguments)}:function(){for(var n=arguments.length,o=new Array(n),w=0;w<n;w++)o[w]=arguments[w];var t="function"==typeof o[o.length-1]?o.pop():void 0,e=new Promise((function(n){window._klOnsite.push([i].concat(o,[function(i){t&&t(i),n(i)}]))}));return e}}})}catch(n){window.klaviyo=window.klaviyo||[],window.klaviyo.push=function(){var n;(n=window._klOnsite).push.apply(n,arguments)}}}}();</script> <script> window.klaviyoReviewsProductDesignMode = false </script> <!-- END app block --><!-- BEGIN app block: shopify://apps/attentive/blocks/attn-tag/8df62c72-8fe4-407e-a5b3-72132be30a0d --><script type="text/javascript" src="https://cdn.attn.tv/spanx/dtag.js?source=app-embed" defer="defer"></script> <!-- END app block --><link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch"> <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 54948954134,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script> <script id="web-pixels-manager-setup">(function d(d,e,n,o,r,i){if(!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t,s=function(){var d={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[2-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[1-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},e=d.modern,n=d.legacy,o=navigator.userAgent;return e.test(o)?"modern":(n.test(o),"legacy")}(),l=null!=i?i:{modern:"",legacy:""};window.Shopify=window.Shopify||{};var u=window.Shopify;u.analytics=u.analytics||{};var c=u.analytics;c.replayQueue=[],c.publish=function(d,e,n){return c.replayQueue.push([d,e,n]),!0};try{self.performance.mark("wpm:start")}catch(d){}var f=[n,"/wpm","/b",r,s.substring(0,1),".js"].join(""),h=l[s];!function(d){var e=d.src,n=d.async,o=void 0===n||n,r=d.onload,i=d.onerror,a=d.sri,t=document.createElement("script"),s=document.head,l=document.body;t.async=o,t.src=e,a&&(t.integrity=a,t.crossOrigin="anonymous"),r&&t.addEventListener("load",r),i&&t.addEventListener("error",i),s?s.appendChild(t):l?l.appendChild(t):console.error("Did not find a head or body element to append the script")}({src:f,async:!0,onload:function(){if(!function(){var d,e;return Boolean(null===(e=null===(d=window.Shopify)||void 0===d?void 0:d.analytics)||void 0===e?void 0:e.initialized)}()){var n=window.webPixelsManager.init(d)||void 0;if(n){e(n);var o=window.Shopify.analytics;o.replayQueue.forEach((function(d){var e=d[0],o=d[1],r=d[2];n.publishCustomEvent(e,o,r)})),o.replayQueue=[],o.publish=n.publishCustomEvent,o.visitor=n.visitor,o.initialized=!0}}},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),n="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),r=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:o||"latest",bundle_target:s,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(f," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(n,r))return!0}catch(d){}var i=new XMLHttpRequest;try{return i.open("POST",n,!0),i.setRequestHeader("Content-Type","text/plain"),i.send(r),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1},sri:function(d){return"string"==typeof d&&/^sha384-[A-Za-z0-9+/=]+$/.test(d)}(h)?h:""})}})({shopId: 54948954134,storefrontBaseUrl: "https://spanx.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: ["6a396365"],webPixelsConfigList: [{"id":"249200851","configuration":"{\"tagID\":\"2620573200126\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"4fd0680eed907adaf3f85849c393d688","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"249135315","configuration":"{\"shortId\":\"03z\",\"price\":\"total\",\"duelApiUrl\":\"https:\\\/\\\/api.duel.me\",\"analyticsTTL\":\"30\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"6b77cdbe8c48085b948bb3babad88118","type":"APP","apiClientId":2310802,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"249102547","configuration":"{\"accountId\":\"Global-e\",\"merchantId\":\"1759\",\"baseApiUrl\":\"https:\/\/checkout-service.global-e.com\/api\/v1\",\"siteId\":\"7ce243a1e1a2\",\"BorderfreeMetaCAPIEnabled\":\"False\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"2377b89f0eef7a202d787c2349fcaf06","type":"APP","apiClientId":5806573,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"249004243","configuration":"{\"url\":\"https:\/\/lcdpq.spanx.com\",\"consent\":\"DISABLED\",\"skipVariantName\":\"0\"}","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"dfae914b89f8f7155e93d0cd2390400a","type":"APP","apiClientId":6861761,"privacyPurposes":[]},{"id":"248938707","configuration":"{\"env\":\"prod\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"81a87ab45a958a658e5ef3e3ec3f5ca4","type":"APP","apiClientId":3977633,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"524499","configuration":"{\"merchantId\":\"edeba4b0-672d-48a4-bd79-48491169aad3\",\"domainName\":\"fbot.me\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7087de933a5a9ba307b738b3f6c01712","type":"APP","apiClientId":2883169,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"94666963","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"4","type":"CUSTOM","privacyPurposes":[],"name":"checkout_gtm_pixel"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0290","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0290","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "",initData: {"shop":{"name":"Spanx","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"spanx-com.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/spanx.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://spanx.com/cdn","96d7db11b5d836789812e500283123b0e57df9f7","8fa806few5358ccf9p85054907m3e22f137",{"modern":"","legacy":""});</script> <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {}; window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {}; window.ShopifyAnalytics.meta.currency = 'USD'; var meta = {"page":{"pageType":"home"}}; for (var attr in meta) { window.ShopifyAnalytics.meta[attr] = meta[attr]; }</script> <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() { }; </script> <script class="analytics">(function () { var customDocumentWrite = function(content) { var jquery = null; if (window.jQuery) { jquery = window.jQuery; } else if (window.Checkout && window.Checkout.$) { jquery = window.Checkout.$; } if (jquery) { jquery('body').append(content); } }; var hasLoggedConversion = function(token) { if (token) { return document.cookie.indexOf('loggedConversion=' + token) !== -1; } return false; } var setCookieIfConversion = function(token) { if (token) { var twoMonthsFromNow = new Date(Date.now()); twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2); document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow; } } var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || []; if (trekkie.integrations) { return; } trekkie.methods = [ 'identify', 'page', 'ready', 'track', 'trackForm', 'trackLink' ]; trekkie.factory = function(method) { return function() { var args = Array.prototype.slice.call(arguments); args.unshift(method); trekkie.push(args); return trekkie; }; }; for (var i = 0; i < trekkie.methods.length; i++) { var key = trekkie.methods[i]; trekkie[key] = trekkie.factory(key); } trekkie.load = function(config) { trekkie.config = config || {}; trekkie.config.initialDocumentCookie = document.cookie; var first = document.getElementsByTagName('script')[0]; var script = document.createElement('script'); script.type = 'text/javascript'; script.onerror = function(e) { var scriptFallback = document.createElement('script'); scriptFallback.type = 'text/javascript'; scriptFallback.onerror = function(error) { var Monorail = { produce: function produce(monorailDomain, schemaId, payload) { var currentMs = new Date().getTime(); var event = { schema_id: schemaId, payload: payload, metadata: { event_created_at_ms: currentMs, event_sent_at_ms: currentMs } }; return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event)); }, sendRequest: function sendRequest(endpointUrl, payload) { // Try the sendBeacon API if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) { var blobData = new window.Blob([payload], { type: 'text/plain' }); if (window.navigator.sendBeacon(endpointUrl, blobData)) { return true; } // sendBeacon was not successful } // XHR beacon var xhr = new XMLHttpRequest(); try { xhr.open('POST', endpointUrl); xhr.setRequestHeader('Content-Type', 'text/plain'); xhr.send(payload); } catch (e) { console.log(e); } return false; }, isIos12: function isIos12() { return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1; } }; Monorail.produce('monorail-edge.shopifysvc.com', 'trekkie_storefront_load_errors/1.1', {shop_id: 54948954134, theme_id: 122229915859, app_name: "storefront", context_url: window.location.href, source_url: "//spanx.com/cdn/s/trekkie.storefront.e991c55e78bb7465ada1b8db33d441f155086734.min.js"}); }; scriptFallback.async = true; scriptFallback.src = '//spanx.com/cdn/s/trekkie.storefront.e991c55e78bb7465ada1b8db33d441f155086734.min.js'; first.parentNode.insertBefore(scriptFallback, first); }; script.async = true; script.src = '//spanx.com/cdn/s/trekkie.storefront.e991c55e78bb7465ada1b8db33d441f155086734.min.js'; first.parentNode.insertBefore(script, first); }; trekkie.load( {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":54948954134,"isMerchantRequest":null,"themeId":122229915859,"themeCityHash":"336946067578516617","contentLanguage":"en","currency":"USD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}} ); var loaded = false; trekkie.ready(function() { if (loaded) return; loaded = true; window.ShopifyAnalytics.lib = window.trekkie; var originalDocumentWrite = document.write; document.write = customDocumentWrite; try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {}; document.write = originalDocumentWrite; window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true}); var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/) var token = match? match[1]: undefined; if (!hasLoggedConversion(token)) { setCookieIfConversion(token); } }); var eventsListenerScript = document.createElement('script'); eventsListenerScript.async = true; eventsListenerScript.src = "//spanx.com/cdn/shopifycloud/shopify/assets/shop_events_listener-b0a6dc5b17cc591e95fd6a9d679ac43a2d4105c3d32ae2d9bd197f887468cfe4.js"; document.getElementsByTagName('head')[0].appendChild(eventsListenerScript); })();</script> <script defer src="https://spanx.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.3.0.min.js" data-application="storefront-renderer" data-shop-id="54948954134" data-render-region="gcp-asia-southeast1" data-page-type="index" data-theme-instance-id="122229915859" data-monorail-region="shop_domain" data-resource-timing-sampling-rate="10" ></script> </head> <body class="template-index layout--default"> <!-- Warning modal shown if the domain is not authorized --> <div id="warningModal" class="fraud_modal fraud_modal--hidden"> <div class="fraud_modal--content"> <h2>Unauthorized Website Detected</h2> <p class="fraud_modal--content--text"> You are viewing an unauthorized version of our website. To protect your information and ensure a safe shopping experience, please visit our official site: https://spanx.com. </br></br>If you have any questions, please reach out to our support team at contactus@spanx.com. </p> <div class="fraud_modal--cta-container"> <a href="https://spanx.com?utm_medium=unauthorized_domain&utm_source=spanx.com" class="button button--darkestblue"> Take Me to SPANX.COM </a> <a href="mailto:contactus@spanx.com" class="fraud_modal--cta--secondary"> Contact SPANX Support </a></div> </div> </div> <script> (function() { const currentDomain = window.location.hostname; const safelistDomainsFromAdmin = ["www.app.optimizely.com","www.app.contentsquare.com","www.optimizelyedit.com","www.player.vimeo.com","spanx.com."]; let isSafelistedDomain = false; if ( (currentDomain === "spanx.com" || currentDomain === "spanx.ca") || (currentDomain.endsWith(".spanx.com") || currentDomain.endsWith(".spanx.ca")) || currentDomain === "checkout.shopify.com" || (currentDomain.endsWith(".shopifypreview.com") || currentDomain.endsWith(".myshopify.com")) || currentDomain.endsWith(".googleadservices.com") || currentDomain === "localhost" || currentDomain.endsWith(".spiffy.ai") ) { isSafelistedDomain = true; } else if (safelistDomainsFromAdmin.includes(currentDomain)) { isSafelistedDomain = true; } if (!isSafelistedDomain) { const warningModal = document.getElementById("warningModal"); warningModal.classList.remove("fraud_modal--hidden"); document.body.classList.add("layout--no-scroll") } })(); </script> <div class="u-hidden"><!-- inject:svg --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs> <clipPath id="clip0_17054_334136"> <rect width="12" height="12" fill="white"/> </clipPath> <rect width="16" height="16" fill="none"/> <path id="a" d="M.226 0h1440v677H.226z"/><path id="c" d="M0 0h320.321v276.773H0z"/><path id="e" d="M0 0h498.604v504.96H0z"/> <clipPath id="clip0_800_19608"> <rect width="1000" height="1000" fill="white"/> </clipPath> <clipPath id="clip0_17054_334199"> <rect width="20" height="20" fill="white"/> </clipPath> <clipPath id="clip0_17054_334157"> <rect width="20" height="20" fill="white"/> </clipPath> <clipPath id="clip0_802_19618"> <rect fill="white"/> </clipPath> <clipPath id="clip0"> <rect width="27" height="19" fill="white"/> </clipPath> <path id="a" d="M0 0h28v25.887H0z"/> <clipPath id="clip0_17054_334104"> <rect width="32" height="32" fill="white"/> </clipPath> <clipPath id="clip0_17054_334097"> <rect width="32" height="32" fill="white"/> </clipPath> <clipPath id="clip0_17054_334115"> <rect width="12" height="12" fill="white"/> </clipPath> <clipPath id="clip0_17054_334114"> <rect width="16" height="16" fill="white"/> </clipPath> <clipPath id="clip0_17054_334113"> <rect width="20" height="20" fill="white"/> </clipPath> </defs><symbol id="account" viewBox="0 0 20 20"> <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 7.08337C14.5 9.56865 12.4853 11.5834 10 11.5834C7.51472 11.5834 5.5 9.56865 5.5 7.08337C5.5 4.59809 7.51472 2.58337 10 2.58337C12.4853 2.58337 14.5 4.59809 14.5 7.08337ZM15 7.08337C15 9.8448 12.7614 12.0834 10 12.0834C7.23858 12.0834 5 9.8448 5 7.08337C5 4.32195 7.23858 2.08337 10 2.08337C12.7614 2.08337 15 4.32195 15 7.08337ZM19.957 19.0834C19.9854 19.2508 20 19.4175 20 19.5828V19.5834H19.5H10H0.5H0V19.5828C3.39114e-05 19.4175 0.0145879 19.2508 0.0430281 19.0834C0.513943 16.3107 4.79205 13.3334 10 13.3334C15.208 13.3334 19.4861 16.3107 19.957 19.0834ZM0.555292 19.0834H0.55197C0.772485 17.9974 1.68963 16.7918 3.20522 15.7869C4.93236 14.6419 7.33614 13.8334 10 13.8334C12.6639 13.8334 15.0676 14.6419 16.7948 15.7869C18.3104 16.7918 19.2275 17.9974 19.448 19.0834H19.4447H19.4346H19.4244H19.4141H19.4037H19.3932H19.3826H19.372H19.3613H19.3505H19.3396H19.3286H19.3175H19.3064H19.2951H19.2838H19.2724H19.2609H19.2494H19.2377H19.226H19.2141H19.2022H19.1903H19.1782H19.166H19.1538H19.1415H19.1291H19.1166H19.1041H19.0914H19.0787H19.0659H19.053H19.0401H19.027H19.0139H19.0007H18.9874H18.974H18.9606H18.9471H18.9335H18.9198H18.906H18.8922H18.8782H18.8642H18.8502H18.836H18.8218H18.8074H18.7931H18.7786H18.764H18.7494H18.7347H18.7199H18.7051H18.6901H18.6751H18.66H18.6449H18.6296H18.6143H18.5989H18.5834H18.5679H18.5523H18.5366H18.5208H18.5049H18.489H18.473H18.457H18.4408H18.4246H18.4083H18.3919H18.3755H18.359H18.3424H18.3257H18.309H18.2922H18.2753H18.2583H18.2413H18.2242H18.207H18.1898H18.1724H18.1551H18.1376H18.1201H18.1024H18.0848H18.067H18.0492H18.0313H18.0134H17.9953H17.9772H17.959H17.9408H17.9225H17.9041H17.8857H17.8671H17.8485H17.8299H17.8112H17.7924H17.7735H17.7546H17.7356H17.7165H17.6973H17.6781H17.6589H17.6395H17.6201H17.6006H17.5811H17.5615H17.5418H17.522H17.5022H17.4824H17.4624H17.4424H17.4223H17.4022H17.382H17.3617H17.3414H17.321H17.3005H17.2799H17.2593H17.2387H17.218H17.1972H17.1763H17.1554H17.1344H17.1134H17.0922H17.0711H17.0498H17.0285H17.0072H16.9857H16.9642H16.9427H16.9211H16.8994H16.8777H16.8559H16.834H16.8121H16.7901H16.768H16.7459H16.7238H16.7015H16.6793H16.6569H16.6345H16.612H16.5895H16.5669H16.5443H16.5215H16.4988H16.476H16.4531H16.4301H16.4071H16.3841H16.3609H16.3377H16.3145H16.2912H16.2679H16.2444H16.221H16.1975H16.1739H16.1502H16.1265H16.1028H16.079H16.0551H16.0312H16.0072H15.9832H15.9591H15.9349H15.9107H15.8865H15.8621H15.8378H15.8134H15.7889H15.7643H15.7398H15.7151H15.6904H15.6657H15.6409H15.616H15.5911H15.5661H15.5411H15.516H15.4909H15.4657H15.4405H15.4152H15.3899H15.3645H15.3391H15.3136H15.288H15.2625H15.2368H15.2111H15.1854H15.1596H15.1337H15.1078H15.0819H15.0559H15.0298H15.0037H14.9776H14.9514H14.9251H14.8988H14.8725H14.8461H14.8196H14.7931H14.7666H14.74H14.7134H14.6867H14.6599H14.6332H14.6063H14.5794H14.5525H14.5255H14.4985H14.4715H14.4443H14.4172H14.39H14.3627H14.3354H14.3081H14.2807H14.2532H14.2258H14.1982H14.1706H14.143H14.1154H14.0877H14.0599H14.0321H14.0043H13.9764H13.9484H13.9205H13.8925H13.8644H13.8363H13.8081H13.7799H13.7517H13.7234H13.6951H13.6667H13.6383H13.6099H13.5814H13.5529H13.5243H13.4957H13.467H13.4383H13.4096H13.3808H13.352H13.3231H13.2942H13.2653H13.2363H13.2073H13.1782H13.1491H13.12H13.0908H13.0616H13.0323H13.003H12.9737H12.9443H12.9149H12.8855H12.856H12.8264H12.7969H12.7673H12.7376H12.7079H12.6782H12.6485H12.6187H12.5889H12.559H12.5291H12.4992H12.4692H12.4392H12.4091H12.379H12.3489H12.3188H12.2886H12.2584H12.2281H12.1978H12.1675H12.1371H12.1067H12.0763H12.0458H12.0153H11.9848H11.9543H11.9237H11.893H11.8624H11.8317H11.8009H11.7702H11.7394H11.7085H11.6777H11.6468H11.6159H11.5849H11.5539H11.5229H11.4919H11.4608H11.4297H11.3985H11.3673H11.3361H11.3049H11.2736H11.2423H11.211H11.1797H11.1483H11.1169H11.0854H11.0539H11.0224H10.9909H10.9594H10.9278H10.8961H10.8645H10.8328H10.8011H10.7694H10.7376H10.7059H10.6741H10.6422H10.6104H10.5785H10.5465H10.5146H10.4826H10.4506H10.4186H10.3866H10.3545H10.3224H10.2903H10.2581H10.2259H10.1937H10.1615H10.1292H10.097H10.0647H10.0323H10H9.96765H9.93533H9.90303H9.87075H9.8385H9.80627H9.77407H9.7419H9.70974H9.67762H9.64552H9.61344H9.58139H9.54937H9.51737H9.4854H9.45346H9.42154H9.38965H9.35778H9.32594H9.29413H9.26235H9.2306H9.19887H9.16717H9.1355H9.10385H9.07224H9.04065H9.00909H8.97756H8.94606H8.91458H8.88314H8.85173H8.82034H8.78899H8.75766H8.72637H8.6951H8.66387H8.63266H8.60149H8.57034H8.53923H8.50815H8.4771H8.44608H8.41509H8.38414H8.35321H8.32232H8.29146H8.26063H8.22983H8.19907H8.16834H8.13764H8.10698H8.07635H8.04575H8.01518H7.98465H7.95415H7.92369H7.89326H7.86286H7.8325H7.80218H7.77189H7.74163H7.71141H7.68122H7.65107H7.62095H7.59087H7.56083H7.53082H7.50084H7.47091H7.44101H7.41114H7.38132H7.35153H7.32177H7.29206H7.26238H7.23274H7.20313H7.17357H7.14404H7.11455H7.08509H7.05568H7.02631H6.99697H6.96767H6.93841H6.90919H6.88001H6.85087H6.82177H6.79271H6.76369H6.73471H6.70576H6.67686H6.648H6.61918H6.5904H6.56166H6.53297H6.50431H6.4757H6.44712H6.41859H6.3901H6.36166H6.33325H6.30489H6.27657H6.24829H6.22006H6.19186H6.16372H6.13561H6.10755H6.07953H6.05156H6.02362H5.99574H5.9679H5.9401H5.91234H5.88463H5.85697H5.82935H5.80178H5.77425H5.74676H5.71933H5.69193H5.66459H5.63729H5.61003H5.58282H5.55566H5.52855H5.50148H5.47446H5.44748H5.42056H5.39368H5.36685H5.34006H5.31333H5.28664H5.26H5.23341H5.20686H5.18037H5.15392H5.12753H5.10118H5.07488H5.04863H5.02243H4.99628H4.97018H4.94413H4.91813H4.89218H4.86628H4.84043H4.81464H4.78889H4.76319H4.73755H4.71196H4.68641H4.66092H4.63549H4.6101H4.58477H4.55949H4.53426H4.50908H4.48396H4.45889H4.43387H4.4089H4.38399H4.35914H4.33433H4.30958H4.28489H4.26025H4.23566H4.21112H4.18665H4.16222H4.13785H4.11354H4.08928H4.06508H4.04093H4.01684H3.9928H3.96882H3.9449H3.92103H3.89722H3.87347H3.84977H3.82613H3.80255H3.77902H3.75555H3.73214H3.70879H3.68549H3.66225H3.63907H3.61595H3.59289H3.56988H3.54694H3.52405H3.50122H3.47845H3.45574H3.43309H3.4105H3.38797H3.3655H3.34309H3.32074H3.29845H3.27623H3.25406H3.23195H3.2099H3.18792H3.166H3.14413H3.12233H3.1006H3.07892H3.0573H3.03575H3.01426H2.99284H2.97147H2.95017H2.92893H2.90776H2.88665H2.8656H2.84461H2.82369H2.80283H2.78204H2.76131H2.74065H2.72005H2.69952H2.67905H2.65864H2.6383H2.61803H2.59782H2.57768H2.5576H2.53759H2.51764H2.49776H2.47795H2.4582H2.43853H2.41891H2.39937H2.37989H2.36048H2.34114H2.32186H2.30265H2.28351H2.26444H2.24544H2.2265H2.20764H2.18884H2.17011H2.15145H2.13286H2.11434H2.09589H2.07751H2.05919H2.04095H2.02278H2.00468H1.98665H1.96868H1.95079H1.93298H1.91523H1.89755H1.87994H1.86241H1.84495H1.82756H1.81024H1.79299H1.77582H1.75871H1.74168H1.72473H1.70784H1.69103H1.67429H1.65763H1.64104H1.62452H1.60808H1.59171H1.57541H1.55919H1.54304H1.52697H1.51097H1.49505H1.4792H1.46343H1.44773H1.43211H1.41657H1.4011H1.3857H1.37038H1.35514H1.33997H1.32489H1.30987H1.29494H1.28008H1.2653H1.25059H1.23597H1.22142H1.20695H1.19255H1.17824H1.164H1.14984H1.13576H1.12176H1.10784H1.09399H1.08023H1.06654H1.05294H1.03941H1.02597H1.0126H0.999314H0.986109H0.972983H0.959938H0.946974H0.93409H0.921287H0.908566H0.895926H0.883367H0.87089H0.858495H0.846182H0.833951H0.821802H0.809735H0.797751H0.78585H0.774031H0.762295H0.750643H0.739074H0.727588H0.716186H0.704868H0.693633H0.682483H0.671417H0.660435H0.649538H0.638725H0.627998H0.617355H0.606797H0.596325H0.585938H0.575637H0.565421H0.555292Z"/> </symbol><symbol id="arrow-left-cross-sell" viewBox="0 0 15 25"> <path d="M10.75 18.25L4.75 12.75" stroke="#333333" stroke-width="2" stroke-linecap="square"/> <path d="M10 6.5L4.5 12.5" stroke="#333333" stroke-width="2" stroke-linecap="square"/> </symbol><symbol id="arrow-left-transparent" viewBox="0 0 16 27"> <path d="M14 25L2 14" stroke-width="2" stroke-linecap="square"/> <path d="M12.5 1.5L1.5 13.5" stroke-width="2" stroke-linecap="square"/> </symbol><symbol id="arrow-left-yotpo" viewBox="0 0 40 40"> <path fill-rule="evenodd" clip-rule="evenodd" d="M24.2929 30L13.5858 19.2929L24.2929 8.58578L25 9.29289L15 19.2929L25 29.2929L24.2929 30Z" fill="#031031"/> </symbol><symbol id="arrow-left" viewBox="0 0 16 27"> <path d="M14 25L2 14" stroke-width="2" stroke-linecap="square"/> <path d="M12.5 1.5L1.5 13.5" stroke-width="2" stroke-linecap="square"/> </symbol><symbol id="arrow-right-cross-sell" viewBox="0 0 15 25"> <path d="M4.25 6.75L10.25 12.25" stroke="#333333" stroke-width="2" stroke-linecap="square"/> <path d="M5 18.5L10.5 12.5" stroke="#333333" stroke-width="2" stroke-linecap="square"/> </symbol><symbol id="arrow-right-long"><path d="M29 6H1m22 5 6-5-6-5" stroke="#000" fill="none" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol id="arrow-right-transparent" viewBox="0 0 16 27"> <path d="M1.5 1.5L13.5 12.5" stroke-width="2" stroke-linecap="square"/> <path d="M3 25L14 13" stroke-width="2" stroke-linecap="square"/> </symbol><symbol id="arrow-right-yotpo" viewBox="0 0 40 40"> <path fill-rule="evenodd" clip-rule="evenodd" d="M14.7071 9L25.4142 19.7071L14.7071 30.4142L14 29.7071L24 19.7071L14 9.70711L14.7071 9Z" fill="#031031"/> </symbol><symbol id="arrow-right" viewBox="0 0 16 27"> <path d="M1.5 1.5L13.5 12.5" stroke-width="2" stroke-linecap="square"/> <path d="M3 25L14 13" stroke-width="2" stroke-linecap="square"/> </symbol><symbol id="caret-left-squared-corners" viewBox="0 0 12 22"> <path d="M10.9999 21.707L0.292818 10.9999L10.9999 0.292816L11.707 0.999924L1.70703 10.9999L11.707 20.9999L10.9999 21.707Z"/> </symbol><symbol id="caret-left" viewBox="0 0 16 16"> <path fill-rule="evenodd" clip-rule="evenodd" d="M4.36853 7.93759L12.4758 15.4836L12.1352 15.8496L3.63136 7.93452L12.1367 0.148872L12.4743 0.517684L4.36853 7.93759Z"/> </symbol><symbol id="caret-right-squared-corners" viewBox="0 0 12 22"> <path d="M0.999953 0.292969L11.7071 11.0001L0.999953 21.7072L0.292847 21.0001L10.2928 11.0001L0.292847 1.00008L0.999953 0.292969Z"/> </symbol><symbol id="caret-right" viewBox="0 0 16 16"> <path fill-rule="evenodd" clip-rule="evenodd" d="M11.937 8.06229L3.82971 0.516264L4.17037 0.150269L12.6742 8.06535L4.16884 15.851L3.83124 15.4822L11.937 8.06229Z"/> </symbol><symbol id="cart" viewBox="0 0 20 20"> <style type="text/css"> .st0{fill-rule:evenodd;clip-rule:evenodd;} </style> <path class="st0" d="M18.3,5.2h-4c-0.8-2.1-1.7-3.4-2.5-4.1c-0.4-0.4-0.9-0.6-1.3-0.6c-0.5-0.1-0.9,0-1.3,0.2 C8.4,1.1,7.6,1.8,7.1,2.7C6.5,3.5,6,4.4,5.7,5.2h-4H1.2v0.5V19v0.5h0.5h16.6h0.5V19V5.7V5.2H18.3z M7.5,2.9C8,2.1,8.7,1.5,9.4,1.2 C9.7,1,10,1,10.4,1c0.3,0.1,0.7,0.2,1.1,0.5c0.7,0.6,1.5,1.8,2.3,3.7H6.2C6.5,4.5,7,3.6,7.5,2.9z M18.3,19H1.7V5.7h16.6V19z"/> </symbol><symbol id="check-circle" viewBox="0 0 12 12"> <g clip-path="url(#clip0_17054_334136)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75C8.8995 0.75 11.25 3.10051 11.25 6ZM11.75 6C11.75 9.17564 9.17564 11.75 6 11.75C2.82436 11.75 0.25 9.17564 0.25 6C0.25 2.82436 2.82436 0.25 6 0.25C9.17564 0.25 11.75 2.82436 11.75 6ZM5.75248 9.36449L8.97224 3.11449L8.52776 2.88551L5.48265 8.79648L3.69364 6.60576L3.30636 6.92202L5.33661 9.40813L5.57783 9.70352L5.75248 9.36449Z" fill="#031031"/> </g> </symbol><symbol id="check-mark" viewBox="0 0 12 12"> <circle cx="6" cy="6.00006" r="6" fill="#d8d8d8"/> <path d="M9.4595 3.10049C9.74268 2.80123 10.1932 3.23765 9.91002 3.53691C8.33964 5.25767 6.75639 6.95349 5.17315 8.66177C5.09592 8.74906 5.01869 8.82387 4.94145 8.91116C4.82561 9.03585 4.60678 9.02338 4.49094 8.91116C3.69288 8.17547 2.89482 7.42732 2.09676 6.69163C1.80071 6.41731 2.25122 5.96841 2.54728 6.25521C3.2681 6.91608 3.97606 7.57695 4.69689 8.25029C6.29301 6.52953 7.87625 4.82124 9.4595 3.10049Z" fill="#000" stroke="#000" stroke-width="0.5" stroke-miterlimit="10"/> </symbol><symbol id="check-white" viewBox="0 0 31.835 27.191"><path d="m9.484 19.897-5.911-6.161-3.251 3.387 7.8 8.13.01-.009 1.424 1.484L31.575 3.776 28.262.323z" fill="#fff"/></symbol><symbol id="check" viewBox="0 0 22 18"> <path d="M19.6487 1.2678C20.3567 0.469773 21.483 1.63357 20.775 2.4316C16.8491 7.02028 12.891 11.5425 8.93287 16.0979C8.73979 16.3307 8.54671 16.5302 8.35363 16.7629C8.06402 17.0954 7.51696 17.0622 7.22734 16.7629C5.23219 14.8011 3.23705 12.806 1.2419 10.8442C0.501763 10.1127 1.62806 8.91561 2.36819 9.68039C4.17026 11.4427 5.94015 13.205 7.74222 15.0006C11.7325 10.4119 15.6906 5.85649 19.6487 1.2678Z" stroke-width="0.5" stroke-miterlimit="10"/> </symbol><symbol id="chevron-down" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.95372 8.86056L11.5671 2.82965L11.9331 3.17031L5.95066 9.59773L0.0657015 3.16878L0.434514 2.83118L5.95372 8.86056Z"/></symbol><symbol id="chevron-left" viewBox="0 0 534 534"><path d="M212.833 266.5 428.17 479.837l-53.833 53.333L105.17 266.503 374.337-.17l53.833 53.333L212.833 266.5z"/></symbol><symbol id="chevron-right" viewBox="0 0 16 16"> <path fill-rule="evenodd" clip-rule="evenodd" d="M11.937 8.06235L3.82971 0.516325L4.17037 0.15033L12.6742 8.06541L4.16884 15.8511L3.83124 15.4823L11.937 8.06235Z" fill="#031031"/> </symbol><symbol id="chevron-select" viewBox="0 0 12 12"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.95372 8.86056L11.5671 2.82965L11.9331 3.17031L5.95066 9.59773L0.0657015 3.16878L0.434514 2.83118L5.95372 8.86056Z"/></symbol><symbol id="chevron-up" viewBox="6.4 8 11.6 6.85"><g fill="none" fill-rule="evenodd"><path d="M0 0h24v24H0z"/><path d="m6.792 14.164 1.757-1.95a2808.1 2808.1 0 0 1 2.8-3.113l.645-.717a.294.294 0 0 1 .428 0l1.756 1.95c.934 1.04 1.866 2.075 2.8 3.113l.646.717c.267.297-.16.745-.428.445l-1.756-1.95a2808.1 2808.1 0 0 0-2.8-3.113l-.646-.717h.428l-1.756 1.951-2.8 3.113c-.215.24-.43.476-.646.716-.264.297-.695-.148-.428-.445z" fill="#333133" stroke="#333133" stroke-width=".25"/></g></symbol><symbol id="circle-arrow-left" viewBox="0 0 48 48"> <path fill-rule="evenodd" clip-rule="evenodd" d="M46 24C46 36.1503 36.1503 46 24 46C11.8497 46 2 36.1503 2 24C2 11.8497 11.8497 2 24 2C36.1503 2 46 11.8497 46 24ZM47 24C47 36.7025 36.7025 47 24 47C11.2975 47 1 36.7025 1 24C1 11.2975 11.2975 1 24 1C36.7025 1 47 11.2975 47 24ZM28.355 33.6479L18.7071 23.9196L28.3521 14.355L27.6479 13.645L17.6479 23.5616L17.2929 23.9137L17.645 24.2687L27.645 34.3521L28.355 33.6479Z"/> </symbol><symbol id="circle-arrow-right" viewBox="0 0 48 48"> <path fill-rule="evenodd" clip-rule="evenodd" d="M46 24C46 36.1503 36.1503 46 24 46C11.8497 46 2 36.1503 2 24C2 11.8497 11.8497 2 24 2C36.1503 2 46 11.8497 46 24ZM47 24C47 36.7025 36.7025 47 24 47C11.2975 47 1 36.7025 1 24C1 11.2975 11.2975 1 24 1C36.7025 1 47 11.2975 47 24ZM19.645 14.3521L29.2929 24.0804L19.6479 33.645L20.3521 34.355L30.3521 24.4384L30.7071 24.0863L30.355 23.7313L20.355 13.6479L19.645 14.3521Z"/> </symbol><symbol id="clock-white" viewBox="0 0 12 12"> <path fill-rule="evenodd" clip-rule="evenodd" d="M6 11C8.76142 11 11 8.76142 11 6C11 3.23858 8.76142 1 6 1C3.23858 1 1 3.23858 1 6C1 8.76142 3.23858 11 6 11ZM6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z" stroke="#FFFF" fill="#FFFF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M6.17131 2.5C6.44745 2.5 6.67131 2.72386 6.67131 3V6.07778C6.67131 6.26257 6.56939 6.43229 6.40628 6.51913L3.73495 7.94135C3.4912 8.07112 3.1884 7.97872 3.05863 7.73497C2.92886 7.49122 3.02125 7.18843 3.265 7.05865L5.67131 5.77754V3C5.67131 2.72386 5.89517 2.5 6.17131 2.5Z" stroke="#FFFF" fill="#FFFF"/> </symbol><symbol id="clock" viewBox="0 0 12 12"> <path fill-rule="evenodd" clip-rule="evenodd" d="M6 11C8.76142 11 11 8.76142 11 6C11 3.23858 8.76142 1 6 1C3.23858 1 1 3.23858 1 6C1 8.76142 3.23858 11 6 11ZM6 12C9.31371 12 12 9.31371 12 6C12 2.68629 9.31371 0 6 0C2.68629 0 0 2.68629 0 6C0 9.31371 2.68629 12 6 12Z" fill="#02081C"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M6.17131 2.5C6.44745 2.5 6.67131 2.72386 6.67131 3V6.07778C6.67131 6.26257 6.56939 6.43229 6.40628 6.51913L3.73495 7.94135C3.4912 8.07112 3.1884 7.97872 3.05863 7.73497C2.92886 7.49122 3.02125 7.18843 3.265 7.05865L5.67131 5.77754V3C5.67131 2.72386 5.89517 2.5 6.17131 2.5Z" fill="#02081C"/> </symbol><symbol id="close" viewBox="0 0 16 16"> <g clip-path="url(#clip0_14803_231688)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00547 8.11788L15.4328 15.654L15.7838 15.2978L8.35641 7.76173L15.4312 0.581854L15.0803 0.225704L8.00544 7.40562L0.918221 0.21463L0.567246 0.570744L7.6545 7.76177L0.216309 15.3104L0.567246 15.6666L8.00547 8.11788Z"/> </g> </symbol><symbol id="download" viewBox="0 0 24 22"><path d="M.971 21.2h22a.573.573 0 0 0 .572-.571v-5.6a.573.573 0 0 0-1.143 0v5.028H1.543V15.03a.573.573 0 0 0-1.143 0v5.6c.057.342.286.571.571.571z"/><path d="M12 .514c-.457 0-.857.286-.857.686v13.943l-4-3.486c-.286-.286-.8-.286-1.143-.057-.343.229-.343.629-.057.914l5.371 4.743c.343.286.857.286 1.143 0l5.372-4.743c.285-.285.285-.685-.058-.914-.342-.229-.857-.229-1.142.057l-4 3.486V1.2c.228-.4-.172-.686-.629-.686z"/></symbol><symbol id="facebook--thunder" viewBox="0 0 11 23"><path d="M2.285 4.454v3.167H0v3.872h2.285V23h4.693V11.494h3.15s.294-1.857.437-3.887h-3.57V4.959c0-.396.512-.928 1.018-.928h2.557V0H7.093C2.17 0 2.285 3.876 2.285 4.454z" fill="#1F1D1A" fill-rule="evenodd"/></symbol><symbol id="facebook" viewBox="0 0 1000 1000"> <path d="M999.98 499.99C999.98 223.856 776.124 0 499.99 0C223.856 0 0 223.856 0 499.99C0 734.465 161.437 931.221 379.212 985.26V652.787H276.114V499.99H379.212V434.151C379.212 263.975 456.231 185.096 623.308 185.096C654.987 185.096 709.646 191.316 732.005 197.516V336.013C720.206 334.773 699.706 334.153 674.247 334.153C592.268 334.153 560.589 365.213 560.589 445.951V499.99H723.905L695.846 652.787H560.589V996.32C808.164 966.421 1000 755.625 1000 499.99H999.98Z" fill="#02081C"/> </symbol><symbol id="featured-collections-bkg"><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><use fill="#FFF" xlink:href="#a"/><g mask="url(#b)"><g transform="translate(1183)"><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><path d="M319.194 2.9c-7.922-5.38-18.297-2.628-25.272 2.993-8.21 6.618-11.245 17.528-13.625 27.342-2.275 9.382-4.336 19.83-11.22 27.085-5.953 6.278-14.691 7.874-22.5 10.733-3.876 1.42-7.644 3.136-10.816 5.826-3.66 3.101-5.698 7.364-6.733 11.984-1.126 5.027-1.716 9.95-4.448 14.433-2.382 3.91-5.755 7.196-9.401 9.931-7.854 5.892-17.004 9.586-25.417 14.551-4.223 2.492-8.323 5.321-11.833 8.766-3.741 3.671-6.444 7.956-8.464 12.773-2.077 4.955-3.823 9.946-7.525 13.971-3.358 3.652-7.521 6.388-11.898 8.668-10.101 5.262-21.306 8.794-32.372 11.353-5.602 1.296-11.62 2.644-17.314 1.123-5.141-1.373-9.474-4.75-13.696-7.845-8.935-6.552-18.706-12.062-29.411-15.123-10.128-2.895-20.97-3.45-31.162-.56-9.471 2.684-18.178 8.115-24.136 16.017-1.55 2.053-2.41 4.314-1.698 6.893a7.19 7.19 0 0 0 1.799 3.084c.796.8 1.78 1.328 2.493 2.23a7.268 7.268 0 0 1 1.39 2.895c.265 1.17.147 2.378.562 3.527.954 2.643 2.959 3.875 5.472 4.815a171.643 171.643 0 0 0 34.817 8.984c6.063.902 12.167 1.516 18.29 1.784 1.728.076 5.69-.346 6.42 1.936.21.655-.162 1.434-.415 2.027-.541 1.273-1.236 2.505-1.956 3.685-2.757 4.52-6.676 7.643-10.475 11.214-3.195 3.002-6.691 6.87-6.665 11.54.014 2.563 1.158 4.764 2.765 6.69 1.447 1.734 3.095 3.13 3.639 5.413.952 4.001-1.266 8.317-4.222 10.904-3.916 3.428-9.315 4.73-14.276 5.78-5.252 1.112-11.037 2.4-16.285.6-3.658-1.254-7.376-5.123-6.515-9.263.653-3.14-4.166-4.483-4.821-1.329-1.061 5.097 1.36 9.892 5.402 12.967 4.42 3.363 10.149 3.875 15.509 3.241 5.428-.643 11.094-1.712 16.214-3.662 4.737-1.804 9.168-4.59 11.796-9.05 2.429-4.12 3.24-9.268 1.232-13.715-1.622-3.595-6.884-6.2-4.983-10.679 1.802-4.245 6.255-7.137 9.523-10.169 3.826-3.55 7.157-8.095 9.013-12.999.93-2.457.68-5.037-1.105-7.04-1.926-2.16-4.64-2.906-7.433-3.004-5.974-.208-11.94-.656-17.862-1.482a171.313 171.313 0 0 1-35.17-8.784c-.96-.352-2.285-.59-2.913-1.48-.602-.854-.438-2.117-.604-3.099-.42-2.464-1.734-4.855-3.55-6.572-1.316-1.246-3.208-2.184-1.9-4.218 1.269-1.973 2.98-3.742 4.686-5.337 7-6.553 16.565-10.379 26.075-11.135 10.873-.865 21.782 1.986 31.519 6.704 4.995 2.42 9.754 5.312 14.272 8.53 4.467 3.181 8.742 6.672 13.849 8.796 5.612 2.335 11.517 2.21 17.415 1.183 5.88-1.024 11.705-2.58 17.402-4.353 10.286-3.2 21.193-7.067 29.834-13.679 4.163-3.186 7.715-7.076 10.06-11.797 2.456-4.943 3.868-10.337 7.045-14.913 5.576-8.032 14.793-12.775 23.254-17.147 8.613-4.45 17.543-9.035 24.108-16.369 3.214-3.59 5.75-7.76 7.094-12.408 1.468-5.075 1.427-10.75 4.472-15.255 4.429-6.55 13.63-8.216 20.596-10.615 3.965-1.365 7.985-2.937 11.409-5.406 4.113-2.965 7.298-6.947 9.633-11.429 4.873-9.352 6.11-19.87 9.228-29.82 2.862-9.13 8.05-18.065 17.928-20.62 3.939-1.02 7.952-.607 11.352 1.702 2.669 1.813 5.173-2.517 2.524-4.317" fill="#476F54" mask="url(#d)"/></g></g><g mask="url(#b)" fill="#CA5F43"><path d="M464.417 537.963c3.751 5.391 9.927 7.111 16.235 5.919 7.258-1.37 12.75-6.089 16.645-12.172 4.541-7.092 6.733-15.959 12.263-22.389 5.987-6.961 14.45-.244 19.544 4.365 13.414 12.135 20.584 28.994 25.788 45.94 2.196 7.154 5.772 13.97 13.843 15.223 6.403.993 13.114-1.606 18.334-5.171 6.526-4.459 12.372-11.094 20.344-12.911 6.908-1.574 13.912 1.23 20.865.887 8.384-.414 13.965-5.561 19.213-11.608 5.053-5.825 10.112-10.848 18.026-12.048 13.872-2.102 27.59 6.101 38.443 13.712 13.991 9.812 26.768 21.266 41.016 30.725 6.915 4.59 14.181 8.656 21.891 11.757 7.45 2.996 15.296 4.687 22.978 6.958 7.45 2.203 15.085 5.062 20.576 10.791 6.097 6.362 8.599 15.243 14.284 21.952 5.75 6.785 13.652 11.342 21.656 14.963 7.159 3.24 14.55 6.017 21.978 8.571 14.277 4.907 28.947 8.71 43.9 10.857 14.488 2.08 29.257 2.474 43.77.394 7.257-1.04 14.424-2.73 21.35-5.142 6.375-2.22 13.198-4.764 18.638-8.847 4.164-3.126 8.475-8.362 7.05-13.947-1.971-7.732-11.955-8.667-18.424-10.118-16.09-3.61-32.745-5.765-48.08-12.11a71.002 71.002 0 0 1-5.293-2.446c-1.595-.818-3.644-1.653-4.998-2.85-1.593-1.412-1.326-4.22.727-5.088 1.4-.59 3.282.177 4.653.529a85.532 85.532 0 0 1 6.22 1.872c4.18 1.42 8.27 3.085 12.363 4.73 14.315 5.75 28.818 9.562 44.335 9.724a112.875 112.875 0 0 0 43.545-8.26c7.267-2.95 13.997-6.798 20.552-11.082 7.038-4.602 14.26-9.64 22.593-11.514 6.914-1.554 14.276-.908 19.94 3.651 2.496 2.011 5.1-2.263 2.62-4.26-12.778-10.288-29.988-3.465-42.075 4.188-6.91 4.374-13.592 8.972-21.026 12.44-6.73 3.141-13.788 5.522-21.029 7.166-14.577 3.311-29.91 3.621-44.577.654-7.69-1.555-15.018-4.124-22.288-7.034-3.973-1.59-7.931-3.221-11.965-4.654-3.765-1.338-7.816-2.835-11.81-3.276-5.793-.64-10.37 5.198-8.343 10.697 1.192 3.236 4.399 4.764 7.27 6.277 3.46 1.823 7.066 3.377 10.737 4.722 15.49 5.679 31.995 7.695 47.973 11.52 3.403.815 8.828 1.27 10.93 4.42 1.424 2.131.43 4.528-.918 6.411-3.687 5.145-10.465 7.688-16.103 9.975-13.572 5.503-28.29 7.902-42.89 8.036-30.017.273-60.336-8.1-87.7-20.024-8.236-3.589-16.433-8.13-22.172-15.215-5.505-6.796-7.962-15.57-14.255-21.82-11.331-11.25-28.312-12.347-42.605-17.583-15.893-5.822-29.575-16.227-42.78-26.555-12.377-9.682-24.723-20.371-39.276-26.66-12.127-5.241-26.825-7.053-37.733 1.846-6.353 5.183-10.602 14.338-18.819 16.916-6.675 2.094-13.835-.686-20.617-.655-8.008.036-14.42 4.175-20.519 8.955-5.498 4.31-11.169 9.112-18.444 9.748-3.106.273-6.241-.43-8.539-2.637-3.117-2.994-4.073-7.658-5.298-11.631-2.578-8.364-5.763-16.591-9.952-24.286-4.126-7.58-9.257-14.73-15.596-20.618-5.022-4.663-11.676-10.253-19.025-9.581-8.462.774-12.446 10.256-15.624 16.925-3.317 6.96-6.672 15.206-13.877 18.97-4.812 2.514-12.42 3.644-16.005-1.51-1.816-2.61-6.266-.32-4.433 2.316"/></g><g mask="url(#b)"><g transform="rotate(150 75.61 281.468)"><mask id="f" fill="#fff"><use xlink:href="#e"/></mask><path d="M88.392 502.555c-.439-6.797-5.36-11.528-11.5-13.817-7.349-2.739-14.927-.964-22.052 1.591-7.286 2.614-14.763 6.161-22.703 4.816-3.158-.535-6.402-1.773-8.557-4.239-2.317-2.65-2.309-6.535-4.709-9.116-2.78-2.99-6.804-1.637-9.922-3.719-2.953-1.972-4.309-5.842-3.905-9.273.478-4.062 2.945-7.64 5.773-10.464 2.496-2.492 5.616-4.565 6.908-8 2.211-5.875-2.362-10.65-5.92-14.729-1.383-1.584-3.457-3.714-3.318-6.002.16-2.605 2.998-3.578 5.098-4.22 5.467-1.67 11.602-2.818 13.374-9.123.776-2.76-.148-7.195 1.728-9.505 1.073-1.32 3.407-1.37 4.9-1.988 1.667-.69 3.048-1.807 3.997-3.357 1.981-3.232 1.94-7.357 2.305-11.006a267.772 267.772 0 0 1 1.795-14.286c1.418-9.163 3.345-18.255 5.976-27.148 9.416-31.823 29.511-62.208 61.23-75.117 15.495-6.306 32.63-9.165 46.684-18.69 6.975-4.728 12.62-11.273 21.72-10.945 8.29.298 16.184 3.996 24.576 2.852 7.432-1.014 13.241-5.84 19.52-9.509 2.92-1.705 6.106-3.25 9.54-3.435 3.81-.205 7.542 1.004 11.188 1.937 6.378 1.631 14.181 2.801 18.426-3.569 3.943-5.916.871-13.922-3.647-18.562-5.572-5.72-13.949-7.787-19.037-14.076-4.672-5.775-6.099-13.498-7.778-20.533-.885-3.713-1.809-7.432-3.18-11-1.46-3.8-3.566-7.164-5.538-10.704-1.938-3.48-3.35-7.208-2.415-11.224.865-3.719 3.23-6.865 5.942-9.466 6.126-5.875 14.487-9.396 22.492-11.86a83.317 83.317 0 0 1 26.3-3.675c9.472.204 18.421 2.497 27.528 4.891 8.752 2.301 17.691 4.204 26.773 3.042 16.907-2.163 31.283-12.753 42.891-24.637 6.478-6.633 12.378-13.793 18.54-20.713 3.13-3.515 6.328-6.972 9.698-10.26 2.997-2.924 6.23-5.98 10.283-7.334 4.473-1.493 9.371-.918 13.986-1.61 3.46-.519 6.795-1.69 9.861-3.374 6.087-3.34 10.864-8.573 14.947-14.094 9.09-12.29 14.568-27.369 27.222-36.745 5.872-4.352 12.838-6.829 20.092-4.868 3.11.841 4.437-3.98 1.33-4.822-15.715-4.249-29.12 7.804-37.615 19.65-8.43 11.755-13.728 26.871-26.243 35.193-2.982 1.983-6.26 3.405-9.792 4.055-4.563.84-9.275.311-13.808 1.427-8.432 2.075-14.815 9.743-20.442 15.865-12.327 13.412-23.32 28.605-38.877 38.551-7.129 4.56-15.187 8.08-23.683 8.901-9.534.923-18.749-1.704-27.87-4.12-8.874-2.352-17.776-4.053-26.99-4.016a87.997 87.997 0 0 0-26.289 4.131c-12.98 4.142-33.37 13.728-31.468 30.48.47 4.14 2.45 7.76 4.531 11.296 2.123 3.601 3.878 7.181 5.093 11.191 2.198 7.254 3.214 14.854 6.17 21.873 3.162 7.512 8.506 12.174 15.396 16.258 3.388 2.008 7.11 3.983 9.55 7.17 1.954 2.551 3.607 6.317 2.552 9.558-2.506 7.69-13.886 2.66-19.05 1.553-7.552-1.618-13.839.104-20.335 4.08-6.516 3.986-12.447 8.68-20.492 8.318-8.395-.378-16.419-4.159-24.922-2.748-8.349 1.386-14.05 8.116-20.91 12.427-7.245 4.553-15.327 7.446-23.42 10.086-8.072 2.633-16.22 5.068-23.992 8.522-7.36 3.271-14.184 7.58-20.454 12.624-12.573 10.115-22.659 23.28-30.008 37.597-8.512 16.585-13.553 34.74-16.462 53.094-.75 4.731-1.37 9.485-1.88 14.25-.336 3.127.186 9.215-2.513 11.481-1.452 1.22-3.76 1.17-5.437 2.06-1.486.788-2.638 2.051-3.346 3.566-1.436 3.075-.75 6.516-1.69 9.687-1.59 5.377-9.98 4.925-14.112 7.364-5.165 3.05-5.554 9.032-2.31 13.661 2.392 3.413 9.678 8.614 6.967 13.373-1.85 3.248-5.645 5.412-7.957 8.378C2.35 460.757.604 464.263.114 468.13c-.86 6.782 3.19 14.53 10.323 15.818 1.953.353 4.118.073 5.261 1.984.942 1.576 1.232 3.535 2.05 5.19 1.418 2.871 3.871 5.197 6.69 6.681 6.23 3.278 13.68 3.177 20.317 1.33 8.191-2.279 16.397-7.315 25.133-6.816 5.76.328 13.082 3.718 13.504 10.24.207 3.194 5.208 3.217 5 0" fill="#224461" mask="url(#f)"/></g></g></g></symbol><symbol id="filter" viewBox="0 0 20 19"> <path d="M3.81251 7.38047V1.13672C3.81251 0.987534 3.75325 0.84446 3.64776 0.738971C3.54227 0.633482 3.3992 0.574219 3.25001 0.574219C3.10083 0.574219 2.95775 0.633482 2.85226 0.738971C2.74678 0.84446 2.68751 0.987534 2.68751 1.13672V7.38047C2.05172 7.50957 1.48012 7.8545 1.06955 8.35682C0.658979 8.85914 0.434692 9.48796 0.434692 10.1367C0.434692 10.7855 0.658979 11.4143 1.06955 11.9166C1.48012 12.4189 2.05172 12.7639 2.68751 12.893V17.6367C2.68751 17.7859 2.74678 17.929 2.85226 18.0345C2.95775 18.14 3.10083 18.1992 3.25001 18.1992C3.3992 18.1992 3.54227 18.14 3.64776 18.0345C3.75325 17.929 3.81251 17.7859 3.81251 17.6367V12.893C4.4483 12.7639 5.0199 12.4189 5.43047 11.9166C5.84105 11.4143 6.06533 10.7855 6.06533 10.1367C6.06533 9.48796 5.84105 8.85914 5.43047 8.35682C5.0199 7.8545 4.4483 7.50957 3.81251 7.38047ZM3.25001 11.8242C2.91626 11.8242 2.59 11.7252 2.31249 11.5398C2.03498 11.3544 1.81869 11.0908 1.69097 10.7825C1.56324 10.4741 1.52982 10.1348 1.59494 9.8075C1.66005 9.48016 1.82077 9.17948 2.05677 8.94348C2.29277 8.70747 2.59345 8.54676 2.9208 8.48164C3.24814 8.41653 3.58744 8.44995 3.89579 8.57767C4.20414 8.70539 4.46769 8.92169 4.65312 9.19919C4.83854 9.4767 4.93751 9.80296 4.93751 10.1367C4.93751 10.5843 4.75972 11.0135 4.44325 11.33C4.12679 11.6464 3.69756 11.8242 3.25001 11.8242ZM10.5625 2.88047V1.13672C10.5625 0.987534 10.5032 0.84446 10.3978 0.738971C10.2923 0.633482 10.1492 0.574219 10 0.574219C9.85083 0.574219 9.70775 0.633482 9.60226 0.738971C9.49678 0.84446 9.43751 0.987534 9.43751 1.13672V2.88047C8.80172 3.00957 8.23012 3.3545 7.81955 3.85682C7.40898 4.35914 7.18469 4.98796 7.18469 5.63672C7.18469 6.28548 7.40898 6.91429 7.81955 7.41661C8.23012 7.91893 8.80172 8.26387 9.43751 8.39297V17.6367C9.43751 17.7859 9.49678 17.929 9.60226 18.0345C9.70775 18.14 9.85083 18.1992 10 18.1992C10.1492 18.1992 10.2923 18.14 10.3978 18.0345C10.5032 17.929 10.5625 17.7859 10.5625 17.6367V8.39297C11.1983 8.26387 11.7699 7.91893 12.1805 7.41661C12.591 6.91429 12.8153 6.28548 12.8153 5.63672C12.8153 4.98796 12.591 4.35914 12.1805 3.85682C11.7699 3.3545 11.1983 3.00957 10.5625 2.88047ZM10 7.32422C9.66626 7.32422 9.33999 7.22525 9.06249 7.03982C8.78498 6.8544 8.56869 6.59085 8.44097 6.2825C8.31324 5.97415 8.27982 5.63485 8.34494 5.3075C8.41005 4.98016 8.57077 4.67948 8.80677 4.44348C9.04277 4.20748 9.34345 4.04676 9.6708 3.98164C9.99814 3.91653 10.3374 3.94995 10.6458 4.07767C10.9541 4.2054 11.2177 4.42169 11.4031 4.69919C11.5885 4.9767 11.6875 5.30296 11.6875 5.63672C11.6875 6.08427 11.5097 6.51349 11.1933 6.82996C10.8768 7.14643 10.4476 7.32422 10 7.32422ZM19.5625 13.1367C19.5618 12.4886 19.3376 11.8605 18.9277 11.3584C18.5178 10.8564 17.9474 10.511 17.3125 10.3805V1.13672C17.3125 0.987534 17.2532 0.84446 17.1478 0.738971C17.0423 0.633482 16.8992 0.574219 16.75 0.574219C16.6008 0.574219 16.4578 0.633482 16.3523 0.738971C16.2468 0.84446 16.1875 0.987534 16.1875 1.13672V10.3805C15.5517 10.5096 14.9801 10.8545 14.5695 11.3568C14.159 11.8591 13.9347 12.488 13.9347 13.1367C13.9347 13.7855 14.159 14.4143 14.5695 14.9166C14.9801 15.4189 15.5517 15.7639 16.1875 15.893V17.6367C16.1875 17.7859 16.2468 17.929 16.3523 18.0345C16.4578 18.14 16.6008 18.1992 16.75 18.1992C16.8992 18.1992 17.0423 18.14 17.1478 18.0345C17.2532 17.929 17.3125 17.7859 17.3125 17.6367V15.893C17.9474 15.7625 18.5178 15.4171 18.9277 14.915C19.3376 14.4129 19.5618 13.7849 19.5625 13.1367ZM16.75 14.8242C16.4163 14.8242 16.09 14.7252 15.8125 14.5398C15.535 14.3544 15.3187 14.0908 15.191 13.7825C15.0632 13.4741 15.0298 13.1348 15.0949 12.8075C15.16 12.4802 15.3208 12.1795 15.5568 11.9435C15.7928 11.7075 16.0935 11.5468 16.4208 11.4816C16.7481 11.4165 17.0874 11.4499 17.3958 11.5777C17.7041 11.7054 17.9677 11.9217 18.1531 12.1992C18.3385 12.4767 18.4375 12.803 18.4375 13.1367C18.4375 13.5843 18.2597 14.0135 17.9433 14.33C17.6268 14.6464 17.1976 14.8242 16.75 14.8242Z" fill="#111111"/> </symbol><symbol id="form-success" viewBox="0 0 12 12"> <circle cx="6" cy="6" r="6" fill="#0372DD"/> <path d="M9.4595 3.10043C9.74268 2.80116 10.1932 3.23759 9.91002 3.53685C8.33964 5.25761 6.75639 6.95342 5.17315 8.66171C5.09592 8.749 5.01869 8.82381 4.94145 8.9111C4.82561 9.03579 4.60678 9.02332 4.49094 8.9111C3.69288 8.17541 2.89482 7.42726 2.09676 6.69157C1.80071 6.41725 2.25122 5.96835 2.54728 6.25515C3.2681 6.91602 3.97606 7.57689 4.69689 8.25023C6.29301 6.52947 7.87625 4.82118 9.4595 3.10043Z" fill="white" stroke="white" stroke-width="0.5" stroke-miterlimit="10"/> </symbol><symbol id="google" viewBox="0 0 24 24"><path d="M12.24 10.285V14.4h6.806c-.275 1.765-2.056 5.174-6.806 5.174-4.095 0-7.439-3.389-7.439-7.574s3.345-7.574 7.439-7.574c2.33 0 3.891.989 4.785 1.849l3.254-3.138C18.189 1.186 15.479 0 12.24 0c-6.635 0-12 5.365-12 12s5.365 12 12 12c6.926 0 11.52-4.869 11.52-11.726 0-.788-.085-1.39-.189-1.989H12.24z"/></symbol><symbol id="info" viewBox="0 0 12 12"><circle fill="#4A7299" cx="6" cy="6" r="6"/><text font-family="SaolStandard-Regular, Saol Standard" font-size="11" fill="#FFF"> <tspan x="4.2" y="9.5">i</tspan> </text></symbol><symbol id="instagram--thunder" viewBox="0 0 24 24"><path d="M17.377 0A6.63 6.63 0 0 1 24 6.623v10.754A6.63 6.63 0 0 1 17.377 24H6.623A6.63 6.63 0 0 1 0 17.377V6.623A6.63 6.63 0 0 1 6.623 0zm0 2.13H6.623a4.499 4.499 0 0 0-4.494 4.493v10.754a4.499 4.499 0 0 0 4.494 4.494h10.754a4.499 4.499 0 0 0 4.494-4.494V6.623a4.499 4.499 0 0 0-4.494-4.494zm-5.58 3.565a6.109 6.109 0 0 1 6.101 6.102 6.108 6.108 0 0 1-6.101 6.101 6.108 6.108 0 0 1-6.102-6.101 6.109 6.109 0 0 1 6.102-6.102zm0 2.1a4.007 4.007 0 0 0-4.001 4.002c0 2.206 1.795 4 4 4 2.207 0 4.001-1.794 4.001-4s-1.794-4.001-4-4.001zm6.508-3.727a1.628 1.628 0 0 1 1.151 2.778 1.643 1.643 0 0 1-1.15.476 1.64 1.64 0 0 1-1.15-.476 1.64 1.64 0 0 1-.478-1.151c0-.43.174-.85.478-1.15a1.634 1.634 0 0 1 1.15-.477z" fill="#1F1D1A" fill-rule="evenodd"/></symbol><symbol id="instagram" viewBox="0 0 1000 1000"> <g clip-path="url(#clip0_800_19608)"> <path d="M292.921 3.49981C239.721 6.00981 203.391 14.4998 171.631 26.9798C138.761 39.7898 110.901 56.9798 83.1808 84.7998C55.4608 112.62 38.3908 140.5 25.6708 173.42C13.3608 205.25 5.02081 241.61 2.67081 294.84C0.320811 348.07 -0.199189 365.18 0.0608107 500.96C0.320811 636.74 0.920811 653.76 3.50081 707.1C6.04081 760.29 14.5008 796.61 26.9808 828.38C39.8108 861.25 56.9808 889.1 84.8108 916.83C112.641 944.56 140.501 961.59 173.501 974.33C205.301 986.62 241.671 995 294.891 997.33C348.111 999.66 365.241 1000.2 500.981 999.94C636.721 999.68 653.811 999.08 707.141 996.55C760.471 994.02 796.601 985.5 828.381 973.08C861.251 960.22 889.121 943.08 916.831 915.24C944.541 887.4 961.601 859.5 974.311 826.56C986.631 794.76 995.001 758.39 997.311 705.21C999.641 651.84 1000.19 634.8 999.931 499.04C999.671 363.28 999.061 346.26 996.531 292.94C994.001 239.62 985.531 203.41 973.061 171.62C960.211 138.75 943.061 110.92 915.241 83.1698C887.421 55.4198 859.501 38.3698 826.571 25.6898C794.751 13.3798 758.401 4.98981 705.181 2.68981C651.961 0.38981 634.831 -0.20019 499.041 0.0598103C363.251 0.31981 346.251 0.89981 292.921 3.49981ZM298.761 907.38C250.011 905.26 223.541 897.16 205.901 890.38C182.541 881.38 165.901 870.5 148.321 853.09C130.741 835.68 119.941 818.98 110.821 795.67C103.971 778.03 95.7208 751.59 93.4408 702.84C90.9608 650.15 90.4408 634.33 90.1508 500.84C89.8608 367.35 90.3708 351.55 92.6808 298.84C94.7608 250.13 102.911 223.63 109.681 206C118.681 182.61 129.521 166 146.971 148.43C164.421 130.86 181.071 120.04 204.401 110.92C222.021 104.04 248.461 95.8598 297.191 93.5398C349.921 91.0398 365.721 90.5398 499.191 90.2498C632.661 89.9598 648.501 90.4598 701.251 92.7798C749.961 94.8998 776.471 102.97 794.081 109.78C817.451 118.78 834.081 129.59 851.651 147.07C869.221 164.55 880.051 181.14 889.171 204.52C896.061 222.09 904.241 248.52 906.541 297.28C909.051 350.01 909.621 365.82 909.861 499.28C910.101 632.74 909.631 648.59 907.321 701.28C905.191 750.03 897.111 776.51 890.321 794.17C881.321 817.52 870.471 834.17 853.011 851.73C835.551 869.29 818.921 880.11 795.581 889.23C777.981 896.1 751.511 904.3 702.821 906.62C650.091 909.1 634.291 909.62 500.771 909.91C367.251 910.2 351.501 909.66 298.771 907.38M706.371 232.77C706.391 244.638 709.929 256.233 716.54 266.089C723.15 275.946 732.535 283.62 743.507 288.143C754.479 292.665 766.546 293.832 778.182 291.496C789.817 289.16 800.498 283.425 808.875 275.018C817.251 266.611 822.946 255.909 825.24 244.265C827.533 232.621 826.322 220.558 821.759 209.603C817.197 198.647 809.488 189.29 799.607 182.716C789.727 176.142 778.118 172.646 766.251 172.67C750.341 172.702 735.096 179.051 723.867 190.321C712.637 201.592 706.344 216.86 706.371 232.77ZM243.271 500.5C243.551 642.3 358.711 756.99 500.481 756.72C642.251 756.45 757.021 641.3 756.751 499.5C756.481 357.7 641.291 242.98 499.501 243.26C357.711 243.54 243.001 358.72 243.271 500.5ZM333.331 500.32C333.266 467.356 342.977 435.113 361.237 407.668C379.496 380.223 405.484 358.809 435.914 346.134C466.344 333.459 499.849 330.092 532.193 336.459C564.536 342.826 594.265 358.641 617.62 381.904C640.976 405.167 656.908 434.833 663.403 467.151C669.898 499.469 666.664 532.987 654.109 563.467C641.555 593.947 620.244 620.019 592.872 638.387C565.499 656.756 533.295 666.594 500.331 666.66C478.443 666.706 456.76 662.44 436.521 654.105C416.282 645.77 397.883 633.529 382.375 618.083C366.867 602.636 354.554 584.286 346.139 564.08C337.724 543.874 333.371 522.208 333.331 500.32Z" fill="#02081C"/> </g> </symbol><symbol id="logo" viewBox="0 0 200 35"> <path d="M198.713 17.0798C198.713 16.6485 198.367 16.427 197.902 16.427H196.948V18.4887H197.354V17.7778H197.795L198.297 18.4887H198.786L198.225 17.7079C198.511 17.6262 198.714 17.4165 198.714 17.0788L198.713 17.0798ZM197.866 17.4529H197.353V16.7775H197.866C198.14 16.7775 198.296 16.8937 198.296 17.1152C198.296 17.3131 198.14 17.4529 197.866 17.4529ZM197.759 15.2594C196.524 15.2594 195.518 16.2459 195.518 17.4588V17.4706C195.518 18.6767 196.524 19.6583 197.759 19.6583C198.994 19.6583 200 18.6718 200 17.4588V17.447C200 16.241 198.994 15.2594 197.759 15.2594ZM199.67 17.4588C199.67 18.4936 198.813 19.3363 197.759 19.3363C196.705 19.3363 195.848 18.4995 195.848 17.4706V17.4588C195.848 16.4241 196.705 15.5813 197.759 15.5813C198.813 15.5813 199.67 16.4182 199.67 17.447V17.4588ZM31.3221 24.7543C31.3221 30.2893 26.8321 34.9167 16.0055 34.9167C5.93423 34.9167 1.08519 30.4764 0 24.3565H6.34572C7.48637 27.8615 10.1993 30.2706 16.5299 30.2706C22.8605 30.2706 24.8685 28.1086 24.8685 25.3775C24.8685 22.4829 23.1016 20.7501 14.9052 19.3993C3.92119 17.575 1.57231 14.1577 1.57231 9.61796C1.57231 3.39075 7.66488 0 15.4105 0C26.8402 0 29.7045 5.79598 30.0937 9.3925H23.7702C23.159 7.36533 21.8288 4.6677 15.2289 4.6677C10.6844 4.6677 7.97652 6.14549 7.97652 9.02034C7.97652 11.4334 9.38444 12.8571 16.6348 14.075C29.3051 16.2262 31.3221 20.0226 31.3221 24.7543ZM58.708 0.685239H38.9104V1.37245H41.5689V33.3837H38.9104V34.2324H41.5689H47.8763H50.5348V33.3837H47.8763V23.3168H58.7544C66.7087 23.3168 71.4952 18.0692 71.4952 11.7987C71.4952 6.24001 67.0254 0.685239 58.708 0.685239ZM58.0786 18.3715H47.8753V5.60399H58.0786C62.9287 5.60399 65.1757 8.96915 65.1757 11.8981C65.1757 15.6886 62.3125 18.3715 58.0786 18.3715ZM96.1771 0.685239H85.3626V1.37245H88.0282L74.2929 33.3837H71.9188V34.2324H74.5773H76.9474H78.558H80.4298L80.4772 34.1202V34.2324H83.1357V33.3837H80.7879L84.2774 25.1107H100.358L104.109 33.5777L103.87 33.3837H101.212V34.2324H104.917H110.534H113.192V33.3837H110.831L96.1771 0.685239ZM86.0575 20.057C89.1557 12.6572 91.2908 7.17532 92.024 4.84984H92.0724C92.8762 7.24325 94.6815 11.4384 98.4706 20.057H86.0565H86.0575ZM196.429 33.3837H198.175V34.2324H192.477H189.841H188.23H186.62V33.3837H189.065L179.56 21.1961H179.441L170.224 33.3837H173.055V34.2324H168.786H163.546H160.888V33.3837H163.144L175.951 17.0502L163.517 1.37245H160.962V0.685239H174.625V1.37245H170.965L179.871 13.0028L179.919 12.9811L188.89 1.37146H185.093V0.684254H198.184V1.37146H195.797L183.249 16.8356L196.429 33.3837ZM152.729 0.685239H155.363V1.37245H152.729V34.2324H145.695C141.353 28.2307 128.893 10.7206 126.602 6.84451H126.505C126.774 11.0898 126.774 15.8501 126.774 21.7947V33.3847H129.396V34.2334H126.738H121.067H118.408V33.3847H120.965V1.37245H118.408V0.685239H128.437C136.953 12.7783 145.059 23.0628 147.091 26.7342H147.188C146.87 22.7143 146.919 17.0148 146.919 11.5398V1.37245H144.284V0.685239H152.728H152.729Z" fill="#02081C"/> </symbol><symbol id="long-arrow-left" viewBox="0 0 34 10"><path d="m6.5.606-6.213 4.5 6.213 4.5v-4.01L33.895 5.5l-.003-1L6.5 4.597V.607z" fill="#263106" fill-rule="evenodd"/></symbol><symbol id="long-arrow-right" viewBox="0 0 34 10"><g fill="#263106" fill-rule="evenodd"><path stroke="#263106" d="M.106 5 30 5.106"/><path d="M33.713 5.106 27.5.606v9z"/></g></symbol><symbol id="map" viewBox="0 0 15 26"><path d="m7.5 25.632-.353-.573C6.838 24.618 0 13.853 0 7.676 0 3.53 3.353.176 7.5.176S15 3.53 15 7.676c0 6.045-6.838 16.942-7.103 17.383l-.397.573zm0-24.573A6.609 6.609 0 0 0 .882 7.676C.882 12.794 6.044 21.618 7.5 24c1.456-2.382 6.618-11.294 6.618-16.324 0-3.661-3-6.617-6.618-6.617zm.007 11.595a3.768 3.768 0 0 1-3.78-3.78c0-2.066 1.714-3.72 3.78-3.72 2.008 0 3.72 1.713 3.72 3.72 0 2.127-1.712 3.78-3.72 3.78zm.007-6.875c-1.724 0-3.161 1.365-3.161 3.09 0 1.724 1.437 3.16 3.16 3.16 1.653 0 3.09-1.436 3.09-3.16 0-1.653-1.437-3.09-3.09-3.09z"/></symbol><symbol id="maple-leaf" viewBox="0 0 1090 1200"> <image id="image0" width="1090" height="1200" x="0" y="0" href="data:image/png;base64,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"/> </symbol><symbol id="menu" viewBox="0 0 20 16"> <path d="M19.2593 6.93335H0.740741C0.544284 6.93335 0.355874 7.04573 0.216958 7.24577C0.0780421 7.44581 0 7.71712 0 8.00002C0 8.28291 0.0780421 8.55423 0.216958 8.75426C0.355874 8.9543 0.544284 9.06668 0.740741 9.06668H19.2593C19.4557 9.06668 19.6441 8.9543 19.783 8.75426C19.922 8.55423 20 8.28291 20 8.00002C20 7.71712 19.922 7.44581 19.783 7.24577C19.6441 7.04573 19.4557 6.93335 19.2593 6.93335Z" fill="#333333"/> <path d="M0.740741 2.13333H19.2593C19.4557 2.13333 19.6441 2.02095 19.783 1.82091C19.922 1.62088 20 1.34956 20 1.06667C20 0.783769 19.922 0.512458 19.783 0.31242C19.6441 0.112381 19.4557 0 19.2593 0H0.740741C0.544284 0 0.355874 0.112381 0.216958 0.31242C0.0780421 0.512458 0 0.783769 0 1.06667C0 1.34956 0.0780421 1.62088 0.216958 1.82091C0.355874 2.02095 0.544284 2.13333 0.740741 2.13333Z" fill="#333333"/> <path d="M19.2593 13.8667H0.740741C0.544284 13.8667 0.355874 13.9791 0.216958 14.1791C0.0780421 14.3792 0 14.6505 0 14.9334C0 15.2163 0.0780421 15.4876 0.216958 15.6876C0.355874 15.8877 0.544284 16 0.740741 16H19.2593C19.4557 16 19.6441 15.8877 19.783 15.6876C19.922 15.4876 20 15.2163 20 14.9334C20 14.6505 19.922 14.3792 19.783 14.1791C19.6441 13.9791 19.4557 13.8667 19.2593 13.8667Z" fill="#333333"/> </symbol><symbol id="minus" viewBox="0 0 16 1"> <path fill-rule="evenodd" clip-rule="evenodd" d="M15.8442 0.976318H0.255859V0.476318H15.8442V0.976318Z" fill="#031031"/> </symbol><symbol id="monogram" viewBox="0 0 18 18"> <path d="M8.78499 8.07217C8.54011 7.87975 8.27806 7.67818 7.9999 7.46955C6.3999 6.26955 7.33323 4.96955 7.9999 4.46954C9.2942 3.60671 10.381 4.02531 11.4761 4.97775" stroke="black" stroke-width="0.4" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.4999 8.46954C12.3332 8.13621 13.5998 7.06967 11.9999 5.46954" stroke="black" stroke-width="0.4" stroke-linecap="round" stroke-linejoin="round"/> <path d="M8.5 12.4695C9 12.6362 10.2 12.7695 11 11.9695C11.8 11.1695 11.3333 10.3029 11 9.96954C10.7844 9.75396 10.262 9.27348 9.48708 8.63629" stroke="black" stroke-width="0.4" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5 5.96942L12.5 4.96942" stroke="black" stroke-width="0.4" stroke-linecap="round" stroke-linejoin="round"/> <path d="M12 4.4694L4 13.4694L13 5.46942C13.1667 5.30275 13.4 4.8694 13 4.4694C12.6 4.0694 12.1667 4.30273 12 4.4694Z" stroke="black" stroke-width="0.4" stroke-linejoin="round"/> </symbol><symbol id="new-arrow-left" viewBox="0 0 9 14"> <path fill-rule="evenodd" clip-rule="evenodd" d="M3.61146 7.00901L9 1.71171C9 0.766359 8.23364 -9.53674e-07 7.28829 0H7.10828L0 7.00901L7.10828 14L7.28829 14C8.23364 14 9 13.2336 9 12.2883L3.61146 7.00901Z" fill="#111111"/> </symbol><symbol id="new-arrow-right" viewBox="0 0 9 14"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.38854 6.99099L2.02795e-06 12.2883C2.1106e-06 13.2336 0.766362 14 1.71171 14L1.89172 14L9 6.99099L1.89172 6.21426e-07L1.71171 7.12032e-07C0.766359 1.18787e-06 6.69973e-08 0.76636 1.10332e-06 1.71171L5.38854 6.99099Z" fill="#111111"/> </symbol><symbol id="pinterest" viewBox="0 0 19 23"><path d="M7.921.078C4.04.505.17 3.59.008 8.003c-.098 2.693.68 4.713 3.286 5.282 1.13-1.964-.363-2.394-.597-3.817C1.74 3.654 9.52-.317 13.595 3.746c2.822 2.814.963 11.465-3.582 10.565-4.354-.858 2.132-7.745-1.343-9.096-2.824-1.1-4.324 3.36-2.985 5.576-.786 3.812-2.477 7.4-1.792 12.18 2.22-1.585 2.97-4.615 3.583-7.778 1.116.667 1.713 1.358 3.136 1.466 5.246.4 8.18-5.149 7.46-10.272-.638-4.54-5.24-6.85-10.15-6.31z" fill="#E2AF7F" fill-rule="evenodd"/></symbol><symbol id="play" viewBox="0 0 18 22"> <path d="M18 11L9.2855e-07 21.3923L1.83707e-06 0.607695L18 11Z" fill="#DC0033"/> </symbol><symbol id="plus" viewBox="0 0 16 16"> <path fill-rule="evenodd" clip-rule="evenodd" d="M8.05653 7.97632L15.8443 7.97632L15.8443 7.47632L8.05653 7.47632L8.05653 0.188584L7.55653 0.188585V7.47632L0.25589 7.47632V7.97632L7.55653 7.97632L7.55653 15.777H8.05653L8.05653 7.97632Z" fill="#031031"/> </symbol><symbol id="promise" viewBox="0 0 21 19"><path d="m13.4 19c-.2366.0012-.4675-.0676-.6606-.1968l-2.2295-1.4777-2.23277 1.4777c-.14509.0943-.31122.1558-.48549.1796s-.352.0093-.51939-.0424c-.16739-.0516-.31995-.1391-.44583-.2555-.12587-.1165-.22169-.2588-.28002-.416l-.88849-2.4368-2.74472-.0468c-.17751-.0034-.35178-.0456-.50914-.1234-.15737-.0778-.29354-.1889-.39786-.3248-.10431-.1359-.17392-.2928-.20338-.4584-.02945-.1656-.01794-.3354.03362-.4961l.7927-2.465-2.173319-1.562c-.14159-.1011-.256454-.2318-.335549-.38198-.0790944-.15016-.120262-.31564-.120262-.48341s.0411676-.33325.120262-.48342c.079095-.15016.193959-.28091.335549-.38196l2.173319-1.56205-.7927-2.46804c-.048-.15935-.05674-.32699-.02556-.49003s.10146-.31716.20544-.4505c.10397-.13335.23888-.24237.39436-.3187.15548-.07634.32739-.11794.50252-.12163l2.72491-.04686.9083-2.436803c.0579-.1586.15394-.302322.28055-.419851.1266-.117529.28032-.205655.44906-.2574417.16873-.05178633.34787-.0658185.52331-.0409918.17545.0248267.3424.0878345.48772.1840625l2.22286 1.493325 2.2328-1.477704c.144-.094666.3091-.1568071.4825-.1816403.1734-.02483315.3505-.0116954.5177.0384016.1672.0500967.32.1358167.4466.2505597.1267.114743.2238.255448.2839.41128l.8885 2.436803 2.7249.04686c.1775.00338.3518.04561.5092.12337.1573.07776.2935.18895.3978.32485.1043.13589.1739.29279.2034.45839.0294.16561.0179.33542-.0336.49611l-.7927 2.46492 2.1733 1.56205c.1416.10105.2564.2318.3355.38197.0791.15016.1203.31564.1203.48341s-.0412.33325-.1203.48342c-.0791.15013-.1939.28093-.3355.38193l-2.1733 1.5621.7927 2.4649c.0475.158.0566.3242.0265.4861-.03.1618-.0985.3151-.2002.4483-.1018.1332-.2341.2428-.3871.3207s-.3226.1219-.4962.1289l-2.7249.0468-.9083 2.4368c-.0777.2134-.2238.3985-.418.5295-.1942.1311-.4268.2015-.6653.2016zm-5.78015-18.063592c-.01637-.002955-.03318-.002955-.04954 0-.0229.006646-.04381.018317-.06103.034062s-.03026.03512-.03806.05654l-.99088 2.74609c-.03286.09065-.09469.16941-.17693.22538-.08225.05597-.18085.08638-.28217.08703l-3.06842.05311c-.02461.00048-.04877.00638-.07055.01722-.02179.01085-.0406.02634-.05496.04526-.01422.01813-.02372.03918-.02774.06143s-.00243.04509.00462.06666l.89509 2.78045c.02975.09344.02792.19334-.00523.28575-.03316.09241-.096.17272-.17973.22973l-2.45077 1.75574c-.01979.01363-.03589.03148-.04699.05211-.01111.02064-.016894.04346-.016894.06661s.005784.04597.016894.0666c.0111.02064.0272.03849.04699.05212l2.45077 1.7557c.08067.0578.1407.1376.172.2287.03129.091.03236.1889.00305.2806l-.89509 2.7804c-.00609.0217-.00718.0443-.00319.0665.00399.0221.01296.0431.02631.0616.01486.0184.03379.0336.05546.0444.02168.0107.04559.0169.07005.0181l3.06842.0531c.10132.0007.19992.0311.28217.087.08225.056.14408.1348.17693.2254l.99088 2.7461c.0078.0214.02084.0408.03806.0565.01722.0158.03813.0275.06103.0341.02297.0079.04764.0103.07184.0071.0242-.0033.04717-.0122.06688-.0258l2.52678-1.6652c.0832-.0551.1824-.0847.284-.0847s.2008.0296.2841.0847l2.5168 1.6652c.0197.0136.0427.0225.0669.0258.0242.0032.0488.0008.0718-.0071.0229-.0066.0438-.0183.061-.0341.0173-.0157.0303-.0351.0381-.0565l.9909-2.7461c.0328-.0906.0947-.1694.1769-.2254.0823-.0559.1809-.0863.2822-.087l3.0684-.0531c.0245-.0012.0484-.0074.07-.0181.0217-.0108.0406-.026.0555-.0444.0142-.0181.0237-.0392.0277-.0614.0041-.0223.0025-.0451-.0046-.0667l-.8951-2.7804c-.0282-.0926-.0256-.1912.0075-.2823s.0951-.1704.1775-.227l2.4508-1.74946c.0198-.01362.0359-.03148.047-.05211s.0169-.04345.0169-.0666-.0058-.04597-.0169-.06661c-.0111-.02063-.0272-.03848-.047-.05211l-2.4508-1.76199c-.0807-.05781-.1407-.1376-.172-.22864s-.0324-.18896-.0031-.28059l.8951-2.78046c.0061-.02166.0072-.04432.0032-.06642s-.0129-.04313-.0263-.06166c-.0143-.01892-.0332-.03442-.0549-.04526-.0218-.01085-.046-.01674-.0706-.01723l-3.0684-.05311c-.1013-.00064-.1999-.03106-.2822-.08702-.0822-.05597-.1441-.13473-.1769-.22539l-.9909-2.74608c-.0078-.02142-.0208-.040797-.0381-.056542-.0172-.015745-.0381-.027416-.061-.034062-.023-.007905-.0476-.010331-.0718-.007061-.0242.003269-.0472.012133-.0669.025806l-2.5267 1.665149c-.0833.05511-.1825.08467-.2841.08467s-.2008-.02956-.284-.08467l-2.51687-1.662025c-.02584-.018053-.05706-.027897-.08918-.028117z" fill="#333"/><g fill="#000"><path d="m10.5099 15.0105c-1.15235 0-2.27882-.3232-3.23696-.9287-.95814-.6056-1.70492-1.4663-2.1459-2.4733s-.55636-2.11503-.33155-3.18404.77971-2.05097 1.59454-2.82168c.81484-.77072 1.85299-1.29558 2.98319-1.50822 1.13018-.21264 2.30168-.10351 3.36628.3136 1.0647.41711 1.9746 1.12346 2.6148 2.02972.6402.90627.9819 1.97175.9819 3.06171-.0017 1.46111-.6161 2.86181-1.7084 3.89501-1.0923 1.0331-2.5732 1.6143-4.1179 1.6159zm0-10.0846c-.95638 0-1.89127.26824-2.68646.7708-.79519.50257-1.41496 1.21688-1.78095 2.05261s-.46174 1.75535-.27517 2.64259c.18658.8872.64712 1.7021 1.32337 2.3418.67625.6396 1.53785 1.0752 2.47584 1.2517.93797.1765 1.91027.0859 2.79377-.2603.8836-.3461 1.6388-.9324 2.1701-1.6845.5314-.7521.815-1.6364.815-2.54101-.0018-1.21251-.5118-2.37489-1.4182-3.23226-.9065-.85738-2.1354-1.33978-3.4173-1.34143z"/><path d="m8.30688 8.9841c-.11571-.0019-.22933.02928-.32599.08946s-.17186.14656-.21576.24784-.05446.21273-.03028.31977c.02417.10704.08195.20469.16577.28016l1.44998 1.36837c.05312.0508.11641.091.18617.1183.06976.0274.14458.0413.22009.041.07877-.0002.15671-.0152.22929-.0442.07255-.029.13835-.0713.19345-.1245l2.9363-2.78044c.0545-.05085.0977-.11141.1272-.17818s.0446-.13841.0446-.21077-.0151-.144-.0446-.21076c-.0295-.06677-.0727-.12733-.1272-.17819-.1112-.10045-.259-.1565-.4128-.1565s-.3017.05605-.4129.1565l-2.53994 2.40244-1.03712-.98097c-.05313-.05076-.11642-.091-.18617-.11836-.06976-.02735-.14458-.04128-.22009-.04097z"/></g></symbol><symbol id="right-facing-arrow" viewBox="0 0 11 9"> <path d="M5.98935 9.00027L5.4446 8.46014L8.65767 5.25169H0.625V4.47612H8.65767L5.4446 1.26767L5.98935 0.727539L10.1257 4.8639L5.98935 9.00027Z"/> </symbol><symbol id="search" viewBox="0 0 20 20"> <g clip-path="url(#clip0_17054_334199)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M0.875 8.48802C0.875 4.28346 4.28346 0.875 8.48802 0.875C12.6926 0.875 16.101 4.28346 16.101 8.48802C16.101 12.6926 12.6926 16.101 8.48802 16.101C4.28346 16.101 0.875 12.6926 0.875 8.48802ZM8.48802 0.375C4.00732 0.375 0.375 4.00732 0.375 8.48802C0.375 12.9687 4.00732 16.601 8.48802 16.601C10.6384 16.601 12.5934 15.7644 14.0453 14.3989L18.9899 19.3434L19.1667 19.5202L19.5202 19.1667L19.3434 18.9899L14.3989 14.0453C15.7644 12.5934 16.601 10.6384 16.601 8.48802C16.601 4.00732 12.9687 0.375 8.48802 0.375Z"/> </g> </symbol><symbol id="shipping" viewBox="0 0 20 20"> <g clip-path="url(#clip0_17054_334157)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M7.26632 5.23363L9.7478 0.935576L14.0459 3.41706L11.5644 7.71511L7.26632 5.23363ZM6.58331 5.41664L6.83331 4.98363L9.31479 0.685576L9.56479 0.252563L9.9978 0.502563L14.2959 2.98405L14.7289 3.23405L14.4789 3.66706L11.9974 7.96511L11.8922 8.14727L14.8271 7.36087L15.3101 7.23146L15.4395 7.71442L16.8342 12.9197L16.9636 13.4027L16.4807 13.5321L11.2754 14.9268L10.7924 15.0562L10.663 14.5733L9.26828 9.36799L9.13887 8.88503L9.62183 8.75562L11.4965 8.25329L11.3144 8.14812L7.01632 5.66664L6.58331 5.41664ZM3.83504 2.37035H0.833313V1.87035H4.02776H4.22048L4.26953 2.05672L7.44364 14.1184C7.64615 14.0712 7.85719 14.0463 8.07405 14.0463C9.38427 14.0463 10.4819 14.9564 10.7692 16.179L18.9414 13.9892L19.0708 14.4722L10.8426 16.677L10.8384 16.6614C10.8412 16.7121 10.8426 16.7633 10.8426 16.8148C10.8426 18.3438 9.60306 19.5833 8.07405 19.5833C6.54504 19.5833 5.30554 18.3438 5.30554 16.8148C5.30554 15.679 5.98954 14.7029 6.9681 14.276L3.83504 2.37035ZM10.3426 16.8148C10.3426 18.0677 9.32692 19.0833 8.07405 19.0833C6.82119 19.0833 5.80554 18.0677 5.80554 16.8148C5.80554 15.5619 6.82119 14.5463 8.07405 14.5463C9.32692 14.5463 10.3426 15.5619 10.3426 16.8148ZM14.9565 7.84383L9.75124 9.23858L11.146 14.4438L16.3513 13.0491L14.9565 7.84383Z" fill="#031031"/> </g> </symbol><symbol id="sort" viewBox="0 0 19 16"> <path d="M8.8125 7.38672C8.8125 7.5359 8.75324 7.67898 8.64775 7.78447C8.54226 7.88996 8.39918 7.94922 8.25 7.94922H1.5C1.35082 7.94922 1.20774 7.88996 1.10225 7.78447C0.996763 7.67898 0.9375 7.5359 0.9375 7.38672C0.9375 7.23753 0.996763 7.09446 1.10225 6.98897C1.20774 6.88348 1.35082 6.82422 1.5 6.82422H8.25C8.39918 6.82422 8.54226 6.88348 8.64775 6.98897C8.75324 7.09446 8.8125 7.23753 8.8125 7.38672ZM1.5 1.94922H14.25C14.3992 1.94922 14.5423 1.88996 14.6477 1.78447C14.7532 1.67898 14.8125 1.5359 14.8125 1.38672C14.8125 1.23753 14.7532 1.09446 14.6477 0.988971C14.5423 0.883482 14.3992 0.824219 14.25 0.824219H1.5C1.35082 0.824219 1.20774 0.883482 1.10225 0.988971C0.996763 1.09446 0.9375 1.23753 0.9375 1.38672C0.9375 1.5359 0.996763 1.67898 1.10225 1.78447C1.20774 1.88996 1.35082 1.94922 1.5 1.94922ZM6.75 12.8242H1.5C1.35082 12.8242 1.20774 12.8835 1.10225 12.989C0.996763 13.0945 0.9375 13.2375 0.9375 13.3867C0.9375 13.5359 0.996763 13.679 1.10225 13.7845C1.20774 13.89 1.35082 13.9492 1.5 13.9492H6.75C6.89918 13.9492 7.04226 13.89 7.14775 13.7845C7.25324 13.679 7.3125 13.5359 7.3125 13.3867C7.3125 13.2375 7.25324 13.0945 7.14775 12.989C7.04226 12.8835 6.89918 12.8242 6.75 12.8242ZM18.3975 10.7392C18.292 10.6339 18.1491 10.5747 18 10.5747C17.8509 10.5747 17.708 10.6339 17.6025 10.7392L14.8125 13.5283V5.88672C14.8125 5.73753 14.7532 5.59446 14.6477 5.48897C14.5423 5.38348 14.3992 5.32422 14.25 5.32422C14.1008 5.32422 13.9577 5.38348 13.8523 5.48897C13.7468 5.59446 13.6875 5.73753 13.6875 5.88672V13.5283L10.8975 10.7392C10.7909 10.6399 10.6498 10.5858 10.5041 10.5883C10.3584 10.5909 10.2193 10.6499 10.1163 10.753C10.0132 10.8561 9.95419 10.9951 9.95162 11.1408C9.94905 11.2866 10.0031 11.4276 10.1025 11.5342L13.8525 15.2842C13.958 15.3896 14.1009 15.4487 14.25 15.4487C14.3991 15.4487 14.542 15.3896 14.6475 15.2842L18.3975 11.5342C18.5028 11.4288 18.562 11.2858 18.562 11.1367C18.562 10.9877 18.5028 10.8447 18.3975 10.7392Z" fill="#111111"/> </symbol><symbol id="star-empty" viewBox="0 0 18 19"> <path d="M9.30931 13.9086L12.8531 16.1586C13.3101 16.4469 13.8726 16.018 13.739 15.4906L12.7124 11.4547C12.6847 11.3428 12.6891 11.2254 12.7252 11.1159C12.7612 11.0065 12.8275 10.9094 12.9163 10.836L16.0945 8.18517C16.5093 7.84064 16.2984 7.14455 15.757 7.10939L11.6085 6.8422C11.4953 6.83562 11.3865 6.7962 11.2954 6.72877C11.2042 6.66135 11.1347 6.56882 11.0952 6.46252L9.54837 2.5672C9.50743 2.45464 9.43283 2.35739 9.33472 2.28868C9.2366 2.21996 9.11972 2.18311 8.99994 2.18311C8.88015 2.18311 8.76327 2.21996 8.66515 2.28868C8.56704 2.35739 8.49244 2.45464 8.4515 2.5672L6.90462 6.46252C6.8652 6.56882 6.79566 6.66135 6.70451 6.72877C6.61335 6.7962 6.50453 6.83562 6.39134 6.8422L2.2429 7.10939C1.7015 7.14455 1.49056 7.84064 1.9054 8.18517L5.08353 10.836C5.17236 10.9094 5.23863 11.0065 5.2747 11.1159C5.31078 11.2254 5.31519 11.3428 5.28744 11.4547L4.33822 15.1953C4.1765 15.8281 4.8515 16.3414 5.3929 15.9969L8.69056 13.9086C8.78303 13.8498 8.89035 13.8186 8.99994 13.8186C9.10952 13.8186 9.21684 13.8498 9.30931 13.9086Z" fill="#D8D8D8"/> </symbol><symbol id="star-half" viewBox="0 0 18 19"> <path d="M9.30931 13.9086L12.8531 16.1586C13.3101 16.4469 13.8726 16.018 13.739 15.4906L12.7124 11.4547C12.6847 11.3428 12.6891 11.2254 12.7252 11.1159C12.7612 11.0065 12.8275 10.9094 12.9163 10.836L16.0945 8.18517C16.5093 7.84064 16.2984 7.14455 15.757 7.10939L11.6085 6.8422C11.4953 6.83562 11.3865 6.7962 11.2954 6.72877C11.2042 6.66135 11.1347 6.56882 11.0952 6.46252L9.54837 2.5672C9.50743 2.45464 9.43283 2.35739 9.33472 2.28868C9.2366 2.21996 9.11972 2.18311 8.99994 2.18311C8.88015 2.18311 8.76327 2.21996 8.66515 2.28868C8.56704 2.35739 8.49244 2.45464 8.4515 2.5672L6.90462 6.46252C6.8652 6.56882 6.79566 6.66135 6.70451 6.72877C6.61335 6.7962 6.50453 6.83562 6.39134 6.8422L2.2429 7.10939C1.7015 7.14455 1.49056 7.84064 1.9054 8.18517L5.08353 10.836C5.17236 10.9094 5.23863 11.0065 5.2747 11.1159C5.31078 11.2254 5.31519 11.3428 5.28744 11.4547L4.33822 15.1953C4.1765 15.8281 4.8515 16.3414 5.3929 15.9969L8.69056 13.9086C8.78303 13.8498 8.89035 13.8186 8.99994 13.8186C9.10952 13.8186 9.21684 13.8498 9.30931 13.9086Z" fill="#D8D8D8"/> <path d="M8.66515 2.28868C8.76327 2.21996 8.88015 2.18311 8.99994 2.18311V13.8186C8.89035 13.8186 8.78303 13.8498 8.69056 13.9086L5.3929 15.9969C4.8515 16.3414 4.1765 15.8281 4.33822 15.1953L5.28744 11.4547C5.31519 11.3428 5.31078 11.2254 5.2747 11.1159C5.23863 11.0065 5.17236 10.9094 5.08353 10.836L1.9054 8.18517C1.49056 7.84064 1.7015 7.14455 2.2429 7.10939L6.39134 6.8422C6.50453 6.83562 6.61335 6.7962 6.70451 6.72877C6.79566 6.66135 6.8652 6.56882 6.90462 6.46252L8.4515 2.5672C8.49244 2.45464 8.56704 2.35739 8.66515 2.28868Z" fill="#111111"/> </symbol><symbol id="star" viewBox="0 0 18 19"> <path d="M9.30931 13.9086L12.8531 16.1586C13.3101 16.4469 13.8726 16.018 13.739 15.4906L12.7124 11.4547C12.6847 11.3428 12.6891 11.2254 12.7252 11.1159C12.7612 11.0065 12.8275 10.9094 12.9163 10.836L16.0945 8.18517C16.5093 7.84064 16.2984 7.14455 15.757 7.10939L11.6085 6.8422C11.4953 6.83562 11.3865 6.7962 11.2954 6.72877C11.2042 6.66135 11.1347 6.56882 11.0952 6.46252L9.54837 2.5672C9.50743 2.45464 9.43283 2.35739 9.33472 2.28868C9.2366 2.21996 9.11972 2.18311 8.99994 2.18311C8.88015 2.18311 8.76327 2.21996 8.66515 2.28868C8.56704 2.35739 8.49244 2.45464 8.4515 2.5672L6.90462 6.46252C6.8652 6.56882 6.79566 6.66135 6.70451 6.72877C6.61335 6.7962 6.50453 6.83562 6.39134 6.8422L2.2429 7.10939C1.7015 7.14455 1.49056 7.84064 1.9054 8.18517L5.08353 10.836C5.17236 10.9094 5.23863 11.0065 5.2747 11.1159C5.31078 11.2254 5.31519 11.3428 5.28744 11.4547L4.33822 15.1953C4.1765 15.8281 4.8515 16.3414 5.3929 15.9969L8.69056 13.9086C8.78303 13.8498 8.89035 13.8186 8.99994 13.8186C9.10952 13.8186 9.21684 13.8498 9.30931 13.9086V13.9086Z" stroke="#111111" stroke-width="0.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M9.30931 13.9086L12.8531 16.1586C13.3101 16.4469 13.8726 16.018 13.739 15.4906L12.7124 11.4547C12.6847 11.3428 12.6891 11.2254 12.7252 11.1159C12.7612 11.0065 12.8275 10.9094 12.9163 10.836L16.0945 8.18517C16.5093 7.84064 16.2984 7.14455 15.757 7.10939L11.6085 6.8422C11.4953 6.83562 11.3865 6.7962 11.2954 6.72877C11.2042 6.66135 11.1347 6.56882 11.0952 6.46252L9.54837 2.5672C9.50743 2.45464 9.43283 2.35739 9.33472 2.28868C9.2366 2.21996 9.11972 2.18311 8.99994 2.18311C8.88015 2.18311 8.76327 2.21996 8.66515 2.28868C8.56704 2.35739 8.49244 2.45464 8.4515 2.5672L6.90462 6.46252C6.8652 6.56882 6.79566 6.66135 6.70451 6.72877C6.61335 6.7962 6.50453 6.83562 6.39134 6.8422L2.2429 7.10939C1.7015 7.14455 1.49056 7.84064 1.9054 8.18517L5.08353 10.836C5.17236 10.9094 5.23863 11.0065 5.2747 11.1159C5.31078 11.2254 5.31519 11.3428 5.28744 11.4547L4.33822 15.1953C4.1765 15.8281 4.8515 16.3414 5.3929 15.9969L8.69056 13.9086C8.78303 13.8498 8.89035 13.8186 8.99994 13.8186C9.10952 13.8186 9.21684 13.8498 9.30931 13.9086Z" fill="#111111"/> </symbol><symbol id="thumb-up" viewBox="0 0 14 15"> <path d="M4.14051 14.9999H11.0278C11.9092 14.9999 12.6062 14.2764 12.6062 13.4082C12.6062 13.1188 12.5243 12.8501 12.3807 12.602C13.0776 12.4367 13.5901 11.7959 13.5901 11.0517C13.5901 10.6797 13.4671 10.3281 13.2416 10.0595C13.6926 9.77013 14 9.27398 14 8.69519C14 8.21979 13.795 7.8064 13.4671 7.49626C13.7951 7.18625 14 6.77269 14 6.27669C14 5.36712 13.2621 4.64374 12.3807 4.64374L8.42463 4.6436C8.58863 3.8788 8.58863 2.8245 8.54759 1.97709C8.5067 1.37755 8.26077 0.840135 7.8507 0.468128C7.27676 -0.0692866 6.53883 -0.152045 5.82136 0.261357C5.51395 0.447364 5.30891 0.778136 5.30891 1.15014V2.41109C5.30891 2.80388 5.22699 3.21726 5.06298 3.56864C3.93556 5.96653 2.37779 6.81409 2.19334 6.8967C2.13186 6.93808 2.07037 6.93808 1.9883 6.93808H0.409923C0.184438 6.93808 0 7.12409 0 7.35147V13.8422C0 14.0696 0.184449 14.2556 0.409923 14.2556H2.58267C2.6646 14.2556 2.72623 14.2762 2.78771 14.3176L3.42311 14.7518C3.64874 14.9172 3.89467 14.9999 4.14061 14.9999H4.14051ZM2.5827 13.4496H0.819871V7.78569H1.98833C2.19337 7.78569 2.37783 7.74431 2.56227 7.64092C3.46422 7.18616 4.85801 5.92521 5.80095 3.92011C6.02644 3.44471 6.12895 2.92793 6.12895 2.41115V1.1502C6.12895 1.06758 6.16999 1.00543 6.23147 0.964196C6.82584 0.612804 7.17445 0.943577 7.2974 1.04682C7.54333 1.27421 7.6869 1.60498 7.70732 1.97698C7.78925 3.32054 7.70732 4.37488 7.48184 4.78827C7.42035 4.91227 7.42035 5.07766 7.48184 5.22244C7.56377 5.34644 7.70732 5.42921 7.85073 5.42921H12.4013C12.8522 5.42921 13.2007 5.80122 13.2007 6.23538C13.2007 6.64877 12.8933 6.97955 12.5038 7.04156H12.4423C12.4013 7.04156 12.3808 7.04156 12.3398 7.06218H9.85947C9.63399 7.06218 9.44955 7.24819 9.44955 7.47557C9.44955 7.70295 9.634 7.88895 9.85947 7.88895H12.4217H12.5447C12.9342 7.93034 13.2416 8.26096 13.2416 8.65375C13.2416 9.08792 12.8931 9.41855 12.4832 9.41855H12.2577C12.1962 9.41855 12.1347 9.39793 12.0527 9.39793C12.0116 9.39793 11.9912 9.39793 11.9501 9.41855L9.85947 9.41869C9.63398 9.41869 9.44954 9.6047 9.44954 9.83208C9.44954 10.0595 9.63399 10.2455 9.85947 10.2455H12.1962C12.5447 10.3075 12.8316 10.6175 12.8316 11.0103C12.8316 11.4444 12.4832 11.7751 12.0732 11.7751H11.2738C11.2123 11.7751 11.1509 11.7544 11.0688 11.7544H9.87991C9.83887 11.7544 9.81842 11.7544 9.77739 11.7751H9.7159C9.49042 11.7751 9.30598 11.9611 9.30598 12.1884C9.30598 12.4158 9.49043 12.6018 9.7159 12.6018H11.2122C11.5607 12.6638 11.8476 12.9738 11.8476 13.3666C11.8476 13.8008 11.4992 14.1314 11.0892 14.1314L4.14042 14.1319C4.05849 14.1319 3.97642 14.1112 3.89449 14.0492L3.25909 13.6151C3.05405 13.5117 2.82856 13.4497 2.58266 13.4497L2.5827 13.4496Z" fill="black"/> </symbol><symbol id="thumbs-up-filled" viewBox="0 0 14 15"> <g> <path d="M9.4,8.5c0-0.3-0.1-0.6-0.3-0.9L8.7,7.1C8.4,6.8,8,6.6,7.6,6.5C7.4,6.4,7.2,6.4,7,6.4c-0.5,0-0.9,0.1-1.3,0.3 C5,7.1,4.3,7.6,3.7,8.1C3.4,8.3,3.3,8.6,3.2,8.9C3,9.2,2.9,9.5,3,9.9c0,0.3,0.1,0.7,0.2,1c0.1,0.3,0.3,0.6,0.5,0.8 C3.9,11.7,4,11.9,4.2,12c0.4,0.2,0.8,0.3,1.3,0.3c0.2,0,0.4-0.1,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3c0.4-0.3,0.9-0.6,1.4-0.9 c0.3-0.2,0.5-0.4,0.7-0.6c0.2-0.2,0.4-0.5,0.4-0.9C9.5,9.2,9.5,8.9,9.4,8.5z"/> <path d="M14,8.7c0-0.5-0.2-0.9-0.5-1.2C13.8,7.2,14,6.8,14,6.3c0-0.9-0.7-1.6-1.6-1.6l-4,0C8.6,3.9,8.6,2.8,8.5,2 c0-0.6-0.3-1.1-0.7-1.5c-0.6-0.5-1.3-0.6-2-0.2C5.5,0.4,5.3,0.8,5.3,1.2v1.3c0,0.4-0.1,0.8-0.2,1.2C3.9,6,2.4,6.8,2.2,6.9 c-0.1,0-0.1,0-0.2,0H0.4C0.2,6.9,0,7.1,0,7.4v6.5c0,0.2,0.2,0.4,0.4,0.4h2.2c0.1,0,0.1,0,0.2,0.1l0.6,0.4C3.6,14.9,3.9,15,4.1,15 H11c0.9,0,1.6-0.7,1.6-1.6c0-0.3-0.1-0.6-0.2-0.8c0.7-0.2,1.2-0.8,1.2-1.6c0-0.4-0.1-0.7-0.3-1C13.7,9.8,14,9.3,14,8.7z M6.9,10.9 c-0.1,0.1-0.2,0.2-0.3,0.4c0,0.1-0.1,0.2-0.1,0.3c-0.3-0.2-0.8-0.3-1.2-0.2c0.2,0,0.1-0.2-0.1-0.3C5.8,11,6.3,11,6.9,10.9z"/> </g> </symbol><symbol id="tiktok" viewBox="0 0 872 1000"> <g clip-path="url(#clip0_802_19618)"> <path d="M741.774 200.448C687.913 165.317 649.029 109.132 636.908 43.6293C634.287 29.4702 632.851 14.9104 632.851 0H460.935L460.651 689.018C457.763 766.175 394.269 828.104 316.417 828.104C292.225 828.104 269.435 822.06 249.384 811.491C203.387 787.28 171.916 739.059 171.916 683.575C171.916 603.88 236.745 539.046 316.417 539.046C331.293 539.046 345.551 541.501 359.058 545.725V370.206C345.084 368.302 330.892 367.117 316.417 367.117C141.947 367.117 0 509.075 0 683.559C0 790.62 53.4931 885.359 135.085 942.646C186.474 978.728 249 1000 316.417 1000C490.887 1000 632.834 858.042 632.834 683.559V334.174C700.251 382.578 782.862 411.097 872 411.097V239.168C823.983 239.168 779.272 224.909 741.774 200.448Z" fill="black"/> </g> </symbol><symbol id="truck" viewBox="0 0 27 19"> <g clip-path="url(#clip0)"> <path d="M19.438 1.84562L19.438 1.09879L19.438 1.0986C19.4368 0.794063 19.3134 0.502499 19.0948 0.287409C18.8762 0.0723453 18.5803 -0.0488467 18.2715 -0.05H18.2713L1.11665 -0.0500004L1.11647 -0.0499997C0.807719 -0.0488467 0.511792 0.0723454 0.293231 0.287409C0.0746443 0.502499 -0.0488251 0.794063 -0.05 1.0986V1.09879L-0.0500004 14.2297L-0.0499996 14.2299C-0.0488251 14.5345 0.0746444 14.826 0.293231 15.0411C0.511792 15.2562 0.807719 15.3774 1.11647 15.3785H1.11665H2.80177C2.81489 16.0825 3.10479 16.7547 3.61141 17.2532C4.13 17.7635 4.83318 18.05 5.56622 18.05C6.29926 18.05 7.00244 17.7635 7.52102 17.2532C8.02765 16.7547 8.31754 16.0825 8.33067 15.3785H19.9948C20.0079 16.0825 20.2978 16.7547 20.8045 17.2532C21.3231 17.7635 22.0262 18.05 22.7593 18.05C23.4923 18.05 24.1955 17.7635 24.7141 17.2532C25.2207 16.7547 25.5106 16.0825 25.5237 15.3785L25.9004 15.3785L25.9013 15.3785C26.207 15.3728 26.4984 15.2496 26.7131 15.035C26.9279 14.8204 27.0489 14.5314 27.05 14.2299V14.2297V10.0107V10.0107C27.0494 9.42388 26.8445 8.85512 26.4696 8.39908C26.1013 7.95103 25.5908 7.63838 25.0206 7.51083L24.3416 4.85054C24.4423 4.76869 24.5245 4.66681 24.5828 4.5514C24.6461 4.42604 24.6795 4.28807 24.6803 4.14802V4.14772V3.92964V3.92953C24.6792 3.37619 24.4549 2.84606 24.0571 2.45544C23.6594 2.06484 23.1206 1.84562 22.559 1.84562H19.438ZM4.19255 15.3246L4.19324 15.3246L4.19121 15.3164C4.18583 15.2948 4.18205 15.2729 4.17991 15.2507C4.18054 14.8891 4.32678 14.5423 4.58691 14.2863C4.84764 14.0298 5.20142 13.8855 5.57048 13.8855C5.93954 13.8855 6.29332 14.0298 6.55405 14.2863C6.81474 14.5429 6.96105 14.8906 6.96105 15.253H6.96061L6.96149 15.2596C6.96442 15.2817 6.96571 15.3039 6.96535 15.3261C6.93812 15.6688 6.78064 15.989 6.52404 16.2227C6.26703 16.4569 5.92954 16.5871 5.57901 16.5871C5.22847 16.5871 4.89098 16.4569 4.63398 16.2227C4.377 15.9886 4.21944 15.6678 4.19255 15.3246ZM18.0466 2.27244V2.27307V14.0204H8.04765C7.81957 13.5753 7.47162 13.2003 7.04165 12.9365C6.6028 12.6673 6.09606 12.5245 5.57901 12.5245C5.06195 12.5245 4.55521 12.6673 4.11636 12.9365C3.68639 13.2003 3.33844 13.5753 3.11036 14.0204H1.32861V1.30815H18.0588L18.0466 2.27244ZM22.5462 3.187L22.5464 3.187C22.7203 3.1861 22.8889 3.24555 23.0224 3.35473C23.1447 3.45462 23.2304 3.59025 23.2678 3.74112C23.147 3.78544 23.0402 3.86129 22.9591 3.96101C22.8932 4.0421 22.8476 4.13737 22.8259 4.23914C22.8043 4.34075 22.8073 4.44593 22.8345 4.5462C22.8345 4.54637 22.8346 4.54653 22.8346 4.5467L23.5688 7.4528H19.421L19.4252 3.187L22.5462 3.187ZM24.1465 15.3192L24.1462 15.3192L24.1457 15.3246C24.1188 15.6678 23.9613 15.9886 23.7043 16.2227C23.4473 16.4569 23.1098 16.5871 22.7593 16.5871C22.4087 16.5871 22.0712 16.4569 21.8142 16.2227C21.5573 15.9886 21.3997 15.6678 21.3728 15.3246L21.3728 15.3245C21.3709 15.3007 21.3709 15.2767 21.3728 15.2528L21.373 15.2528V15.2488C21.373 14.8864 21.5193 14.5387 21.78 14.2821C22.0407 14.0256 22.3945 13.8813 22.7635 13.8813C23.1326 13.8813 23.4864 14.0256 23.7471 14.2821C24.0076 14.5385 24.1539 14.886 24.1541 15.2482C24.1534 15.272 24.1509 15.2958 24.1465 15.3192ZM25.697 10.0191L25.6843 14.0204H25.2279C24.9998 13.5753 24.6519 13.2003 24.2219 12.9365C23.7831 12.6673 23.2763 12.5245 22.7593 12.5245C22.2422 12.5245 21.7355 12.6673 21.2966 12.9365C20.8667 13.2003 20.5187 13.5753 20.2906 14.0204H19.438V8.81095H24.4684C24.7945 8.81095 25.107 8.93843 25.3374 9.16509C25.5677 9.3917 25.6969 9.69884 25.697 10.0189C25.697 10.019 25.697 10.0191 25.697 10.0191Z" fill="#333333" stroke="white" stroke-width="0.1"/> </g> </symbol><symbol id="user" viewBox="0 0 25 24"><path d="M12.55 14.636a7.35 7.35 0 0 1-7.341-7.353C5.209 3.191 8.533 0 12.549 0a7.35 7.35 0 0 1 7.341 7.353c0 4.092-3.324 7.283-7.34 7.283zm0-11.861a4.57 4.57 0 0 0-4.571 4.578c0 2.566 2.008 4.578 4.57 4.578 2.563 0 4.571-2.012 4.571-4.578a4.57 4.57 0 0 0-4.57-4.578zM2.507 23.445c2.008-2.774 5.886-4.44 10.041-4.44 4.156 0 7.965 1.666 9.973 4.301.485.625 1.316.694 1.94.278.622-.486.692-1.318.276-1.942-2.493-3.4-7.133-5.41-12.12-5.41-5.055 0-9.764 2.15-12.326 5.548-.485.625-.347 1.457.277 1.943.277.208.554.277.83.277.416 0 .832-.208 1.109-.555z"/></symbol><symbol id="video" viewBox="0 0 28 28"><g fill="none" fill-rule="evenodd"><g transform="translate(0 1.693)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path d="M12.81 23.811a9.544 9.544 0 0 1 3.362-2.419c2.128-.91 4.631-1.072 6.41-2.554 1.366-1.136 2.102-2.907 3.514-3.988.541-.415 1.157-.7 1.803-.923.06-.532.1-1.071.1-1.62C28 6.994 25.04 2.372 20.68 0c-.882.074-1.76.458-2.637.67-2.49.602-5.315-.151-7.53 1.133-1.075.623-1.85 1.655-2.478 2.728-.627 1.073-1.138 2.216-1.848 3.236-1.436 2.065-3.703 3.507-6.16 4.025-.006.172-.026.341-.026.515 0 6.575 4.54 12.076 10.65 13.58.886-.435 1.492-1.326 2.16-2.076" fill="#D27362" mask="url(#b)"/></g><path d="M6.186 9.46c.71-1.02 1.221-2.163 1.848-3.236.627-1.073 1.402-2.105 2.478-2.728 2.215-1.284 5.04-.531 7.53-1.133.877-.212 1.755-.596 2.636-.67A13.931 13.931 0 0 0 14 0C6.441 0 .3 5.994.025 13.485c2.458-.518 4.724-1.96 6.161-4.025" fill="#A6BAE9"/><path d="M26.096 16.543c-1.411 1.081-2.148 2.852-3.514 3.988-1.778 1.482-4.281 1.644-6.41 2.554a9.544 9.544 0 0 0-3.361 2.419c-.67.75-1.275 1.641-2.16 2.076A14.01 14.01 0 0 0 14 28c7.184 0 13.095-5.412 13.9-12.38-.646.223-1.262.508-1.804.923" fill="#FFD1AD"/><path d="M11.2 17.696v-7.463a1 1 0 0 1 1.541-.84l5.597 3.602a1 1 0 0 1 .027 1.664l-5.597 3.86a1 1 0 0 1-1.568-.823z" fill="#FFF"/></g></symbol><symbol id="vimeo" viewBox="0 0 24 24"><path fill="#E2AF7F" d="M23.977 6.416c-.105 2.338-1.739 5.543-4.894 9.609-3.268 4.247-6.026 6.37-8.29 6.37-1.409 0-2.578-1.294-3.553-3.881L5.322 11.4C4.603 8.816 3.834 7.522 3.01 7.522c-.179 0-.806.378-1.881 1.132L0 7.197a315.065 315.065 0 0 0 3.501-3.128C5.08 2.701 6.266 1.984 7.055 1.91c1.867-.18 3.016 1.1 3.447 3.838.465 2.953.789 4.789.971 5.507.539 2.45 1.131 3.674 1.776 3.674.502 0 1.256-.796 2.265-2.385 1.004-1.589 1.54-2.797 1.612-3.628.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.121-1.777.391 1.186-3.868 3.434-5.757 6.762-5.637 2.473.06 3.628 1.664 3.493 4.797l-.013.01z"/></symbol><symbol id="youtube"><path d="M23.46 2.631A3.005 3.005 0 0 0 21.344.503C19.479 0 12 0 12 0S4.52 0 2.655.503A3.005 3.005 0 0 0 .541 2.631C.04 4.51.04 8.426.04 8.426s0 3.917.5 5.794a2.96 2.96 0 0 0 2.114 2.094c1.866.504 9.345.504 9.345.504s7.48 0 9.345-.504a2.96 2.96 0 0 0 2.114-2.094c.5-1.877.5-5.794.5-5.794s0-3.917-.5-5.795zM9.553 11.982V4.87l6.251 3.557-6.251 3.556z" fill="#E2AF7F"/></symbol><symbol id="caret-left-12x12" viewBox="0 0 12 12"> <path fill-rule="evenodd" clip-rule="evenodd" d="M3.36862 5.9536L9.39954 11.567L9.05888 11.933L2.63146 5.95054L9.06041 0.0655794L9.39801 0.434392L3.36862 5.9536Z"/> </symbol><symbol id="caret-right-12x12" viewBox="0 0 12 12"> <path fill-rule="evenodd" clip-rule="evenodd" d="M8.86062 6.0464L2.82971 0.433012L3.17037 0.0670166L9.59779 6.04946L3.16884 11.9344L2.83124 11.5656L8.86062 6.0464Z"/> </symbol><symbol id="circle-arrow-left-32x32" viewBox="0 0 32 32"> <g clip-path="url(#clip0_17054_334104)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.5833 16C30.5833 24.0541 24.0541 30.5833 16 30.5833C7.94581 30.5833 1.41663 24.0541 1.41663 16C1.41663 7.94581 7.94581 1.41663 16 1.41663C24.0541 1.41663 30.5833 7.94581 30.5833 16ZM31.3333 16C31.3333 24.4683 24.4683 31.3333 16 31.3333C7.53159 31.3333 0.666626 24.4683 0.666626 16C0.666626 7.53159 7.53159 0.666626 16 0.666626C24.4683 0.666626 31.3333 7.53159 31.3333 16ZM18.9329 22.4026L12.5303 15.9466L18.9307 9.59956L18.4026 9.06702L11.7359 15.6781L11.4696 15.9422L11.7337 16.2085L18.4004 22.9307L18.9329 22.4026Z"/> </g> </symbol><symbol id="circle-arrow-right-32x32" viewBox="0 0 32 32"> <g clip-path="url(#clip0_17054_334097)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M30.5833 16C30.5833 24.0541 24.0541 30.5833 16 30.5833C7.94581 30.5833 1.41663 24.0541 1.41663 16C1.41663 7.94581 7.94581 1.41663 16 1.41663C24.0541 1.41663 30.5833 7.94581 30.5833 16ZM31.3333 16C31.3333 24.4683 24.4683 31.3333 16 31.3333C7.53159 31.3333 0.666626 24.4683 0.666626 16C0.666626 7.53159 7.53159 0.666626 16 0.666626C24.4683 0.666626 31.3333 7.53159 31.3333 16ZM13.067 9.59735L19.4696 16.0533L13.0692 22.4004L13.5973 22.9329L20.264 16.3218L20.5303 16.0577L20.2662 15.7915L13.5996 9.06923L13.067 9.59735Z"/> </g> </symbol><symbol id="close-12x12" viewBox="0 0 12 12"> <g clip-path="url(#clip0_17054_334115)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M6.00419 6.08837L11.5747 11.7404L11.9257 11.3843L6.35513 5.73222L11.5735 0.436346L11.2226 0.0801961L6.00416 5.3761L0.776497 0.0718994L0.425522 0.428013L5.65322 5.73225L0.074585 11.3938L0.425522 11.7499L6.00419 6.08837Z" fill="#031031"/> </g> </symbol><symbol id="close-16x16" viewBox="0 0 16 16"> <g clip-path="url(#clip0_17054_334114)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M8.00547 8.11785L15.4328 15.6539L15.7838 15.2978L8.35641 7.7617L15.4312 0.581824L15.0803 0.225674L8.00544 7.40559L0.918221 0.2146L0.567246 0.570713L7.6545 7.76174L0.216309 15.3104L0.567246 15.6666L8.00547 8.11785Z" fill="#031031"/> </g> </symbol><symbol id="close-20x20" viewBox="0 0 20 20"> <g clip-path="url(#clip0_17054_334113)"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0069 10.1473L19.291 19.5674L19.642 19.2113L10.3578 9.79119L19.289 0.727301L18.9381 0.371151L10.0068 9.43507L1.06007 0.3573L0.709092 0.713413L9.6559 9.79122L0.358154 19.2271L0.709092 19.5832L10.0069 10.1473Z" fill="#031031"/> </g> </symbol></svg><!-- endinject --></div> <div id="shopify-section-color-groups" class="shopify-section"><script> window.SWATCHES = {"White": { "swatch": "//spanx.com/cdn/shop/files/white_e4807097-367f-4297-bd23-2cb51e6c72ef_64x44.png?v=1624559513", "colorOptions": ["White","Clean White","White\/Black Colorblock","Cream Cable","Black + White Graffiti","Heather White","Heather White - Empire","Soft White","White\/Vintage Grey","Cloud","White Camo","Parchment","Bright White","Powder","Cloudy Tie Dye","Classic White","Eager Beaver White","True Ivory","Ecru","Linen","White Cloud","Linen\/Champagne Beige","Raindots Aloe Mist\/Antique Blue","Light Cloudy Grey","Vivid White","Eggshell","Very Black Stripe","Porcelain","Frosted Ivory","Heather Cream","Chalk",] },"Grey": { "swatch": "//spanx.com/cdn/shop/files/gray_64x44.png?v=1624558576", "colorOptions": ["Charcoal","Black\/Charcoal","Gunmetal","Taupe Grey","Steel","Granite Gray","Gray Wash","Carbon Heather","Heathered Band Stripe","Tipped Heather","Antique Rose","Classic Grey","Crystal Grey","Moon Shadow","Slate","Earl Gray","Grey Python","Grey Watercolor","Very Black\/Heathered Charcoal","Charcoal Heather","Navy\/Charcoal","Moondust","Pewter Grey","Marled Grey","Heather Grey","Light Heather Grey","Marled Heather","Grey Marble","Heather Charcoal","Heather Grey","Heather Grey - Sky","Heather Grey - Bold","Heather Graphite","Graphite- Boss","Grey Leopard","Fry Day","Work In Progress","Chrome","Earl Grey Crossdye","Earl Grey","Vintage Grey","Houndstooth","Mortar Gray\/Silver","Grey Snake","Light Heather Grey","Heather Camo","Desert Dune","Mineral\/Earl Grey","Grey Ikat","Stonewash Camo","Pebble","Graphite Dust","Dark Stone","Soft Grey Heather","Speckled Grey","Spacedye Cloudy Grey","Cloudy Grey","Grey Mosaic","Stonewash Camo","Crystal Grey","Dark Stone","Light Grey Heather","Heather Grey","Smokey","Deep Slate","Magnetic","Pebble Grey","Silver Moon","Charcoal Heather","Silver Moon\/Linen","Charcoal Heather","Classic Plaid","Light Heather Grey","Medium Heather Grey","Pale Heather Grey","Dark Heather Grey",] },"Black": { "swatch": "//spanx.com/cdn/shop/files/black_64x44.png?v=1624558556", "colorOptions": ["Black","Assorted","Black\/Charcoal","Very Black","Spanx Lace Steel","Begonia Pink","Royal Blue","Black\/Heather","Black Band Stripe","Black Cherry","Very Black\/Mineral Taupe","Very Black\/Charcoal","Very Black\/Heathered Charcoal","Very Black\/Heart","Black Camo","Black Cheetah","Very Black\/Heather","Very Black\/Naked 4.0","Very Black\/Naked 2.0","ATH. Black 10","Black GEO","Black Cable","Black + White Graffiti","Black\/Barely","Hot Pink\/Midnight Navy","Geo Blue Camo","Plumberry\/Very Black","Smokey Navy\/Very Black","Heartbreaker","Dream BIG","Vintage Black","Failure is Not Trying","Black Tie","Classic Black","Black\/Metallic","Black Wash","Black","Ponte Black","Houndstooth","Black\/White Geo","Black Etched Line","Very Black\/Multi","Matte Black Camo","Clean Black","Noir Black","Very Black\/Silver","Very Black\/Silver","Wine\/Orange","Washed Black","Matte Snake","Matte Zebra","Black Cable","Vintage Black","Foiled Snake","Luxe Black","Very Black\/Champagne Beige","Eager Beaver Very Black","Very Black\/Toasted Oatmeal","Very Black Stripe","Embroidered Mom","Classic Black Plaid","Black Herringbone","Very Black \/ Silver Shimmer","Cafe Au Lait\/Iconic Leopard\/Very Black",] },"Nude": { "swatch": "//spanx.com/cdn/shop/files/nude_64x44.png?v=1624558575", "colorOptions": ["Nude","Bare","In the Buff","Bittersweet","Rose Gold","Natural","Black\/Bittersweet","Soft Nude","Taupetone","Gold Sparkle","Sandcastle","Chestnut","Copper Sparkle","Naked 1.0","Naked 2.0","Naked 3.0","Naked 4.0","Soft Sand","Spanx Lace Taupe","Pale Mauve","Espresso Brown","Brown Croc","Sienna Brown","Light Nude","Natural Glam","Nude Blush","Umber Ash","Vintage Rose","Mineral Taupe\/Naked 2.0","Naked 2.0 Wink","Naked 3.0\/Naked 2.0","Champagne Beige","Naked 1.0\/Naked 2.0","Foundation","S2","S4","S6","Naked 2.0 Lightning Bolt","Cameo Blush","Cloud\/Light Nude","Light Nude\/Cloud","Half Moon","Heather Oatmeal","Almond","Cafe Au Lait\/Vintage Rose","Toasted Oatmeal","Tahini","Oatmeal Heather","Natural Bronze","Tahini",] },"Shimmer": { "swatch": "//spanx.com/cdn/shop/files/shimmer_64x44.png?v=1624559284", "colorOptions": ["Sterling Shine","Cobalt Shine","Gold Shimmer","Silver Shimmer","Very Black \/ Gold Shimmer","Very Black \/ Silver Shimmer","Smoke Silver Shimmer",] },"Brown": { "swatch": "//spanx.com/cdn/shop/files/brown_64x44.png?v=1624558575", "colorOptions": ["Bronze Metal","Mineral Taupe\/Naked 2.0","Very Black\/Mineral Taupe","Khaki","Rich Brown","Saddle Brown","Bronzer","Earthy Taupe","Gold","Cocoa Rose","Cocoa Rose Crossdye","Rich Cocoa","Cafe Au Lait","Brown\/Black","Bark","Half Moon","Chocolate Brown","Mocha Snake","Clay","Clay Zebra Stripe","Latte","Brushed Collage Neutral Mini","Brushed Collage Neutral Grande","Brushed Collage Neutral","Cedar","Fawn","Bespoke Check Fawn","Acorn","Cherry Chocolate","Toffee","Smoke","Driftwood","Truffle Brown","Camel","Hickory","Espresso","Heather Smoke","Cocoa","Smoke Silver Shimmer","Truffle Brown Heather","Ashwood","Bone","Cafe Au Lait\/Iconic Leopard\/Very Black",] },"Pink": { "swatch": "//spanx.com/cdn/shop/files/pink_64x44.png?v=1624558575", "colorOptions": ["Fuchsia Fusion","Dark Blush","Cocoa Blush","Tea Rose","Vintage Rose","Watermelon Pink","Watermelon Ombre","Rose Blush","Blush Bloom","Blush Petal","Rosebud","Peachy","Tutu\/Peachy","Rosy Pink\/Rosebud","Happy Daze BRA","Light Pink","Ballet","Soft Pink\/Pink","Light Nude\/Ballet","Midnight Rose","Paradise Sand","Rosewood","Rosewood\/Graphite Purple","Terracotta","Spring Poppy","Mauve","Ice Pink","Hibiscus","Spacedye Coral Punch","Ballet Rouge","Ballet Rouge Crossdye","Hibiscus Gingham","Highlighter Pink","Rich Rose","Cafe Au Lait\/Vintage Rose","Lunar","Pale Pink","Camellia Pink","Tropic Mulberry","Cerise Pink","Wild Rose","Pale Rose","Lotus Pink","Fuchsia","Pink Blossom","Rosa","Petunia","Tulip","Pink Blossom\/Fuchsia\/Rosa",] },"Red": { "swatch": "//spanx.com/cdn/shop/files/red_64x44.png?v=1624558575", "colorOptions": ["Wine","Fuchsia Fusion","Dark Rose\/Syrah Wine","Syrah Wine","Pin Dot Rouge","Polka Dot Rouge","Cocoa Blush","Red Pop","Tipped Rouge Red","Garnet Rose","Rich Burgundy","Island Red","Wine\/Rose Gold","Island Red","Ruby","True Red","True Red Zebra Stripe","Sangria","Spanx True Red","Deep Amber","Rose Gold Star","Micro Dot Rich Red","Rich Red","Sangria\/Violet Umber","Fiery Red","Spice","Raisin","Dark Cherry","Wild Rose","Spice\/Wild Rose","Spice\/Champagne Beige","Chianti","Sherry","Spanx Red Stripe","Deep Red","Bitter Cocoa","Mulberry","Burnt Rust","Spanx Red","Moroccan Red","Dusty Red","Garnet Red","Fig","Fuchsia","Roseberry",] },"Orange": { "swatch": "//spanx.com/cdn/shop/files/fc9e21_64x44.png?v=1650399173", "colorOptions": ["Spiced Orange","Fry Days","Highlighter Orange","Honeyglow","Rich Caramel","Marmalade Stripe","Bronze Glow","Butterscotch","Salted Caramel","Geoscape Orange","Orange Pop Plaid","Melon Sorbet","Sedona","Sunset Peach","Cardinal Coral\/Sedona","Nectarine",] },"Yellow": { "swatch": "//spanx.com/cdn/shop/files/images_64x44.png?v=1650399335", "colorOptions": ["Soft Yellow","Highlighter Yellow","Sunshadow","Golden Hour","Dijon","Honey Mustard","Dijon Houndstooth","Lemon Lime",] },"Blue": { "swatch": "//spanx.com/cdn/shop/files/blue_64x44.png?v=1624558575", "colorOptions": ["Lapis Night","Nightcap Navy","Blue Night","Port Navy","Blue Velvet","Twilight Rinse","Navy Tread","Anodized Blue","Polka Dot Blue Body","Indigo Haze","Ink Blue","Midnight Navy","Moon Shadow","Night Navy","Smokey Navy","Blossom","Small Gingham Blue Night","Tipped Blue Night","Midnight Sky","Indigo Watercolor","Port Navy\/Heathered Port Navy","Black\/Nightcap Navy","Midnight","Navy\/Charcoal","BL Abstract FRL","Smokey DIP DYE","Midnight Navy\/Grey","Indigo GEO","Heron\/Whsprblu","Smokey Navy\/Very Black","Cobalt","Navy Tie-Dye","Blue Marble","Medium Wash","Sky Blue Camo","Leopard","Celestial Blue","Light Wash","Navy\/Cool Blue","Indigo Sky","Light Vintage Wash","Navy Diamond Dot","Navy Etched Line","Classic Navy","Clean Indigo","Azure\/Light Blue","Sunkissed Navy","Tropical Teal","Blue Ikat","Double Sailor Stripe","Ocean","Storm Blue","Stripe","Sea Salt","Neutral Wave","Indigo Ink","Midnight Shade","Storm Tie Dye","Navy Haze","Slate Blue","Coastal Blue","Retro Light Wash","Starstruck","Deep Blue Tie Dye","Stellar Blue","Peak Blue","Navy Painted Dot","Blue Painted Stripe","Spring Navy","Floral Squiggle Midnight Navy","Micro Dot Teal","Port Navy","Vintage Indigo","Navy\/Grey Pinstripe","Spring Navy","Hazy Blue Grey","Ebb and Flow Midnight Navy","Antique Blue","Floret Navy","Dot Patchwork Midnight Navy","Raw Indigo","Cerulean Blue","Midnight Navy\/Sunrise Sand","Geoscape Blue","Blue\/Brown Houndstooth","Morning Mist","Dark Petrol","Indigo Haze","Lapis Blue","Oxford","Tropical Turquoise","Dark Sapphire\/Indigo Haze","Dark Sapphire","Tropic Greek Sea","Twilight Indigo","Mountain Blue","Authentic Blue","Indigo Haze\/Classic Navy","Mixed Indigo Wash","Deep Night Stripe","Postal Blue Stripe","Sky Blue","Cornflower","Postal Blue Narrow Stripe","Timeless Navy","Dark Storm","Shaded Blue","Deep Night Stripe","Timeless Navy","Cornflower","Postal Blue Narrow Stripe","Sky Blue","Dusk Blue","Washed Blue","Authentic Blue","Sky","Midnight Navy Stripe","Crystal Teal","Midnight Teal","Deep Azure","Faded Indigo Stripe","Medium Indigo","Dark Indigo","Fern\/Timeless Navy\/Sky",] },"Purple": { "swatch": "//spanx.com/cdn/shop/files/purple_64x44.png?v=1624558575", "colorOptions": ["Wine","Mulberry Shadow","Shadow Leopard","Purple Night","Brandywine","French Lavender","Oxidized Purple","Lilac Ombre","Purple Night\/steel","Plumberry\/Very Black","Wine Camo","Be Bold","Lavender Grey","Bordeaux","Black\/Lavender","Vintage Amethyst","Plum Petal","Graphite Purple","Dark Fig","Luxe Lilac Crossdye","Luxe Lilac","Maroon Purple","Smokey","Violet Umber","Sangria\/Violet Umber","Light Orchid","Lavender Lust","Dusty Lavender","Violet Air","Deep Plum","Vibrant Lilac","Violet Grey","Aubergine",] },"Green": { "swatch": "//spanx.com/cdn/shop/files/green_64x44.png?v=1624558575", "colorOptions": ["Glam Bam Camo","Deep Teal","Green Camo","Dark Olive","Rosemary","Deep Olive","Desert Camo","Seafoam Green","Olive Green","Seafoam Green\/Silver Lining","Silver Sage","Matte Green Camo","Celadon","Deep Olive\/Citrine","Soft Sage","Dark Emerald","Deep Green","Darkened Olive","Jade","Mystic Green","Dark Palm","Key Lime","Fresh Celadon","Sage Mist","Sage","Canopy","Olive Oil","Crushed Canopy","Dusty Olive","Dark Palm\/Very Black","Utility Green","Tuscan Olive","Pine","Midnight Olive","Matcha Stripe","Essex Green","Clover","Essex Green Heather","Fennel","Fern","Cypress",] },"Highlighter": { "swatch": "//spanx.com/cdn/shop/files/hilighter_64x44.png?v=1624559015", "colorOptions": ["Highlighter Pink","Highlighter Yellow","HI-TRI Color","Highlighter Orange",] },"Multi": { "swatch": "//spanx.com/cdn/shop/files/multi_64x44.jpg?v=1624559120", "colorOptions": ["Spanx Lace Steel","Spanx Lace Taupe","Begonia Pink","Royal Blue","Dark Rose\/Syrah Wine","Glam Bam Camo","Shadow Leopard","Green Camo","Navy Tread","Blossom","Grey Python","Very Black\/Charcoal","Small Gingham Blue Night","Neon Multi","Midnight Sky","Desert Camo","Grey Watercolor","Indigo Watercolor","Port Navy\/Heathered Port Navy","Very Black\/Heathered Charcoal","Naked 2.0 Wink","Purple Night\/steel","Very Black\/Heart","Black Camo","Black Cheetah","Very Black\/Naked 4.0","Very Black\/Naked 2.0","ATH. Black 10","Black + White Graffiti","Colorful Graffiti","Wildflower","Colorful Life","Enchanted","Grey Marble","Plumberry\/Very Black","Smokey Navy\/Very Black","Heartbreaker","Navy Tie-Dye","Wine Camo","Blue Marble","White\/Ultra Peachy","White\/Peachy Stripe","A Naked Animal","Outta This World","Tropical Glow","Fempower","Happy Daze","Grey Leopard","Cosmic","Royal Spaniel","Bold Tiger","Floral Zebra","Black\/White Stripe","Colorful Harmony","Stand Tall","Grey\/Vintage Rose","Posh Palm","Colorful Harmony","Rainbow Shimmer","Naked Animal","Indigo Leopard","Taupe Snakeskin","Leopard Shine","Brown Snakeskin","A Fresh Start","A Fresh Start","Rose Garden","Neutral Snake","Very Black\/Multi","Marbled Blue\/Black","Double Sailor Stripe","Wine\/Orange Tie Dye","Painted Ruby Camo","Ocean Stripe","Desert Dot","Girl Power","Rainbow","Luck","Blossoming","Making Waves White","Neutral Wave","Groovy Zebra","Brushed Collage Neutral Mini","Brushed Collage Neutral Grande","Brushed Collage Neutral","Cafe Au Lait\/Iconic Leopard\/Very Black",] },}; </script> </div><div id="app" data-exposed-sale-variants="[39774335631571,39774335664339,39774335697107,39774335729875,39774335762643,39774335795411,39774335828179,39774335860947,39774335893715,39774335926483,39774335959251,39774335992019,39774336024787,39774336057555,39774336090323,39774336123091,39774336155859,39774336188627,39774336221395,39774336254163,39774336286931,39774336319699,39774336352467,39774336385235,48675754279123,48675754311891,48675754344659,48675754377427,48675754410195,48675754442963,48675754475731,48675754508499,43016375632083,43016375664851,43016375697619,43016375730387,43016375763155,43016375795923,43016375828691,43016375861459,43014976504019,43014976536787,43014976569555,43014976602323,43014976635091,43014976667859,43014976700627,43014976733395,43016354824403,43016354857171,43016354889939,43016354922707,43016354955475,43016354988243,43016355021011,43016355053779,43016354562259,43016354595027,43016354627795,43016354660563,43016354693331,43016354726099,43016354758867,43016354791635,43016354300115,43016354332883,43016354365651,43016354398419,43016354431187,43016354463955,43016354496723,43016354529491,43015298973907,43015299006675,43015299039443,43015299072211,43015299104979,43015299137747,43015299170515,43015299203283,48675846226131,48675846258899,48675846291667,48675846324435,48675846357203,48675846389971,48675846422739,48675846455507,43015511769299,43015511802067,43015511834835,43015511867603,43015511900371,43015511933139,43015511965907,43015511998675,43015298711763,43015298744531,43015298777299,43015298810067,43015298842835,43015298875603,43015298908371,43015298941139,43016082817235,43016082850003,43016082882771,43016082915539,43016082948307,43016082981075,43016083013843,43016083046611,48675325771987,48675325804755,48675325837523,48675325870291,48675325903059,48675325935827,48675325968595,48675326001363,48675855401171,48675855433939,48675855466707,48675855499475,48675855532243,48675855565011,48675855597779,48675855630547,43016082292947,43016082325715,43016082358483,43016082391251,43016082424019,43016082456787,43016082489555,43016082522323,43016091467987,43016091500755,43016091533523,43016091566291,43016091599059,43016091631827,43016091664595,43016091697363,43016083079379,43016083112147,43016083144915,43016083177683,43016083210451,43016083243219,43016083275987,43016083308755,48675827351763,48675827384531,48675827417299,48675827450067,48675827482835,48675827515603,48675827548371,48675827581139,43014364233939,43014364102867,43014364070099,43014364004563,43014364201171,43014364135635,43014364168403,43014364037331,43014364496083,43014364365011,43014364332243,43014364266707,43014364463315,43014364397779,43014364430547,43014364299475,43014363971795,43014363840723,43014363807955,43014363742419,43014363939027,43014363873491,43014363906259,43014363775187,43016088846547,43016088879315,43016088912083,43016088944851,43016088977619,43016089010387,43016089043155,43016089075923,43016089108691,43016089141459,43016089174227,43016089206995,43016089239763,43016089272531,43016089305299,43016089338067,43016089370835,43016089403603,43016089436371,43016089469139,43016089501907,43016089534675,43016089567443,43016089600211,43014905266387,43014905299155,43014905331923,43014905364691,43014905397459,43014905430227,43014905462995,43014905495763,43014905528531,43014905561299,43014905594067,43014905626835,43014905659603,43014905692371,43014905725139,43014905757907,43014905790675,43014905823443,43014905856211,43014905888979,43014905921747,43014905954515,43014905987283,43014906020051,48675359064275,48675359097043,48675359129811,48675359162579,48675359195347,48675359228115,48675359260883,48675359293651,48675359326419,48675359359187,48675359391955,48675359424723,48675359457491,48675359490259,48675359523027,48675359555795,48675359588563,48675359621331,48675359654099,48675359686867,48675359719635,48675359752403,48675359785171,48675359817939,43016355086547,43016355119315,43016355152083,43016355184851,43016355217619,43016355250387,43016355283155,43016355315923,43016355610835,43016355643603,43016355676371,43016355709139,43016355741907,43016355774675,43016355807443,43016355840211,43016355872979,43016355905747,43016355938515,43016355971283,43016356004051,43016356036819,43016356069587,43016356102355,43016355348691,43016355381459,43016355414227,43016355446995,43016355479763,43016355512531,43016355545299,43016355578067,43015029883091,43015029915859,43015029948627,43015029981395,43015030014163,43015030046931,43015030079699,43015030112467,43015030145235,43015030178003,43015030210771,43015030243539,43015030276307,43015030309075,43015030341843,43015030374611,43015030407379,43015030440147,43015030472915,43015030505683,43015030538451,43015030571219,43015030603987,43015030636755,43015054000339,43015054033107,43015054065875,43015054098643,43015054131411,43015054164179,43015054196947,43015054229715,43015054262483,43015054295251,43015054328019,43015054360787,43015054393555,43015054426323,43015054459091,43015054491859,48675737141459,48675737174227,48675737206995,48675737239763,48675737272531,48675737305299,48675737338067,48675737370835,43016025637075,43016025669843,43016025702611,43016025735379,43016025768147,43016025800915,43016025833683,43016025866451,43016025899219,43016025931987,43016025964755,43016025997523,43016026030291,43016026063059,43016026095827,43016026128595,43016026161363,43016026194131,43016026226899,43016026259667,43016026292435,43016026325203,43016026357971,43016026390739,48675725934803,48675725967571,48675726000339,48675726033107,48675726065875,48675726098643,48675726131411,48675726164179,48675725672659,48675725705427,48675725738195,48675725770963,48675725803731,48675725836499,48675725869267,48675725902035,48675833381075,48675833413843,48675833446611,48675833479379,48675833512147,48675833544915,48675833577683,48675833610451,48675763454163,48675763486931,48675763519699,48675763552467,48675763585235,48675763618003,48675763650771,48675763683539,43014369509587,43014369378515,43014369476819,43014369444051,43014369345747,43014369411283,43014369542355,43014369312979,43014368985299,43014368854227,43014368952531,43014368919763,43014368821459,43014368886995,43014369018067,43014368788691,43015220068563,43015220101331,43015220134099,43015220166867,43015220199635,43015220232403,43015220265171,43015220297939,48675827876051,48675827908819,48675827941587,48675827974355,48675828007123,48675828039891,48675828072659,48675828105427,48675828138195,48675828170963,48675828203731,48675828236499,48675828269267,48675828302035,48675828334803,48675828367571,48675828400339,48675828433107,48675828465875,48675828498643,48675828531411,48675828564179,48675828596947,48675828629715,48675859202259,48675859235027,48675859267795,48675859300563,48675859333331,48675859366099,48675859398867,48675859431635,48675859464403,48675859497171,48675859529939,48675859562707,48675859595475,48675859628243,48675859661011,48675859693779,48675859726547,48675859759315,48675859792083,48675859824851,48675859857619,48675859890387,48675859923155,48675859955923,48675314434259,48675314467027,48675314499795,48675314532563,48675314565331,48675314598099,48675314630867,48675314663635,48675314172115,48675314204883,48675314237651,48675314270419,48675314303187,48675314335955,48675314368723,48675314401491,48677377573075,48677377605843,48677377638611,48677377671379,48677377704147,48677377736915,48677377769683,48677377802451,48677377835219,48677377867987,48677377900755,48677377933523,48677377966291,48677377999059,48677378031827,48677378064595,48677378097363,48677378130131,48677378162899,48677378195667,48677378228435,48677378261203,48677378293971,48677378326739,48677376786643,48677376819411,48677376852179,48677376884947,48677376917715,48677376950483,48677376983251,48677377016019,48677377048787,48677377081555,48677377114323,48677377147091,48677377179859,48677377212627,48677377245395,48677377278163,48677377310931,48677377343699,48677377376467,48677377409235,48677377442003,48677377474771,48677377507539,48677377540307,48675303162067,48675303194835,48675303227603,48675303260371,48675303293139,48675303325907,48675303358675,48675303391443,48675303424211,48675303456979,48675303489747,48675303522515,48675303555283,48675303588051,48675303620819,48675303653587,48675303686355,48675303719123,48675303751891,48675303784659,48675303817427,48675303850195,48675303882963,48675303915731,43016018034899,43016018067667,43016018100435,43016018133203,43016018165971,43016018198739,43016018231507,43016018264275,43016018297043,43016018329811,43016018362579,43016018395347,43016018428115,43016018460883,43016018493651,43016018526419,43016018559187,43016018591955,43016018624723,43016018657491,43016018690259,43016018723027,43016018755795,43016018788563,43015487914195,43015487946963,43015487979731,43015488012499,43015488045267,43015488078035,43015488110803,43015488143571,43015488176339,43015488209107,43015488241875,43015488274643,43015488307411,43015488340179,43015488372947,43015488405715,43015488438483,43015488471251,43015488504019,43015488536787,43015488569555,43015488602323,43015488635091,43015488667859,48675854352595,48675854385363,48675854418131,48675854450899,48675854483667,48675854516435,48675854549203,48675854581971,48675854614739,48675854647507,48675854680275,48675854713043,48675854745811,48675854778579,48675854811347,48675854844115,48675854876883,48675854909651,48675854942419,48675854975187,48675855007955,48675855040723,48675855073491,48675855106259,43016047493331,43016047526099,43016047558867,43016047591635,43016047624403,43016047657171,43016047689939,43016047722707,43015252115667,43015252148435,43015252181203,43015252213971,43015252246739,43015252279507,43015252312275,43015252345043,48675434791123,48675434823891,48675434856659,48675434889427,48675434922195,48675434954963,48675434987731,48675435020499,48675865624787,48675865657555,48675865690323,48675865723091,48675865755859,48675865788627,48675865821395,48675865854163,48675865886931,48675865919699,48675865952467,48675865985235,48675866018003,48675866050771,48675866083539,48675866116307,48675866149075,48675866181843,48675866214611,48675866247379,48675866280147,48675866312915,48675866345683,48675866378451,43014618546387,43014618611923,43014618480851,43014618513619,43014618448083,43014618579155,43014618382547,43014618415315,48675736879315,48675736912083,48675736944851,48675736977619,48675737010387,48675737043155,48675737075923,48675737108691,48675724624083,48675724656851,48675724689619,48675724722387,48675724755155,48675724787923,48675724820691,48675724853459,43016083341523,43016083374291,43016083407059,43016083439827,43016083472595,43016083505363,43016083538131,43016083570899,43016083603667,43016083636435,43016083669203,43016083701971,43016083734739,43016083767507,43016083800275,43016083833043,48675864314067,48675864346835,48675864379603,48675864412371,48675864445139,48675864477907,48675864510675,48675864543443,48676448993491,48676449026259,48676449059027,48676449091795,48676449124563,48676449157331,48676449190099,48676449222867,48676449255635,48676449288403,48676449321171,48676449353939,48676449386707,48676449419475,48676449452243,48676449485011,48676449517779,48676449550547,48676449583315,48676449616083,48676449648851,48676449681619,48676449714387,48676449747155,48675726983379,48675727016147,48675727048915,48675727081683,48675727114451,48675727147219,48675727179987,48675727212755,48675726459091,48675726491859,48675726524627,48675726557395,48675726590163,48675726622931,48675726655699,48675726688467,48676514070739,48676514103507,48676514136275,48676514169043,48676514201811,48676514234579,48676514267347,48676514300115,48676481597651,48676481630419,48676481663187,48676481695955,48676481728723,48676481761491,48676481794259,48676481827027,48675364045011,48675364077779,48675364110547,48675364143315,48675364176083,48675364208851,48675364241619,48675364274387,48675364307155,48675364339923,48675364372691,48675364405459,48675364438227,48675364470995,48675364503763,48675364536531,48675364569299,48675364602067,48675364634835,48675364667603,48675364700371,48675364733139,48675364765907,48675364798675,48675364831443,48675364864211,48675364896979,48675364929747,48675364962515,48675364995283,48675365028051,48675365060819,48675365093587,48675365126355,48675365159123,48675365191891,48675365224659,48675365257427,48675365290195,48675365322963,48675365355731,48675365388499,48675365421267,48675365454035,48675365486803,48675365519571,48675365552339,48675365585107,48675735568595,48675735601363,48675735634131,48675735666899,48675735699667,48675735732435,48675735765203,48675735797971,48675871391955,48675871424723,48675871457491,48675871490259,48675871523027,48675871555795,48675871588563,48675871621331,48676451877075,48676451909843,48676451942611,48676451975379,48676452008147,48676452040915,48676452073683,48676452106451,48676452139219,48676452171987,48676452204755,48676452237523,48676452270291,48676452303059,48676452335827,48676452368595,43015271121107,43015271153875,43015271186643,43015271219411,43015271252179,43015271284947,43015271317715,43015271350483,48675339141331,48675339174099,48675339206867,48675339239635,48675339272403,48675339305171,48675339337939,48675339370707,48675340976339,48675341009107,48675341041875,48675341074643,48675341107411,48675341140179,48675341172947,48675341205715,48675356967123,48675356999891,48675357032659,48675357065427,48675357098195,48675357130963,48675357163731,48675357196499,48675355918547,48675355951315,48675355984083,48675356016851,48675356049619,48675356082387,48675356115155,48675356147923,48676531273939,48676531306707,48676531339475,48676531372243,48676531405011,48676531437779,48676531470547,48676531503315,48676514857171,48676514889939,48676514922707,48676514955475,48676514988243,48676515021011,48676515053779,48676515086547,48676470849747,48676470882515,48676470915283,48676470948051,48676470980819,48676471013587,48676471046355,48676471079123,48676471111891,48676471144659,48676471177427,48676471210195,48676471242963,48676471275731,48676471308499,48676471341267,48676471374035,48676471406803,48676471439571,48676471472339,48676471505107,48676471537875,48676471570643,48676471603411,48676533371091,48676533403859,48676533436627,48676533469395,48676533502163,48676533534931,48676533567699,48676533600467,48676532846803,48676532879571,48676532912339,48676532945107,48676532977875,48676533010643,48676533043411,48676533076179,48676533108947,48676533141715,48676533174483,48676533207251,48676533240019,48676533272787,48676533305555,48676533338323,48675343073491,48675343106259,48675343139027,48675343171795,48675343204563,48675343237331,48675343270099,48675343302867,48675342549203,48675342581971,48675342614739,48675342647507,48675342680275,48675342713043,48675342745811,48675342778579,48675842031827,48675842064595,48675842097363,48675842130131,48675843604691,48675843637459,48675843670227,48675843702995,48675382231251,48675382264019,48675382296787,48675382329555]"> <span id="top"></span> <a href="#MainContent" class="skip-to-main">Skip to main content</a><div id="shopify-section-header-countdown-timer" class="shopify-section"> </div><div id="shopify-section-header-promo-bar" class="shopify-section"> <div class="header-promo-bar " style="background-color: #000000; color: #ffffff !important;"> <header-promo-bar-carousel :schema=" { &quot;swiper_settings&quot;: { &quot;allowTouchMove&quot;: false, &quot;autoplay&quot;: { &quot;delay&quot;: 4000, &quot;disableOnInteraction&quot;: true, &quot;pauseOnMouseEnter&quot;: true }, }, &quot;settings&quot;: { arrow_color: &quot;#ffffff&quot;, text_color: &quot;#ffffff&quot; }, &quot;blocks&quot;: [ { settings: { id: &quot;12d32d9d-3904-4081-b300-8194e0226152&quot;, message_link_decoration: true, message: &quot;\u003cp\u003eFREE SHIPPING ON EVERYTHING\u003c\/p\u003e&quot;, attentve_modal_enabled: false, attentive_modal_desktop_creative_id: null, attentive_modal_mobile_creative_id: null, modal_link_decoration: false, attentive_modal_desktop_fr_creative_id: null, attentive_modal_mobile_fr_creative_id: null, attentive_modal_link_text: &quot;&quot;, legal_enabled: true, legal_link_text: &quot;TERMS&quot;, legal_link_decoration: false, legal_modal_header: &quot;FREE SHIPPING TERMS \u0026 CONDITIONS&quot;, unique_id: null, legal_modal_content: &quot;\u003cp\u003eMake a product purchase on \u003ca href=\&quot;https:\/\/www.spanx.com\&quot; target=\&quot;_blank\&quot; title=\&quot;https:\/\/www.spanx.com\/\&quot;\u003ewww.spanx.com\u003c\/a\u003e and receive free standard shipping within the 50 United States and the District of Columbia. Make an exchange or a return within 30 days of placing your order for a store credit in the form of a gift card or a refund to your original form of payment. Returns are subject to a $6.00 return shipping fee. This fee is waived if you select gift card as your form of return payment.\u003c\/p\u003e\u003cp\u003e \u003c\/p\u003e\u003cp\u003eOffer does not apply to Canadian orders. No adjustments on previous purchases. Offer cannot be combined with other offers. Offer does not apply to purchases from other retail outlets of SPANX® brand retail stores. Offer is void where taxed, restricted or prohibited by law. Offer is not redeemable for cash. Offer is non-transferable and subject to change without notice. This offer is made by SPANX, LLC.\u003c\/p\u003e&quot;, legal_modal_content_secondary: null } }, { settings: { id: &quot;message_dacP6X&quot;, message_link_decoration: false, message: &quot;\u003cp\u003eGET 20% OFF YOUR FIRST ORDER!\u003c\/p\u003e&quot;, attentve_modal_enabled: true, attentive_modal_desktop_creative_id: 1060815, attentive_modal_mobile_creative_id: 1060802, modal_link_decoration: false, attentive_modal_desktop_fr_creative_id: null, attentive_modal_mobile_fr_creative_id: null, attentive_modal_link_text: &quot;\u003cu\u003eSEE OFFER\u003c\/u\u003e&quot;, legal_enabled: false, legal_link_text: &quot;&quot;, legal_link_decoration: false, legal_modal_header: &quot;&quot;, unique_id: null, legal_modal_content: &quot;&quot;, legal_modal_content_secondary: null } }, ] } "></header-promo-bar-carousel> <div style="background-color: #000000; color: #ffffff;"><div class="header-intl-selector" @click=" openModal('country_drawer_wrapper') "> <country-toggle-button class="intl-selector__btn intl-selector__btn--header-promo-bar" :settings="{ &quot;title&quot;: &quot;Choose your location&quot;, &quot;subtitle&quot;: &quot;Spanx ships to the following areas&quot;, &quot;modal_you_are_leaving&quot;: &quot;You’re leaving Spanx US&quot;, &quot;modal_are_you_sure_to_leave&quot;: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestically in their respective regions. If you leave Spanx CA and go to Spanx US, your shopping bag will not travel with you.&quot;, &quot;modal_continue_to_other_country&quot;: &quot;Continue to Spanx CA&quot;, &quot;modal_stay_in_this_page&quot;: &quot;No Thanks, I’ll Stay Here&quot;, &quot;drawer_selected_country_description&quot;: &quot;Your current selected location is &lt;span&gt;[CURRENT_LOCATION]&lt;/span&gt; and your order will be billed in &lt;span&gt;[CURRENCY_CODE].&lt;/span&gt;&quot;, &quot;split_countries_by_continent&quot;:true, &quot;drawer_country_confirmation_title&quot;: &quot;Are you sure you want to change your location?&quot;, &quot;drawer_double_country_confirmation_message&quot;: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestilcally in their respective regions. If you change sites, your shopping bag will not travel with you.&quot;, &quot;drawer_country_confirmation_staying&quot;: &quot;Stay on Spanx [CURRENT_COUNTRY_CODE]&quot;, &quot;drawer_country_confirmation_message_template&quot;: &quot;It looks like you’re in [CURRENT_COUNTRY] You are changing your shipping location to &lt;span&gt;[COUNTRY_SELECTED_NAME]&lt;/span&gt; and your order will be billed in &lt;span&gt;[COUNTRY_SELECTED_CURRENCY]&lt;/span&gt;. Your shopping cart will be emptied.&quot;, &quot;enable_coming_soon_list&quot;:false, &quot;country_coming_soon_list_label&quot;: &quot;Coming Soon&quot;, &quot;country_drawer_coming_soon_header&quot;: &quot;Coming soon to [country_name]&quot;, &quot;country_drawer_coming_soon_subtitle&quot;: &quot;Spanx isn&#39;t available to ship to [country_name] just yet, but we&#39;re coming soon! Fill out the form below to be the first to know when our products become available to you.&quot;, &quot;country_drawer_coming_soon_footer_link_text&quot;: &quot;Ship to another country&quot;, &quot;country_drawer_continue_shopping_text&quot;: &quot;Continue&quot;, &quot;country_drawer_confirm_country_text&quot;: &quot;Continue&quot;, &quot;country_drawer_coming_soon_confirmation_header&quot;: &quot;You’re on the List!&quot;, &quot;country_drawer_coming_soon_confirmation_subtitle&quot;: &quot;We’ll let you know when we start shipping to [country_name]. In the mean time, feel free to browse our US site and start building your wishlist!&quot;, &quot;country_waitlist_klaviyo_list_id&quot;: &quot;RFCuz9&quot;, &quot;klaviyo_site_id&quot;: &quot;RN8rMY&quot;, &quot;modal_content&quot;: { &quot;heading&quot;: &quot;You’re currently shopping on our United States site. We now have a Canadian site, too!&quot;, &quot;body&quot;:&quot;\u003cp\u003eVisit our new Canadian site to shop in Canadian currency, get duty-free purchases, and enjoy free standard shipping from our Canadian warehouse. \u003c\/p\u003e&quot;, &quot;cta_text&quot;: &quot;Shop Spanx.ca&quot;, &quot;footer_copy&quot;:&quot;\u003cp\u003e\u003ca href=\&quot;#\&quot; title=\&quot;#\&quot;\u003eNO THANKS, I&#39;LL SHOP \u0026 SHIP TO THE U.S.\u003c\/a\u003e\u003c\/p\u003e&quot;, &quot;icon_image&quot;:&quot;\/\/spanx.com\/cdn\/shop\/files\/CanadaLeafImage_220x.png?v=1652451648&quot;}, &quot;is_header&quot;:true, &quot;redirectingStateSettings&quot;: { &quot;delayInSecs&quot;: 4, &quot;lblTitle&quot;: &quot;Hang tight, we&#39;re taking you to Spanx [target_country_code]&quot;, &quot;lblBody&quot;: &quot;Your shipping location will be set to &lt;strong&gt;[target_country_name]&lt;/strong&gt; and your order will be billed in &lt;strong&gt;[target_country_currency]&lt;/strong&gt;.&quot;, &quot;lblCancelBtn&quot;: &quot;Cancel&quot;, &quot;preventVarsTranslations&quot;: false } }" style="background-color: ; height: '44px'; color: ;"> </country-toggle-button> </div></div> </div> </div><header-reporter><div id="shopify-section-header" class="shopify-section site-header__content-wrapper"><header class="site-header"> <div class="site-header__mobile-nav"> <mobile-navigation ref="mobileNav" :menu-items="[{ &quot;name&quot;: &quot;New&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-new&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop All New Arrivals&quot;, &quot;url&quot;: &quot;/collections/new-arrivals&quot;, &quot;handle&quot;: &quot;shop-all-new-arrivals&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Just In&quot;, &quot;url&quot;: &quot;/collections/new-arrivals&quot;, &quot;handle&quot;: &quot;just-in&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/new-arrivals&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;ReDefine Denim&quot;, &quot;url&quot;: &quot;/pages/redefine-denim&quot;, &quot;handle&quot;: &quot;redefine-denim&quot;},{ &quot;title&quot;: &quot;New? Start Here.&quot;, &quot;url&quot;: &quot;/collections/first-timer-faves&quot;, &quot;handle&quot;: &quot;new-start-here&quot;},{ &quot;title&quot;: &quot;The Color Shop&quot;, &quot;url&quot;: &quot;/collections/the-color-shop&quot;, &quot;handle&quot;: &quot;the-color-shop&quot;},{ &quot;title&quot;: &quot;The Ponte Edit&quot;, &quot;url&quot;: &quot;/collections/the-ponte-edit&quot;, &quot;handle&quot;: &quot;the-ponte-edit&quot;},{ &quot;title&quot;: &quot;Invisible Shapewear&quot;, &quot;url&quot;: &quot;/collections/invisible-shaping&quot;, &quot;handle&quot;: &quot;invisible-shapewear&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/New_Colors_BB_Top_Nav.jpg?v=1739275884&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/the-active-edit&quot;, &quot;tile_1_heading&quot;: &quot;These Set The Tone&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003ePerk up your routine in limited-edition shades of sweat-wicking, breathable Booty Boost® styles.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/top_nav_373d1de0-9471-4e78-9b8e-64da1fc5575a.jpg?v=1739454704&quot;, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: &quot;\/collections\/spanxsculpt-jeans&quot;, &quot;tile_2_heading&quot;: &quot;SPANXsculpt™ ReDefine Denim&quot;, &quot;tile_2_text&quot;: &quot;\u003cp\u003eMeet SPANXsculpt™ ReDefine—our first sculpting denim. Designed with innovative fibers, these jeans provide targeted sculpting exactly where you need it.\u003c\/p\u003e&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Best Sellers&quot;, &quot;link&quot;: &quot;\/collections\/best-sellers&quot;, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;&quot;, &quot;children&quot;:[], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: null, &quot;tile_1_heading&quot;: &quot;&quot;, &quot;tile_1_text&quot;: &quot;&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Clothing&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-clothing&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Clothing&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;all-clothing&quot;},{ &quot;title&quot;: &quot;Pants&quot;, &quot;url&quot;: &quot;/collections/pants&quot;, &quot;handle&quot;: &quot;pants&quot;},{ &quot;title&quot;: &quot;Jeans&quot;, &quot;url&quot;: &quot;/collections/jeans&quot;, &quot;handle&quot;: &quot;jeans&quot;},{ &quot;title&quot;: &quot;Leggings&quot;, &quot;url&quot;: &quot;/collections/leggings&quot;, &quot;handle&quot;: &quot;leggings&quot;},{ &quot;title&quot;: &quot;Tops&quot;, &quot;url&quot;: &quot;/collections/tops&quot;, &quot;handle&quot;: &quot;tops&quot;},{ &quot;title&quot;: &quot;Outerwear + Jackets&quot;, &quot;url&quot;: &quot;/collections/outerwear-jackets&quot;, &quot;handle&quot;: &quot;outerwear-jackets&quot;},{ &quot;title&quot;: &quot;Matching Sets&quot;, &quot;url&quot;: &quot;/collections/matching-sets&quot;, &quot;handle&quot;: &quot;matching-sets&quot;},{ &quot;title&quot;: &quot;Loungewear&quot;, &quot;url&quot;: &quot;/collections/luxury-loungewear&quot;, &quot;handle&quot;: &quot;loungewear&quot;},{ &quot;title&quot;: &quot;Dresses + Jumpsuits&quot;, &quot;url&quot;: &quot;/collections/dresses-jumpsuits&quot;, &quot;handle&quot;: &quot;dresses-jumpsuits&quot;},{ &quot;title&quot;: &quot;Skorts&quot;, &quot;url&quot;: &quot;/collections/shorts-skirts&quot;, &quot;handle&quot;: &quot;skorts&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/sale?category=Clothing&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Shop by Occasion&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;shop-by-occasion&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Workwear&quot;, &quot;url&quot;: &quot;/collections/workwear&quot;, &quot;handle&quot;: &quot;workwear&quot;},{ &quot;title&quot;: &quot;Weekend Wear&quot;, &quot;url&quot;: &quot;/collections/weekend-wear&quot;, &quot;handle&quot;: &quot;weekend-wear&quot;},{ &quot;title&quot;: &quot;The Date Night Shop&quot;, &quot;url&quot;: &quot;/collections/date-night&quot;, &quot;handle&quot;: &quot;the-date-night-shop&quot;}]},{ &quot;title&quot;: &quot;Shop by Collection&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;shop-by-collection&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;SPANXshape™ Jeans&quot;, &quot;url&quot;: &quot;/collections/spanxshape-jeans&quot;, &quot;handle&quot;: &quot;spanxshape™-jeans&quot;},{ &quot;title&quot;: &quot;SPANXsculpt™ Jeans&quot;, &quot;url&quot;: &quot;/collections/spanxsculpt-jeans&quot;, &quot;handle&quot;: &quot;spanxsculpt™-jeans&quot;},{ &quot;title&quot;: &quot;SPANXsmooth™ PerfectFit Pants&quot;, &quot;url&quot;: &quot;/collections/spanxsmooth-perfectfit-pants&quot;, &quot;handle&quot;: &quot;spanxsmooth™-perfectfit-pants&quot;},{ &quot;title&quot;: &quot;AirEssentials &quot;, &quot;url&quot;: &quot;/collections/airessentials&quot;, &quot;handle&quot;: &quot;airessentials&quot;},{ &quot;title&quot;: &quot;Ponte&quot;, &quot;url&quot;: &quot;/collections/the-ponte-edit&quot;, &quot;handle&quot;: &quot;ponte&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_New-Stretch-Twill-Pants_SITE_TopNavTIle_US_CAN.gif?v=1739449007&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/pants&quot;, &quot;tile_1_heading&quot;: &quot;SPANXsupersmooth™ Stretch Twill&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eSame built-in smoothing, new zipper fly, hidden pockets, and fresh shades.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Jeans&quot;, &quot;link&quot;: &quot;\/collections\/jeans&quot;, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;&quot;, &quot;children&quot;:[], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: null, &quot;tile_1_heading&quot;: &quot;&quot;, &quot;tile_1_text&quot;: &quot;&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Active&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-active&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/active&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Activewear&quot;, &quot;url&quot;: &quot;/collections/active&quot;, &quot;handle&quot;: &quot;all-activewear&quot;},{ &quot;title&quot;: &quot;Matching Sets&quot;, &quot;url&quot;: &quot;/collections/matching-sets&quot;, &quot;handle&quot;: &quot;matching-sets&quot;},{ &quot;title&quot;: &quot;Leggings&quot;, &quot;url&quot;: &quot;/collections/active-leggings&quot;, &quot;handle&quot;: &quot;leggings&quot;},{ &quot;title&quot;: &quot;Tops&quot;, &quot;url&quot;: &quot;/collections/active-tanks-tops&quot;, &quot;handle&quot;: &quot;tops&quot;},{ &quot;title&quot;: &quot;Pants&quot;, &quot;url&quot;: &quot;/collections/active-pants&quot;, &quot;handle&quot;: &quot;pants&quot;},{ &quot;title&quot;: &quot;Sports Bras &quot;, &quot;url&quot;: &quot;/collections/sports-bras&quot;, &quot;handle&quot;: &quot;sports-bras&quot;},{ &quot;title&quot;: &quot;Dresses + Jumpsuits&quot;, &quot;url&quot;: &quot;/collections/active-dresses-jumpsuits&quot;, &quot;handle&quot;: &quot;dresses-jumpsuits&quot;},{ &quot;title&quot;: &quot;Shorts + Skorts&quot;, &quot;url&quot;: &quot;/collections/shorts-skorts&quot;, &quot;handle&quot;: &quot;shorts-skorts&quot;},{ &quot;title&quot;: &quot;Swim&quot;, &quot;url&quot;: &quot;/collections/swim&quot;, &quot;handle&quot;: &quot;swim&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/active-swim-sale&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/active&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;SPANXshape™ Booty Boost®&quot;, &quot;url&quot;: &quot;/collections/spanxshape-booty-boost-active&quot;, &quot;handle&quot;: &quot;spanxshape™-booty-boost®&quot;},{ &quot;title&quot;: &quot;SPANXsmooth™ OnForm&quot;, &quot;url&quot;: &quot;/collections/spanxsmooth-onform&quot;, &quot;handle&quot;: &quot;spanxsmooth™-onform&quot;},{ &quot;title&quot;: &quot;The Active Edit&quot;, &quot;url&quot;: &quot;/collections/the-active-edit&quot;, &quot;handle&quot;: &quot;the-active-edit&quot;},{ &quot;title&quot;: &quot;The Color Shop&quot;, &quot;url&quot;: &quot;/collections/the-color-shop&quot;, &quot;handle&quot;: &quot;the-color-shop&quot;},{ &quot;title&quot;: &quot;New This Month&quot;, &quot;url&quot;: &quot;/collections/active-new-arrivals&quot;, &quot;handle&quot;: &quot;new-this-month&quot;}]},{ &quot;title&quot;: &quot;Shop by Color&quot;, &quot;url&quot;: &quot;/collections/the-color-shop&quot;, &quot;handle&quot;: &quot;shop-by-color&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Black&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-black&quot;, &quot;handle&quot;: &quot;black&quot;},{ &quot;title&quot;: &quot;Red&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-spanx-red&quot;, &quot;handle&quot;: &quot;red&quot;},{ &quot;title&quot;: &quot;Blue&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-blue?color=Blue&quot;, &quot;handle&quot;: &quot;blue&quot;},{ &quot;title&quot;: &quot;Purple&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-purple?color=Purple&quot;, &quot;handle&quot;: &quot;purple&quot;},{ &quot;title&quot;: &quot;Green&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-green?color=Green&quot;, &quot;handle&quot;: &quot;green&quot;},{ &quot;title&quot;: &quot;Brown&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-neutrals?color=Brown&quot;, &quot;handle&quot;: &quot;brown&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_GET-MOVING-DRESSES_SITE_Navigation-Tile_US_CAN.gif?v=1738860744&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/get-moving&quot;, &quot;tile_1_heading&quot;: &quot;NEW Get Moving High Neck Dress&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eOur newest, one-and-done style that shapes and supports, with a bonus built-in Booty Boost®.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Shapewear&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-shapewear&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Shapewear&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;all-shapewear&quot;},{ &quot;title&quot;: &quot;Bodysuits&quot;, &quot;url&quot;: &quot;/collections/shapewear-bodysuits&quot;, &quot;handle&quot;: &quot;bodysuits&quot;},{ &quot;title&quot;: &quot;Underwear&quot;, &quot;url&quot;: &quot;/collections/shapewear-underwear&quot;, &quot;handle&quot;: &quot;underwear&quot;},{ &quot;title&quot;: &quot;Shorts&quot;, &quot;url&quot;: &quot;/collections/shapewear-shorts&quot;, &quot;handle&quot;: &quot;shorts&quot;},{ &quot;title&quot;: &quot;Hosiery&quot;, &quot;url&quot;: &quot;/collections/hosiery&quot;, &quot;handle&quot;: &quot;hosiery&quot;},{ &quot;title&quot;: &quot;Tops&quot;, &quot;url&quot;: &quot;/collections/shapewear-tanks-camis&quot;, &quot;handle&quot;: &quot;tops&quot;},{ &quot;title&quot;: &quot;Footless + Capris &quot;, &quot;url&quot;: &quot;/collections/footless-capris&quot;, &quot;handle&quot;: &quot;footless-capris&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/shapewear-sale&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Best Sellers&quot;, &quot;url&quot;: &quot;/collections/shapewear-best-sellers&quot;, &quot;handle&quot;: &quot;best-sellers&quot;},{ &quot;title&quot;: &quot;The Shapewear Guide&quot;, &quot;url&quot;: &quot;/pages/the-original-shapewear-innovators&quot;, &quot;handle&quot;: &quot;the-shapewear-guide&quot;},{ &quot;title&quot;: &quot;The Wedding Shop&quot;, &quot;url&quot;: &quot;/collections/wedding-shapewear&quot;, &quot;handle&quot;: &quot;the-wedding-shop&quot;},{ &quot;title&quot;: &quot;The Petite Shop&quot;, &quot;url&quot;: &quot;/collections/petite-shapewear&quot;, &quot;handle&quot;: &quot;the-petite-shop&quot;},{ &quot;title&quot;: &quot;Maternity&quot;, &quot;url&quot;: &quot;/collections/maternity-intimates&quot;, &quot;handle&quot;: &quot;maternity&quot;}]},{ &quot;title&quot;: &quot;Shop by Compression&quot;, &quot;url&quot;: &quot;/collections/spanxeffect-shapewear&quot;, &quot;handle&quot;: &quot;shop-by-compression&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;SPANXsmooth™&quot;, &quot;url&quot;: &quot;/collections/spanxsmooth-shapewear&quot;, &quot;handle&quot;: &quot;spanxsmooth™&quot;},{ &quot;title&quot;: &quot;SPANXshape™&quot;, &quot;url&quot;: &quot;/collections/spanxshape-shapewear&quot;, &quot;handle&quot;: &quot;spanxshape™&quot;},{ &quot;title&quot;: &quot;SPANXsculpt™&quot;, &quot;url&quot;: &quot;/collections/spanxsculpt-shapewear&quot;, &quot;handle&quot;: &quot;spanxsculpt™&quot;}]},{ &quot;title&quot;: &quot;Shop by Solution Area&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;shop-by-solution-area&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Tummy&quot;, &quot;url&quot;: &quot;/collections/tummy-shapewear&quot;, &quot;handle&quot;: &quot;tummy&quot;},{ &quot;title&quot;: &quot;Waist&quot;, &quot;url&quot;: &quot;/collections/waist-shapewear&quot;, &quot;handle&quot;: &quot;waist&quot;},{ &quot;title&quot;: &quot;Bust&quot;, &quot;url&quot;: &quot;/collections/bust-shapewear&quot;, &quot;handle&quot;: &quot;bust&quot;},{ &quot;title&quot;: &quot;Thighs &quot;, &quot;url&quot;: &quot;/collections/thighs-shapewear&quot;, &quot;handle&quot;: &quot;thighs&quot;},{ &quot;title&quot;: &quot;Butt&quot;, &quot;url&quot;: &quot;/collections/booty-shapewear&quot;, &quot;handle&quot;: &quot;butt&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/SYF_NavTile.jpg?v=1738103259&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/special-solutions&quot;, &quot;tile_1_heading&quot;: &quot;SPANXshape™\u2028Suit Your Fancy&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eShaping solutions for those\u2028very specific silhouettes.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Intimates&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-intimates&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/intimates&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Intimates&quot;, &quot;url&quot;: &quot;/collections/intimates&quot;, &quot;handle&quot;: &quot;all-intimates&quot;},{ &quot;title&quot;: &quot;Underwear&quot;, &quot;url&quot;: &quot;/collections/underwear&quot;, &quot;handle&quot;: &quot;underwear&quot;},{ &quot;title&quot;: &quot;Bras&quot;, &quot;url&quot;: &quot;/collections/bras&quot;, &quot;handle&quot;: &quot;bras&quot;},{ &quot;title&quot;: &quot;Shapewear&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;shapewear&quot;},{ &quot;title&quot;: &quot;Hosiery&quot;, &quot;url&quot;: &quot;/collections/hosiery&quot;, &quot;handle&quot;: &quot;hosiery&quot;},{ &quot;title&quot;: &quot;Best Sellers&quot;, &quot;url&quot;: &quot;/collections/bras-underwear-best-sellers&quot;, &quot;handle&quot;: &quot;best-sellers&quot;},{ &quot;title&quot;: &quot;Maternity&quot;, &quot;url&quot;: &quot;/collections/maternity-intimates&quot;, &quot;handle&quot;: &quot;maternity&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/intimates-sale&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/bras-underwear&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Underwear Packs&quot;, &quot;url&quot;: &quot;/collections/underwear-packs&quot;, &quot;handle&quot;: &quot;underwear-packs&quot;},{ &quot;title&quot;: &quot;Bundle &amp; Save Underwear&quot;, &quot;url&quot;: &quot;/collections/bundle-and-save-underwear&quot;, &quot;handle&quot;: &quot;bundle-save-underwear&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/0125_PANTYPARTYPROMO_SITE_US-CAN.gif?v=1737135531&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/bundle-and-save-underwear&quot;, &quot;tile_1_heading&quot;: &quot;Bundle \u0026 Save&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eStock up on ultra-comfy underwear that smoothes\u2028or shapes.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/Tshirt_Bra_Nav_Tile.png?v=1738014891&quot;, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: &quot;\/collections\/full-coverage-t-shirt&quot;, &quot;tile_2_heading&quot;: &quot;Full Coverage + T-Shirt Bras&quot;, &quot;tile_2_text&quot;: &quot;\u003cp\u003eEveryday support that provides max comfort and coverage with every wear.\u003c\/p\u003e&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/Top_Nav_Tile_Underwear_Packs.png?v=1739545510&quot;, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: &quot;\/collections\/fit-to-you-underwear&quot;, &quot;tile_3_heading&quot;: &quot;Fit-To-You Underwear&quot;, &quot;tile_3_text&quot;: &quot;\u003cp\u003eStretches up to 400%, so each one feels like a custom fit.\u003c\/p\u003e&quot;, },{ &quot;name&quot;: &quot;SALE&quot;, &quot;link&quot;: &quot;\/collections\/sale&quot;, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;&quot;, &quot;children&quot;:[], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: null, &quot;tile_1_heading&quot;: &quot;&quot;, &quot;tile_1_text&quot;: &quot;&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },]" :logged-in="false" customer-name="" support-link="/pages/help" support-text="Customer Support" promo-message="&lt;p&gt;&lt;a href=&quot;/pages/refer&quot; title=&quot;Refer&quot;&gt;GET $20 OFF&lt;/a&gt; - &lt;a href=&quot;/pages/refer&quot; title=&quot;Refer&quot;&gt;LEARN MORE&lt;/a&gt;&lt;/p&gt;":intl-toggle-settings="{ &quot;title&quot;: &quot;Choose your location&quot;, &quot;subtitle&quot;: &quot;Spanx ships to the following areas&quot;, &quot;modal_you_are_leaving&quot;: &quot;You’re leaving Spanx US&quot;, &quot;modal_are_you_sure_to_leave&quot;: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestically in their respective regions. If you leave Spanx CA and go to Spanx US, your shopping bag will not travel with you.&quot;, &quot;modal_continue_to_other_country&quot;: &quot;Continue to Spanx CA&quot;, &quot;modal_stay_in_this_page&quot;: &quot;No Thanks, I’ll Stay Here&quot;, &quot;drawer_selected_country_description&quot;: &quot;Your current selected location is &lt;span&gt;[CURRENT_LOCATION]&lt;/span&gt; and your order will be billed in &lt;span&gt;[CURRENCY_CODE].&lt;/span&gt;&quot;, &quot;split_countries_by_continent&quot;:true, &quot;drawer_country_confirmation_title&quot;: &quot;Are you sure you want to change your location?&quot;, &quot;drawer_double_country_confirmation_message&quot;: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestilcally in their respective regions. If you change sites, your shopping bag will not travel with you.&quot;, &quot;drawer_country_confirmation_staying&quot;: &quot;Stay on Spanx [CURRENT_COUNTRY_CODE]&quot;, &quot;drawer_country_confirmation_message_template&quot;: &quot;It looks like you’re in [CURRENT_COUNTRY] You are changing your shipping location to &lt;span&gt;[COUNTRY_SELECTED_NAME]&lt;/span&gt; and your order will be billed in &lt;span&gt;[COUNTRY_SELECTED_CURRENCY]&lt;/span&gt;. Your shopping cart will be emptied.&quot;, &quot;enable_coming_soon_list&quot;:false, &quot;country_coming_soon_list_label&quot;: &quot;Coming Soon&quot;, &quot;country_drawer_coming_soon_header&quot;: &quot;Coming soon to [country_name]&quot;, &quot;country_drawer_coming_soon_subtitle&quot;: &quot;Spanx isn&#39;t available to ship to [country_name] just yet, but we&#39;re coming soon! Fill out the form below to be the first to know when our products become available to you.&quot;, &quot;country_drawer_coming_soon_footer_link_text&quot;: &quot;Ship to another country&quot;, &quot;country_drawer_continue_shopping_text&quot;: &quot;Continue&quot;, &quot;country_drawer_confirm_country_text&quot;: &quot;Continue&quot;, &quot;country_drawer_coming_soon_confirmation_header&quot;: &quot;You’re on the List!&quot;, &quot;country_drawer_coming_soon_confirmation_subtitle&quot;: &quot;We’ll let you know when we start shipping to [country_name]. In the mean time, feel free to browse our US site and start building your wishlist!&quot;, &quot;country_waitlist_klaviyo_list_id&quot;: &quot;RFCuz9&quot;, &quot;klaviyo_site_id&quot;: &quot;RN8rMY&quot;, &quot;modal_content&quot;: { &quot;heading&quot;: &quot;You’re currently shopping on our United States site. We now have a Canadian site, too!&quot;, &quot;body&quot;:&quot;\u003cp\u003eVisit our new Canadian site to shop in Canadian currency, get duty-free purchases, and enjoy free standard shipping from our Canadian warehouse. \u003c\/p\u003e&quot;, &quot;cta_text&quot;: &quot;Shop Spanx.ca&quot;, &quot;footer_copy&quot;:&quot;\u003cp\u003e\u003ca href=\&quot;#\&quot; title=\&quot;#\&quot;\u003eNO THANKS, I&#39;LL SHOP \u0026 SHIP TO THE U.S.\u003c\/a\u003e\u003c\/p\u003e&quot;, &quot;icon_image&quot;:&quot;\/\/spanx.com\/cdn\/shop\/files\/CanadaLeafImage_220x.png?v=1652451648&quot;}, &quot;is_header&quot;:false, &quot;redirectingStateSettings&quot;: { &quot;delayInSecs&quot;: 4, &quot;lblTitle&quot;: &quot;Hang tight, we&#39;re taking you to Spanx [target_country_code]&quot;, &quot;lblBody&quot;: &quot;Your shipping location will be set to &lt;strong&gt;[target_country_name]&lt;/strong&gt; and your order will be billed in &lt;strong&gt;[target_country_currency]&lt;/strong&gt;.&quot;, &quot;lblCancelBtn&quot;: &quot;Cancel&quot;, &quot;preventVarsTranslations&quot;: false } }":intl-feature-flags="{ &quot;intlCountryListTranslationDisabled&quot;: false, &quot;intlVisibilityEnabled&quot;: false }" @open="$refs.headerSearch.closeSearch()"></mobile-navigation> </div> <country-drawer-wrapper :intl-toggle-settings="{ &quot;title&quot;: &quot;Choose your location&quot;, &quot;subtitle&quot;: &quot;Spanx ships to the following areas&quot;, &quot;modal_you_are_leaving&quot;: &quot;You’re leaving Spanx US&quot;, &quot;modal_are_you_sure_to_leave&quot;: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestically in their respective regions. If you leave Spanx CA and go to Spanx US, your shopping bag will not travel with you.&quot;, &quot;modal_continue_to_other_country&quot;: &quot;Continue to Spanx CA&quot;, &quot;modal_stay_in_this_page&quot;: &quot;No Thanks, I’ll Stay Here&quot;, &quot;drawer_selected_country_description&quot;: &quot;Your current selected location is &lt;span&gt;[CURRENT_LOCATION]&lt;/span&gt; and your order will be billed in &lt;span&gt;[CURRENCY_CODE].&lt;/span&gt;&quot;, &quot;split_countries_by_continent&quot;:true, &quot;drawer_country_confirmation_title&quot;: &quot;Are you sure you want to change your location?&quot;, &quot;drawer_double_country_confirmation_message&quot;: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestilcally in their respective regions. If you change sites, your shopping bag will not travel with you.&quot;, &quot;drawer_country_confirmation_staying&quot;: &quot;Stay on Spanx [CURRENT_COUNTRY_CODE]&quot;, &quot;drawer_country_confirmation_message_template&quot;: &quot;It looks like you’re in [CURRENT_COUNTRY] You are changing your shipping location to &lt;span&gt;[COUNTRY_SELECTED_NAME]&lt;/span&gt; and your order will be billed in &lt;span&gt;[COUNTRY_SELECTED_CURRENCY]&lt;/span&gt;. Your shopping cart will be emptied.&quot;, &quot;enable_coming_soon_list&quot;:false, &quot;country_coming_soon_list_label&quot;: &quot;Coming Soon&quot;, &quot;country_drawer_coming_soon_header&quot;: &quot;Coming soon to [country_name]&quot;, &quot;country_drawer_coming_soon_subtitle&quot;: &quot;Spanx isn&#39;t available to ship to [country_name] just yet, but we&#39;re coming soon! Fill out the form below to be the first to know when our products become available to you.&quot;, &quot;country_drawer_coming_soon_footer_link_text&quot;: &quot;Ship to another country&quot;, &quot;country_drawer_continue_shopping_text&quot;: &quot;Continue&quot;, &quot;country_drawer_confirm_country_text&quot;: &quot;Continue&quot;, &quot;country_drawer_coming_soon_confirmation_header&quot;: &quot;You’re on the List!&quot;, &quot;country_drawer_coming_soon_confirmation_subtitle&quot;: &quot;We’ll let you know when we start shipping to [country_name]. In the mean time, feel free to browse our US site and start building your wishlist!&quot;, &quot;country_waitlist_klaviyo_list_id&quot;: &quot;RFCuz9&quot;, &quot;klaviyo_site_id&quot;: &quot;RN8rMY&quot;, &quot;modal_content&quot;: { &quot;heading&quot;: &quot;You’re currently shopping on our United States site. We now have a Canadian site, too!&quot;, &quot;body&quot;:&quot;\u003cp\u003eVisit our new Canadian site to shop in Canadian currency, get duty-free purchases, and enjoy free standard shipping from our Canadian warehouse. \u003c\/p\u003e&quot;, &quot;cta_text&quot;: &quot;Shop Spanx.ca&quot;, &quot;footer_copy&quot;:&quot;\u003cp\u003e\u003ca href=\&quot;#\&quot; title=\&quot;#\&quot;\u003eNO THANKS, I&#39;LL SHOP \u0026 SHIP TO THE U.S.\u003c\/a\u003e\u003c\/p\u003e&quot;, &quot;icon_image&quot;:&quot;\/\/spanx.com\/cdn\/shop\/files\/CanadaLeafImage_220x.png?v=1652451648&quot;}, &quot;is_header&quot;:false, &quot;redirectingStateSettings&quot;: { &quot;delayInSecs&quot;: 4, &quot;lblTitle&quot;: &quot;Hang tight, we&#39;re taking you to Spanx [target_country_code]&quot;, &quot;lblBody&quot;: &quot;Your shipping location will be set to &lt;strong&gt;[target_country_name]&lt;/strong&gt; and your order will be billed in &lt;strong&gt;[target_country_currency]&lt;/strong&gt;.&quot;, &quot;lblCancelBtn&quot;: &quot;Cancel&quot;, &quot;preventVarsTranslations&quot;: false } }" :intl-feature-flags="{ &quot;intlCountryListTranslationDisabled&quot;: false, &quot;intlVisibilityEnabled&quot;: false }" ref="country_drawer_wrapper"> </country-drawer-wrapper> <div class="site-header__logo"> <div class="header-logo"> <h1 class="header-logo__heading"> <a class="header-logo__image u-no-link" href="/"><svg width="200" height="35" viewbox="0 0 1000 150" fill="#02081C" xmlns="http://www.w3.org/2000/svg"> <path d="M315.91,12.91c-5.33-3.39-11.62-5.82-18.85-7.27c-7.23-1.45-18.93-2.18-35.09-2.18h-77.42l-9.13,0 c-0.21,0.69-0.2,0.64-0.41,1.33c6.85,4.77,9.54,13.41,9.54,24.48v95.41c0,10.76-2.08,19.73-9.68,25.2c0.22,0.68,0.21,0.65,0.42,1.33 l47.62,0c0.21-0.69,0.2-0.65,0.41-1.34c-7.45-5.19-9.55-14.32-9.56-25.19V99.08h48.45c24.89,0,43.41-4.14,55.57-12.42 c12.16-8.28,18.24-20.7,18.24-37.27c0-7.84-1.74-14.83-5.21-20.97C327.34,22.28,322.37,17.11,315.91,12.91z M294.15,70.75 c-7.07,4.12-18.69,6.18-34.84,6.18h-45.55v-51.3h46.03c16.56,0,28.2,1.91,34.91,5.71c6.71,3.81,10.06,10.26,10.06,19.35 C304.76,59.95,301.22,66.63,294.15,70.75z M514.3,128.65L459.24,14.88c-2.16-4.44-2.56-7.51-0.73-10.31 c-0.28-0.5-0.34-0.62-0.62-1.12l-48.5,0c-0.29,0.48-0.37,0.61-0.65,1.08c1.67,2.92,1.43,6.05-0.17,9.57L350.41,129.2 c-4.26,7.76-8.77,15.13-14.44,20.75c0.25,0.6,0.27,0.64,0.52,1.25h45.71c0.25-0.6,0.27-0.65,0.53-1.24 c-5.32-5.79-5.26-14.13-2.17-20.93l10.05-21.21h83.2l10.16,20.85c3.4,6.95,5.06,14.34-1.4,21.29c0.25,0.59,0.27,0.65,0.53,1.24 h45.55c0.25-0.6,0.27-0.65,0.52-1.25C522.36,143,517.6,135.51,514.3,128.65L514.3,128.65z M401.11,85.64l30.52-64.39L463,85.64 H401.11z M132.66,85.75c4.24,6.18,6.36,13.23,6.36,21.15c0,14.79-6.45,26.44-19.33,34.97c-12.89,8.53-30.68,12.79-53.39,12.79 c-4.12,0-8.63-0.16-13.51-0.49c-4.89-0.32-10.16-0.85-15.82-1.58c-11.88-1.29-18.99-2.53-21.33-2.53c-1.05,0-2.14,0.14-3.27,0.42 c-0.92,0.23-1.94,0.61-3.07,1.13c-0.41-0.2-0.6-0.3-1.01-0.5l-7.93-33.43c0.47-0.39,0.54-0.45,1.01-0.84 c10.8,4.77,21.78,9.03,32.95,11.74c5.74,1.29,11.39,2.26,16.97,2.91c5.57,0.65,11.35,0.97,17.33,0.97c11.88,0,21.37-2,28.48-6 c7.11-4,10.67-9.27,10.67-15.82c0-6.79-3.23-12.08-9.7-15.88c-6.46-3.8-19.94-6.95-36.91-9.45c-20.04-2.91-36.71-7.92-46.48-15.03 C4.89,63.19,0,53.98,0,42.66C0,30.14,6.16,19.9,18.48,11.94C30.81,3.98,47.23,0,67.75,0c8.08,0,19.49,0.71,31.9,2.12 c12.4,1.41,22.58,3.84,26.52,3.88c2.77,0.03,6.3-0.58,8.17-0.94c0.37,0.44,0.46,0.54,0.83,0.97L124.4,35.17 c-0.4,0.16-0.6,0.24-1.01,0.4c-7.9-3.93-18.04-7.94-27.21-9.9c-9.45-2.02-21.07-3.62-31.33-3.62c-10.58,0-18.95,1.58-25.09,4.73 c-6.14,3.15-9.21,7.44-9.21,12.85c0,4.44,2.52,8.38,7.58,11.82c5.05,3.44,12.1,5.96,21.15,7.58l13.03,1.82 c18.83,2.75,34,6.04,42,9.88C122.3,74.56,128.42,79.57,132.66,85.75z M718.32,3.45c0.21,0.68,0.2,0.65,0.42,1.33 c-5.56,3.88-8.97,7.4-8.97,27.41h0V137.5h0c0,5.34,0.55,9.16,2.64,12.58c-0.28,0.5-0.34,0.61-0.62,1.12H665.9 c-0.28-0.5-0.34-0.61-0.62-1.11c1.58-2.53,1.14-4.88-0.68-7.64h0.01L587.6,24.08l1.89,100.57l0,0c0,0,0,0,0,0l0.07,3.59 c0.48,12.51,3.59,17.24,9.6,21.63c-0.22,0.67-0.21,0.65-0.43,1.32h-45.26c-0.21-0.68-0.2-0.65-0.42-1.33 c6.88-4.86,9.59-13.53,9.59-25.22h0V30.12h0c0-13.41-2.37-20.28-9.66-25.33c0.21-0.68,0.2-0.65,0.42-1.33h55.8 c0.28,0.49,0.35,0.61,0.63,1.1c-1.01,1.62-0.61,3.86,1.02,6.55l73.09,115.93l-0.42-94.83l0,0c0-17.59-3.9-23.52-9.56-27.4 c0.21-0.69,0.2-0.65,0.41-1.34L718.32,3.45z M928.62,149.86c-0.21,0.7-0.19,0.64-0.4,1.34h-2.93h-50.61 c-0.24-0.64-0.25-0.66-0.49-1.3c6.72-5.57,1.23-14.1-7.74-24.35h0l-29.17-33.21l-30.85,33.21h0c-9.94,10.71-15.21,19.12-8.43,24.34 c-0.23,0.66-0.22,0.65-0.45,1.31h-52.36c-0.2-0.71-0.18-0.64-0.38-1.35c10.45-6.35,20.85-15.42,28-23.01l48.97-52.14l-42.32-48.17 c-9-10.3-19.15-17.88-27.83-21.67c0.16-0.78,0.13-0.62,0.29-1.4l56.18,0c0.23,0.64,0.24,0.65,0.47,1.29 c-5.96,5.19-2.28,10.71,7.37,21.72l24.68,28.15l28.82-30.69h0c6.36-6.75,10.5-14.59,5.54-19.22c0.25-0.61,0.26-0.65,0.51-1.26 l45.86,0c0.22,0.68,0.21,0.65,0.43,1.32c-6.1,4.36-12.54,10.3-19.21,17.29l-46.56,50.12l42.65,48.64h0.02 C909.74,133.52,920.14,144.37,928.62,149.86z M932.32,16.09c0-8.38,6.11-13.97,13.84-13.97c7.67,0,13.84,5.59,13.84,13.97 s-6.17,13.84-13.84,13.84C938.42,29.93,932.32,24.47,932.32,16.09z M946.16,27.79c6.3,0,11.57-4.35,11.57-11.7 c0-7.34-5.26-11.83-11.57-11.83c-6.37,0-11.5,4.48-11.5,11.83C934.66,23.43,939.79,27.79,946.16,27.79z M941.8,9.4h5.13 c2.34,0,4.42,1.23,4.42,3.77c0,1.75-1.04,3.05-2.66,3.44l3.12,5.2h-2.73l-2.79-5.07h-2.27v5.07h-2.21V9.4z M946.81,14.98 c1.1,0,2.08-0.45,2.08-1.75c0-1.23-0.97-1.82-2.08-1.82h-2.79v3.57H946.81z" fill="#02081C"></path> </svg> </a> </h1> </div> </div> <div class="site-header__navigation"> <primary-navigation :menu-items="[{ &quot;name&quot;: &quot;New&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-new&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop All New Arrivals&quot;, &quot;url&quot;: &quot;/collections/new-arrivals&quot;, &quot;handle&quot;: &quot;shop-all-new-arrivals&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Just In&quot;, &quot;url&quot;: &quot;/collections/new-arrivals&quot;, &quot;handle&quot;: &quot;just-in&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/new-arrivals&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;ReDefine Denim&quot;, &quot;url&quot;: &quot;/pages/redefine-denim&quot;, &quot;handle&quot;: &quot;redefine-denim&quot;},{ &quot;title&quot;: &quot;New? Start Here.&quot;, &quot;url&quot;: &quot;/collections/first-timer-faves&quot;, &quot;handle&quot;: &quot;new-start-here&quot;},{ &quot;title&quot;: &quot;The Color Shop&quot;, &quot;url&quot;: &quot;/collections/the-color-shop&quot;, &quot;handle&quot;: &quot;the-color-shop&quot;},{ &quot;title&quot;: &quot;The Ponte Edit&quot;, &quot;url&quot;: &quot;/collections/the-ponte-edit&quot;, &quot;handle&quot;: &quot;the-ponte-edit&quot;},{ &quot;title&quot;: &quot;Invisible Shapewear&quot;, &quot;url&quot;: &quot;/collections/invisible-shaping&quot;, &quot;handle&quot;: &quot;invisible-shapewear&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/New_Colors_BB_Top_Nav.jpg?v=1739275884&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/the-active-edit&quot;, &quot;tile_1_heading&quot;: &quot;These Set The Tone&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003ePerk up your routine in limited-edition shades of sweat-wicking, breathable Booty Boost® styles.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/top_nav_373d1de0-9471-4e78-9b8e-64da1fc5575a.jpg?v=1739454704&quot;, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: &quot;\/collections\/spanxsculpt-jeans&quot;, &quot;tile_2_heading&quot;: &quot;SPANXsculpt™ ReDefine Denim&quot;, &quot;tile_2_text&quot;: &quot;\u003cp\u003eMeet SPANXsculpt™ ReDefine—our first sculpting denim. Designed with innovative fibers, these jeans provide targeted sculpting exactly where you need it.\u003c\/p\u003e&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Best Sellers&quot;, &quot;link&quot;: &quot;\/collections\/best-sellers&quot;, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;&quot;, &quot;children&quot;:[], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: null, &quot;tile_1_heading&quot;: &quot;&quot;, &quot;tile_1_text&quot;: &quot;&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Clothing&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-clothing&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Clothing&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;all-clothing&quot;},{ &quot;title&quot;: &quot;Pants&quot;, &quot;url&quot;: &quot;/collections/pants&quot;, &quot;handle&quot;: &quot;pants&quot;},{ &quot;title&quot;: &quot;Jeans&quot;, &quot;url&quot;: &quot;/collections/jeans&quot;, &quot;handle&quot;: &quot;jeans&quot;},{ &quot;title&quot;: &quot;Leggings&quot;, &quot;url&quot;: &quot;/collections/leggings&quot;, &quot;handle&quot;: &quot;leggings&quot;},{ &quot;title&quot;: &quot;Tops&quot;, &quot;url&quot;: &quot;/collections/tops&quot;, &quot;handle&quot;: &quot;tops&quot;},{ &quot;title&quot;: &quot;Outerwear + Jackets&quot;, &quot;url&quot;: &quot;/collections/outerwear-jackets&quot;, &quot;handle&quot;: &quot;outerwear-jackets&quot;},{ &quot;title&quot;: &quot;Matching Sets&quot;, &quot;url&quot;: &quot;/collections/matching-sets&quot;, &quot;handle&quot;: &quot;matching-sets&quot;},{ &quot;title&quot;: &quot;Loungewear&quot;, &quot;url&quot;: &quot;/collections/luxury-loungewear&quot;, &quot;handle&quot;: &quot;loungewear&quot;},{ &quot;title&quot;: &quot;Dresses + Jumpsuits&quot;, &quot;url&quot;: &quot;/collections/dresses-jumpsuits&quot;, &quot;handle&quot;: &quot;dresses-jumpsuits&quot;},{ &quot;title&quot;: &quot;Skorts&quot;, &quot;url&quot;: &quot;/collections/shorts-skirts&quot;, &quot;handle&quot;: &quot;skorts&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/sale?category=Clothing&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Shop by Occasion&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;shop-by-occasion&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Workwear&quot;, &quot;url&quot;: &quot;/collections/workwear&quot;, &quot;handle&quot;: &quot;workwear&quot;},{ &quot;title&quot;: &quot;Weekend Wear&quot;, &quot;url&quot;: &quot;/collections/weekend-wear&quot;, &quot;handle&quot;: &quot;weekend-wear&quot;},{ &quot;title&quot;: &quot;The Date Night Shop&quot;, &quot;url&quot;: &quot;/collections/date-night&quot;, &quot;handle&quot;: &quot;the-date-night-shop&quot;}]},{ &quot;title&quot;: &quot;Shop by Collection&quot;, &quot;url&quot;: &quot;/collections/clothing&quot;, &quot;handle&quot;: &quot;shop-by-collection&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;SPANXshape™ Jeans&quot;, &quot;url&quot;: &quot;/collections/spanxshape-jeans&quot;, &quot;handle&quot;: &quot;spanxshape™-jeans&quot;},{ &quot;title&quot;: &quot;SPANXsculpt™ Jeans&quot;, &quot;url&quot;: &quot;/collections/spanxsculpt-jeans&quot;, &quot;handle&quot;: &quot;spanxsculpt™-jeans&quot;},{ &quot;title&quot;: &quot;SPANXsmooth™ PerfectFit Pants&quot;, &quot;url&quot;: &quot;/collections/spanxsmooth-perfectfit-pants&quot;, &quot;handle&quot;: &quot;spanxsmooth™-perfectfit-pants&quot;},{ &quot;title&quot;: &quot;AirEssentials &quot;, &quot;url&quot;: &quot;/collections/airessentials&quot;, &quot;handle&quot;: &quot;airessentials&quot;},{ &quot;title&quot;: &quot;Ponte&quot;, &quot;url&quot;: &quot;/collections/the-ponte-edit&quot;, &quot;handle&quot;: &quot;ponte&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_New-Stretch-Twill-Pants_SITE_TopNavTIle_US_CAN.gif?v=1739449007&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/pants&quot;, &quot;tile_1_heading&quot;: &quot;SPANXsupersmooth™ Stretch Twill&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eSame built-in smoothing, new zipper fly, hidden pockets, and fresh shades.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Jeans&quot;, &quot;link&quot;: &quot;\/collections\/jeans&quot;, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;&quot;, &quot;children&quot;:[], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: null, &quot;tile_1_heading&quot;: &quot;&quot;, &quot;tile_1_text&quot;: &quot;&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Active&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-active&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/active&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Activewear&quot;, &quot;url&quot;: &quot;/collections/active&quot;, &quot;handle&quot;: &quot;all-activewear&quot;},{ &quot;title&quot;: &quot;Matching Sets&quot;, &quot;url&quot;: &quot;/collections/matching-sets&quot;, &quot;handle&quot;: &quot;matching-sets&quot;},{ &quot;title&quot;: &quot;Leggings&quot;, &quot;url&quot;: &quot;/collections/active-leggings&quot;, &quot;handle&quot;: &quot;leggings&quot;},{ &quot;title&quot;: &quot;Tops&quot;, &quot;url&quot;: &quot;/collections/active-tanks-tops&quot;, &quot;handle&quot;: &quot;tops&quot;},{ &quot;title&quot;: &quot;Pants&quot;, &quot;url&quot;: &quot;/collections/active-pants&quot;, &quot;handle&quot;: &quot;pants&quot;},{ &quot;title&quot;: &quot;Sports Bras &quot;, &quot;url&quot;: &quot;/collections/sports-bras&quot;, &quot;handle&quot;: &quot;sports-bras&quot;},{ &quot;title&quot;: &quot;Dresses + Jumpsuits&quot;, &quot;url&quot;: &quot;/collections/active-dresses-jumpsuits&quot;, &quot;handle&quot;: &quot;dresses-jumpsuits&quot;},{ &quot;title&quot;: &quot;Shorts + Skorts&quot;, &quot;url&quot;: &quot;/collections/shorts-skorts&quot;, &quot;handle&quot;: &quot;shorts-skorts&quot;},{ &quot;title&quot;: &quot;Swim&quot;, &quot;url&quot;: &quot;/collections/swim&quot;, &quot;handle&quot;: &quot;swim&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/active-swim-sale&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/active&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;SPANXshape™ Booty Boost®&quot;, &quot;url&quot;: &quot;/collections/spanxshape-booty-boost-active&quot;, &quot;handle&quot;: &quot;spanxshape™-booty-boost®&quot;},{ &quot;title&quot;: &quot;SPANXsmooth™ OnForm&quot;, &quot;url&quot;: &quot;/collections/spanxsmooth-onform&quot;, &quot;handle&quot;: &quot;spanxsmooth™-onform&quot;},{ &quot;title&quot;: &quot;The Active Edit&quot;, &quot;url&quot;: &quot;/collections/the-active-edit&quot;, &quot;handle&quot;: &quot;the-active-edit&quot;},{ &quot;title&quot;: &quot;The Color Shop&quot;, &quot;url&quot;: &quot;/collections/the-color-shop&quot;, &quot;handle&quot;: &quot;the-color-shop&quot;},{ &quot;title&quot;: &quot;New This Month&quot;, &quot;url&quot;: &quot;/collections/active-new-arrivals&quot;, &quot;handle&quot;: &quot;new-this-month&quot;}]},{ &quot;title&quot;: &quot;Shop by Color&quot;, &quot;url&quot;: &quot;/collections/the-color-shop&quot;, &quot;handle&quot;: &quot;shop-by-color&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Black&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-black&quot;, &quot;handle&quot;: &quot;black&quot;},{ &quot;title&quot;: &quot;Red&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-spanx-red&quot;, &quot;handle&quot;: &quot;red&quot;},{ &quot;title&quot;: &quot;Blue&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-blue?color=Blue&quot;, &quot;handle&quot;: &quot;blue&quot;},{ &quot;title&quot;: &quot;Purple&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-purple?color=Purple&quot;, &quot;handle&quot;: &quot;purple&quot;},{ &quot;title&quot;: &quot;Green&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-green?color=Green&quot;, &quot;handle&quot;: &quot;green&quot;},{ &quot;title&quot;: &quot;Brown&quot;, &quot;url&quot;: &quot;https://spanx.com/collections/the-color-shop-neutrals?color=Brown&quot;, &quot;handle&quot;: &quot;brown&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_GET-MOVING-DRESSES_SITE_Navigation-Tile_US_CAN.gif?v=1738860744&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/get-moving&quot;, &quot;tile_1_heading&quot;: &quot;NEW Get Moving High Neck Dress&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eOur newest, one-and-done style that shapes and supports, with a bonus built-in Booty Boost®.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Shapewear&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-shapewear&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Shapewear&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;all-shapewear&quot;},{ &quot;title&quot;: &quot;Bodysuits&quot;, &quot;url&quot;: &quot;/collections/shapewear-bodysuits&quot;, &quot;handle&quot;: &quot;bodysuits&quot;},{ &quot;title&quot;: &quot;Underwear&quot;, &quot;url&quot;: &quot;/collections/shapewear-underwear&quot;, &quot;handle&quot;: &quot;underwear&quot;},{ &quot;title&quot;: &quot;Shorts&quot;, &quot;url&quot;: &quot;/collections/shapewear-shorts&quot;, &quot;handle&quot;: &quot;shorts&quot;},{ &quot;title&quot;: &quot;Hosiery&quot;, &quot;url&quot;: &quot;/collections/hosiery&quot;, &quot;handle&quot;: &quot;hosiery&quot;},{ &quot;title&quot;: &quot;Tops&quot;, &quot;url&quot;: &quot;/collections/shapewear-tanks-camis&quot;, &quot;handle&quot;: &quot;tops&quot;},{ &quot;title&quot;: &quot;Footless + Capris &quot;, &quot;url&quot;: &quot;/collections/footless-capris&quot;, &quot;handle&quot;: &quot;footless-capris&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/shapewear-sale&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Best Sellers&quot;, &quot;url&quot;: &quot;/collections/shapewear-best-sellers&quot;, &quot;handle&quot;: &quot;best-sellers&quot;},{ &quot;title&quot;: &quot;The Shapewear Guide&quot;, &quot;url&quot;: &quot;/pages/the-original-shapewear-innovators&quot;, &quot;handle&quot;: &quot;the-shapewear-guide&quot;},{ &quot;title&quot;: &quot;The Wedding Shop&quot;, &quot;url&quot;: &quot;/collections/wedding-shapewear&quot;, &quot;handle&quot;: &quot;the-wedding-shop&quot;},{ &quot;title&quot;: &quot;The Petite Shop&quot;, &quot;url&quot;: &quot;/collections/petite-shapewear&quot;, &quot;handle&quot;: &quot;the-petite-shop&quot;},{ &quot;title&quot;: &quot;Maternity&quot;, &quot;url&quot;: &quot;/collections/maternity-intimates&quot;, &quot;handle&quot;: &quot;maternity&quot;}]},{ &quot;title&quot;: &quot;Shop by Compression&quot;, &quot;url&quot;: &quot;/collections/spanxeffect-shapewear&quot;, &quot;handle&quot;: &quot;shop-by-compression&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;SPANXsmooth™&quot;, &quot;url&quot;: &quot;/collections/spanxsmooth-shapewear&quot;, &quot;handle&quot;: &quot;spanxsmooth™&quot;},{ &quot;title&quot;: &quot;SPANXshape™&quot;, &quot;url&quot;: &quot;/collections/spanxshape-shapewear&quot;, &quot;handle&quot;: &quot;spanxshape™&quot;},{ &quot;title&quot;: &quot;SPANXsculpt™&quot;, &quot;url&quot;: &quot;/collections/spanxsculpt-shapewear&quot;, &quot;handle&quot;: &quot;spanxsculpt™&quot;}]},{ &quot;title&quot;: &quot;Shop by Solution Area&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;shop-by-solution-area&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Tummy&quot;, &quot;url&quot;: &quot;/collections/tummy-shapewear&quot;, &quot;handle&quot;: &quot;tummy&quot;},{ &quot;title&quot;: &quot;Waist&quot;, &quot;url&quot;: &quot;/collections/waist-shapewear&quot;, &quot;handle&quot;: &quot;waist&quot;},{ &quot;title&quot;: &quot;Bust&quot;, &quot;url&quot;: &quot;/collections/bust-shapewear&quot;, &quot;handle&quot;: &quot;bust&quot;},{ &quot;title&quot;: &quot;Thighs &quot;, &quot;url&quot;: &quot;/collections/thighs-shapewear&quot;, &quot;handle&quot;: &quot;thighs&quot;},{ &quot;title&quot;: &quot;Butt&quot;, &quot;url&quot;: &quot;/collections/booty-shapewear&quot;, &quot;handle&quot;: &quot;butt&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/SYF_NavTile.jpg?v=1738103259&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/special-solutions&quot;, &quot;tile_1_heading&quot;: &quot;SPANXshape™\u2028Suit Your Fancy&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eShaping solutions for those\u2028very specific silhouettes.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },{ &quot;name&quot;: &quot;Intimates&quot;, &quot;link&quot;: null, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;2023-nav-intimates&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Shop by Category&quot;, &quot;url&quot;: &quot;/collections/intimates&quot;, &quot;handle&quot;: &quot;shop-by-category&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;All Intimates&quot;, &quot;url&quot;: &quot;/collections/intimates&quot;, &quot;handle&quot;: &quot;all-intimates&quot;},{ &quot;title&quot;: &quot;Underwear&quot;, &quot;url&quot;: &quot;/collections/underwear&quot;, &quot;handle&quot;: &quot;underwear&quot;},{ &quot;title&quot;: &quot;Bras&quot;, &quot;url&quot;: &quot;/collections/bras&quot;, &quot;handle&quot;: &quot;bras&quot;},{ &quot;title&quot;: &quot;Shapewear&quot;, &quot;url&quot;: &quot;/collections/shapewear&quot;, &quot;handle&quot;: &quot;shapewear&quot;},{ &quot;title&quot;: &quot;Hosiery&quot;, &quot;url&quot;: &quot;/collections/hosiery&quot;, &quot;handle&quot;: &quot;hosiery&quot;},{ &quot;title&quot;: &quot;Best Sellers&quot;, &quot;url&quot;: &quot;/collections/bras-underwear-best-sellers&quot;, &quot;handle&quot;: &quot;best-sellers&quot;},{ &quot;title&quot;: &quot;Maternity&quot;, &quot;url&quot;: &quot;/collections/maternity-intimates&quot;, &quot;handle&quot;: &quot;maternity&quot;},{ &quot;title&quot;: &quot;Sale&quot;, &quot;url&quot;: &quot;/collections/intimates-sale&quot;, &quot;handle&quot;: &quot;sale&quot;}]},{ &quot;title&quot;: &quot;Featured&quot;, &quot;url&quot;: &quot;/collections/bras-underwear&quot;, &quot;handle&quot;: &quot;featured&quot;, &quot;children&quot;:[{ &quot;title&quot;: &quot;Underwear Packs&quot;, &quot;url&quot;: &quot;/collections/underwear-packs&quot;, &quot;handle&quot;: &quot;underwear-packs&quot;},{ &quot;title&quot;: &quot;Bundle &amp; Save Underwear&quot;, &quot;url&quot;: &quot;/collections/bundle-and-save-underwear&quot;, &quot;handle&quot;: &quot;bundle-save-underwear&quot;}]}], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/0125_PANTYPARTYPROMO_SITE_US-CAN.gif?v=1737135531&quot;, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: &quot;\/collections\/bundle-and-save-underwear&quot;, &quot;tile_1_heading&quot;: &quot;Bundle \u0026 Save&quot;, &quot;tile_1_text&quot;: &quot;\u003cp\u003eStock up on ultra-comfy underwear that smoothes\u2028or shapes.\u003c\/p\u003e&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/Tshirt_Bra_Nav_Tile.png?v=1738014891&quot;, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: &quot;\/collections\/full-coverage-t-shirt&quot;, &quot;tile_2_heading&quot;: &quot;Full Coverage + T-Shirt Bras&quot;, &quot;tile_2_text&quot;: &quot;\u003cp\u003eEveryday support that provides max comfort and coverage with every wear.\u003c\/p\u003e&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: &quot;\/\/spanx.com\/cdn\/shop\/files\/Top_Nav_Tile_Underwear_Packs.png?v=1739545510&quot;, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: &quot;\/collections\/fit-to-you-underwear&quot;, &quot;tile_3_heading&quot;: &quot;Fit-To-You Underwear&quot;, &quot;tile_3_text&quot;: &quot;\u003cp\u003eStretches up to 400%, so each one feels like a custom fit.\u003c\/p\u003e&quot;, },{ &quot;name&quot;: &quot;SALE&quot;, &quot;link&quot;: &quot;\/collections\/sale&quot;, &quot;her_history_toggle&quot;: false, &quot;text_content_toggle&quot;: null, &quot;text_content_heading&quot;: null, &quot;text_content_body&quot;: null, &quot;text_content_cta_url&quot;: null, &quot;text_content_cta_text&quot;: null, &quot;link_list&quot;: &quot;&quot;, &quot;children&quot;:[], &quot;bottom_banner_heading&quot;: &quot;&quot;, &quot;bottom_banner_items&quot;:[], &quot;tile_1_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_1_link&quot;: null, &quot;tile_1_heading&quot;: &quot;&quot;, &quot;tile_1_text&quot;: &quot;&quot;, &quot;tile_2_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_2_link&quot;: null, &quot;tile_2_heading&quot;: &quot;&quot;, &quot;tile_2_text&quot;: &quot;&quot;, &quot;tile_3_image&quot;: { &quot;src&quot;: null, &quot;alt&quot;: null, }, &quot;tile_3_link&quot;: null, &quot;tile_3_heading&quot;: &quot;&quot;, &quot;tile_3_text&quot;: &quot;&quot;, },]" customer-name=""></primary-navigation> </div> <div class="site-header__utility-nav"> <ul class="utility-nav"> <li class="utility-nav__link utility-nav__link--search header-icon"> <header-search ref="headerSearch" no-results-text="" no-results-link="" no-image-src="//spanx.com/cdn/shopifycloud/shopify/assets/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif" :sitewide-sale-enabled="false" :exposed-sale-variants="[39774335631571,39774335664339,39774335697107,39774335729875,39774335762643,39774335795411,39774335828179,39774335860947,39774335893715,39774335926483,39774335959251,39774335992019,39774336024787,39774336057555,39774336090323,39774336123091,39774336155859,39774336188627,39774336221395,39774336254163,39774336286931,39774336319699,39774336352467,39774336385235,48675754279123,48675754311891,48675754344659,48675754377427,48675754410195,48675754442963,48675754475731,48675754508499,43016375632083,43016375664851,43016375697619,43016375730387,43016375763155,43016375795923,43016375828691,43016375861459,43014976504019,43014976536787,43014976569555,43014976602323,43014976635091,43014976667859,43014976700627,43014976733395,43016354824403,43016354857171,43016354889939,43016354922707,43016354955475,43016354988243,43016355021011,43016355053779,43016354562259,43016354595027,43016354627795,43016354660563,43016354693331,43016354726099,43016354758867,43016354791635,43016354300115,43016354332883,43016354365651,43016354398419,43016354431187,43016354463955,43016354496723,43016354529491,43015298973907,43015299006675,43015299039443,43015299072211,43015299104979,43015299137747,43015299170515,43015299203283,48675846226131,48675846258899,48675846291667,48675846324435,48675846357203,48675846389971,48675846422739,48675846455507,43015511769299,43015511802067,43015511834835,43015511867603,43015511900371,43015511933139,43015511965907,43015511998675,43015298711763,43015298744531,43015298777299,43015298810067,43015298842835,43015298875603,43015298908371,43015298941139,43016082817235,43016082850003,43016082882771,43016082915539,43016082948307,43016082981075,43016083013843,43016083046611,48675325771987,48675325804755,48675325837523,48675325870291,48675325903059,48675325935827,48675325968595,48675326001363,48675855401171,48675855433939,48675855466707,48675855499475,48675855532243,48675855565011,48675855597779,48675855630547,43016082292947,43016082325715,43016082358483,43016082391251,43016082424019,43016082456787,43016082489555,43016082522323,43016091467987,43016091500755,43016091533523,43016091566291,43016091599059,43016091631827,43016091664595,43016091697363,43016083079379,43016083112147,43016083144915,43016083177683,43016083210451,43016083243219,43016083275987,43016083308755,48675827351763,48675827384531,48675827417299,48675827450067,48675827482835,48675827515603,48675827548371,48675827581139,43014364233939,43014364102867,43014364070099,43014364004563,43014364201171,43014364135635,43014364168403,43014364037331,43014364496083,43014364365011,43014364332243,43014364266707,43014364463315,43014364397779,43014364430547,43014364299475,43014363971795,43014363840723,43014363807955,43014363742419,43014363939027,43014363873491,43014363906259,43014363775187,43016088846547,43016088879315,43016088912083,43016088944851,43016088977619,43016089010387,43016089043155,43016089075923,43016089108691,43016089141459,43016089174227,43016089206995,43016089239763,43016089272531,43016089305299,43016089338067,43016089370835,43016089403603,43016089436371,43016089469139,43016089501907,43016089534675,43016089567443,43016089600211,43014905266387,43014905299155,43014905331923,43014905364691,43014905397459,43014905430227,43014905462995,43014905495763,43014905528531,43014905561299,43014905594067,43014905626835,43014905659603,43014905692371,43014905725139,43014905757907,43014905790675,43014905823443,43014905856211,43014905888979,43014905921747,43014905954515,43014905987283,43014906020051,48675359064275,48675359097043,48675359129811,48675359162579,48675359195347,48675359228115,48675359260883,48675359293651,48675359326419,48675359359187,48675359391955,48675359424723,48675359457491,48675359490259,48675359523027,48675359555795,48675359588563,48675359621331,48675359654099,48675359686867,48675359719635,48675359752403,48675359785171,48675359817939,43016355086547,43016355119315,43016355152083,43016355184851,43016355217619,43016355250387,43016355283155,43016355315923,43016355610835,43016355643603,43016355676371,43016355709139,43016355741907,43016355774675,43016355807443,43016355840211,43016355872979,43016355905747,43016355938515,43016355971283,43016356004051,43016356036819,43016356069587,43016356102355,43016355348691,43016355381459,43016355414227,43016355446995,43016355479763,43016355512531,43016355545299,43016355578067,43015029883091,43015029915859,43015029948627,43015029981395,43015030014163,43015030046931,43015030079699,43015030112467,43015030145235,43015030178003,43015030210771,43015030243539,43015030276307,43015030309075,43015030341843,43015030374611,43015030407379,43015030440147,43015030472915,43015030505683,43015030538451,43015030571219,43015030603987,43015030636755,43015054000339,43015054033107,43015054065875,43015054098643,43015054131411,43015054164179,43015054196947,43015054229715,43015054262483,43015054295251,43015054328019,43015054360787,43015054393555,43015054426323,43015054459091,43015054491859,48675737141459,48675737174227,48675737206995,48675737239763,48675737272531,48675737305299,48675737338067,48675737370835,43016025637075,43016025669843,43016025702611,43016025735379,43016025768147,43016025800915,43016025833683,43016025866451,43016025899219,43016025931987,43016025964755,43016025997523,43016026030291,43016026063059,43016026095827,43016026128595,43016026161363,43016026194131,43016026226899,43016026259667,43016026292435,43016026325203,43016026357971,43016026390739,48675725934803,48675725967571,48675726000339,48675726033107,48675726065875,48675726098643,48675726131411,48675726164179,48675725672659,48675725705427,48675725738195,48675725770963,48675725803731,48675725836499,48675725869267,48675725902035,48675833381075,48675833413843,48675833446611,48675833479379,48675833512147,48675833544915,48675833577683,48675833610451,48675763454163,48675763486931,48675763519699,48675763552467,48675763585235,48675763618003,48675763650771,48675763683539,43014369509587,43014369378515,43014369476819,43014369444051,43014369345747,43014369411283,43014369542355,43014369312979,43014368985299,43014368854227,43014368952531,43014368919763,43014368821459,43014368886995,43014369018067,43014368788691,43015220068563,43015220101331,43015220134099,43015220166867,43015220199635,43015220232403,43015220265171,43015220297939,48675827876051,48675827908819,48675827941587,48675827974355,48675828007123,48675828039891,48675828072659,48675828105427,48675828138195,48675828170963,48675828203731,48675828236499,48675828269267,48675828302035,48675828334803,48675828367571,48675828400339,48675828433107,48675828465875,48675828498643,48675828531411,48675828564179,48675828596947,48675828629715,48675859202259,48675859235027,48675859267795,48675859300563,48675859333331,48675859366099,48675859398867,48675859431635,48675859464403,48675859497171,48675859529939,48675859562707,48675859595475,48675859628243,48675859661011,48675859693779,48675859726547,48675859759315,48675859792083,48675859824851,48675859857619,48675859890387,48675859923155,48675859955923,48675314434259,48675314467027,48675314499795,48675314532563,48675314565331,48675314598099,48675314630867,48675314663635,48675314172115,48675314204883,48675314237651,48675314270419,48675314303187,48675314335955,48675314368723,48675314401491,48677377573075,48677377605843,48677377638611,48677377671379,48677377704147,48677377736915,48677377769683,48677377802451,48677377835219,48677377867987,48677377900755,48677377933523,48677377966291,48677377999059,48677378031827,48677378064595,48677378097363,48677378130131,48677378162899,48677378195667,48677378228435,48677378261203,48677378293971,48677378326739,48677376786643,48677376819411,48677376852179,48677376884947,48677376917715,48677376950483,48677376983251,48677377016019,48677377048787,48677377081555,48677377114323,48677377147091,48677377179859,48677377212627,48677377245395,48677377278163,48677377310931,48677377343699,48677377376467,48677377409235,48677377442003,48677377474771,48677377507539,48677377540307,48675303162067,48675303194835,48675303227603,48675303260371,48675303293139,48675303325907,48675303358675,48675303391443,48675303424211,48675303456979,48675303489747,48675303522515,48675303555283,48675303588051,48675303620819,48675303653587,48675303686355,48675303719123,48675303751891,48675303784659,48675303817427,48675303850195,48675303882963,48675303915731,43016018034899,43016018067667,43016018100435,43016018133203,43016018165971,43016018198739,43016018231507,43016018264275,43016018297043,43016018329811,43016018362579,43016018395347,43016018428115,43016018460883,43016018493651,43016018526419,43016018559187,43016018591955,43016018624723,43016018657491,43016018690259,43016018723027,43016018755795,43016018788563,43015487914195,43015487946963,43015487979731,43015488012499,43015488045267,43015488078035,43015488110803,43015488143571,43015488176339,43015488209107,43015488241875,43015488274643,43015488307411,43015488340179,43015488372947,43015488405715,43015488438483,43015488471251,43015488504019,43015488536787,43015488569555,43015488602323,43015488635091,43015488667859,48675854352595,48675854385363,48675854418131,48675854450899,48675854483667,48675854516435,48675854549203,48675854581971,48675854614739,48675854647507,48675854680275,48675854713043,48675854745811,48675854778579,48675854811347,48675854844115,48675854876883,48675854909651,48675854942419,48675854975187,48675855007955,48675855040723,48675855073491,48675855106259,43016047493331,43016047526099,43016047558867,43016047591635,43016047624403,43016047657171,43016047689939,43016047722707,43015252115667,43015252148435,43015252181203,43015252213971,43015252246739,43015252279507,43015252312275,43015252345043,48675434791123,48675434823891,48675434856659,48675434889427,48675434922195,48675434954963,48675434987731,48675435020499,48675865624787,48675865657555,48675865690323,48675865723091,48675865755859,48675865788627,48675865821395,48675865854163,48675865886931,48675865919699,48675865952467,48675865985235,48675866018003,48675866050771,48675866083539,48675866116307,48675866149075,48675866181843,48675866214611,48675866247379,48675866280147,48675866312915,48675866345683,48675866378451,43014618546387,43014618611923,43014618480851,43014618513619,43014618448083,43014618579155,43014618382547,43014618415315,48675736879315,48675736912083,48675736944851,48675736977619,48675737010387,48675737043155,48675737075923,48675737108691,48675724624083,48675724656851,48675724689619,48675724722387,48675724755155,48675724787923,48675724820691,48675724853459,43016083341523,43016083374291,43016083407059,43016083439827,43016083472595,43016083505363,43016083538131,43016083570899,43016083603667,43016083636435,43016083669203,43016083701971,43016083734739,43016083767507,43016083800275,43016083833043,48675864314067,48675864346835,48675864379603,48675864412371,48675864445139,48675864477907,48675864510675,48675864543443,48676448993491,48676449026259,48676449059027,48676449091795,48676449124563,48676449157331,48676449190099,48676449222867,48676449255635,48676449288403,48676449321171,48676449353939,48676449386707,48676449419475,48676449452243,48676449485011,48676449517779,48676449550547,48676449583315,48676449616083,48676449648851,48676449681619,48676449714387,48676449747155,48675726983379,48675727016147,48675727048915,48675727081683,48675727114451,48675727147219,48675727179987,48675727212755,48675726459091,48675726491859,48675726524627,48675726557395,48675726590163,48675726622931,48675726655699,48675726688467,48676514070739,48676514103507,48676514136275,48676514169043,48676514201811,48676514234579,48676514267347,48676514300115,48676481597651,48676481630419,48676481663187,48676481695955,48676481728723,48676481761491,48676481794259,48676481827027,48675364045011,48675364077779,48675364110547,48675364143315,48675364176083,48675364208851,48675364241619,48675364274387,48675364307155,48675364339923,48675364372691,48675364405459,48675364438227,48675364470995,48675364503763,48675364536531,48675364569299,48675364602067,48675364634835,48675364667603,48675364700371,48675364733139,48675364765907,48675364798675,48675364831443,48675364864211,48675364896979,48675364929747,48675364962515,48675364995283,48675365028051,48675365060819,48675365093587,48675365126355,48675365159123,48675365191891,48675365224659,48675365257427,48675365290195,48675365322963,48675365355731,48675365388499,48675365421267,48675365454035,48675365486803,48675365519571,48675365552339,48675365585107,48675735568595,48675735601363,48675735634131,48675735666899,48675735699667,48675735732435,48675735765203,48675735797971,48675871391955,48675871424723,48675871457491,48675871490259,48675871523027,48675871555795,48675871588563,48675871621331,48676451877075,48676451909843,48676451942611,48676451975379,48676452008147,48676452040915,48676452073683,48676452106451,48676452139219,48676452171987,48676452204755,48676452237523,48676452270291,48676452303059,48676452335827,48676452368595,43015271121107,43015271153875,43015271186643,43015271219411,43015271252179,43015271284947,43015271317715,43015271350483,48675339141331,48675339174099,48675339206867,48675339239635,48675339272403,48675339305171,48675339337939,48675339370707,48675340976339,48675341009107,48675341041875,48675341074643,48675341107411,48675341140179,48675341172947,48675341205715,48675356967123,48675356999891,48675357032659,48675357065427,48675357098195,48675357130963,48675357163731,48675357196499,48675355918547,48675355951315,48675355984083,48675356016851,48675356049619,48675356082387,48675356115155,48675356147923,48676531273939,48676531306707,48676531339475,48676531372243,48676531405011,48676531437779,48676531470547,48676531503315,48676514857171,48676514889939,48676514922707,48676514955475,48676514988243,48676515021011,48676515053779,48676515086547,48676470849747,48676470882515,48676470915283,48676470948051,48676470980819,48676471013587,48676471046355,48676471079123,48676471111891,48676471144659,48676471177427,48676471210195,48676471242963,48676471275731,48676471308499,48676471341267,48676471374035,48676471406803,48676471439571,48676471472339,48676471505107,48676471537875,48676471570643,48676471603411,48676533371091,48676533403859,48676533436627,48676533469395,48676533502163,48676533534931,48676533567699,48676533600467,48676532846803,48676532879571,48676532912339,48676532945107,48676532977875,48676533010643,48676533043411,48676533076179,48676533108947,48676533141715,48676533174483,48676533207251,48676533240019,48676533272787,48676533305555,48676533338323,48675343073491,48675343106259,48675343139027,48675343171795,48675343204563,48675343237331,48675343270099,48675343302867,48675342549203,48675342581971,48675342614739,48675342647507,48675342680275,48675342713043,48675342745811,48675342778579,48675842031827,48675842064595,48675842097363,48675842130131,48675843604691,48675843637459,48675843670227,48675843702995,48675382231251,48675382264019,48675382296787,48675382329555]" :sale-search-include-markdown-sale-yes-variants="false" :bau-search-include-variants-compare-at-price="true" :instant-search-enabled="true" :intl-feature-flags="{ &quot;intlCountryListTranslationDisabled&quot;: false, &quot;intlVisibilityEnabled&quot;: false }" :hide-bundle-entries="false" :is-percent-off-red="false" @open="$refs.mobileNav.externalCloseMenu()"></header-search> </li> <li class="utility-nav__link utility-nav__link--icon utility-nav__link--account header-icon"> <header-account-icon :logged-in="false" customer-name=""> <a class="button button--icon" href=" /account/login "> <icon name="account" size="20px" class="button__icon"></icon> <span class="u-sr-only"> Log In </span> </a> </header-account-icon> </li> <li class="utility-nav__link utility-nav__link--icon utility-nav__link--bag header-icon"> <div class="cart-link"> <header-bag-icon></header-bag-icon> </div> </li> </ul> </div> </header> </div></header-reporter> <geolocation-modal :schema="{ countrySelectionModalHeader: &quot;Select your location&quot;, countrySelectionModalHeaderCA: &quot;You are shopping Spanx CA&quot;, countrySelectionModalBody: &quot;Your current shipping location is \u003cb\u003e[country_name]\u003c\/b\u003e and your order will be billed in \u003cb\u003e[currency_code]\u003c\/b\u003e.&quot;, countrySelectionModalBodyCA: &quot;You are currently shopping our Canada site. Your shipping location is set to \u003cb\u003eCanada\u003c\/b\u003e and your order will be billed in \u003cb\u003eCAD\u003c\/b\u003e. Use the drop down to change your selection.&quot;, countryConfirmationModalHeader: &quot;It looks like you’re in [country_name]&quot;, countryConfirmationModalBody: &quot;Are you sure you’d like to shop SPANX [country_selected]? Countries carry separate inventory and only ship domestically in their respective regions.&quot;, countryConfirmationModalCta: &quot;Continue to SPANX [country_name]&quot;, countryConfirmationModalSecondaryText: &quot;Stay on SPANX [country_name]&quot;, countryConfirmationModalHeaderUnavailable: &quot;You’re shopping SPANX [country_name]&quot;, countryConfirmationModalBodyUnavailable: &quot;You are currently shopping our [country_code] site. Your shipping location is set to [country_name] and your order will be billed in [currency_code]. Use the drop down to change your selection.&quot;, countryConfirmationModalSecondaryUnavailable: &quot;Keep browsing SPANX [country_name]&quot;, countryConfirmationModalHeaderCA: &quot;Are you sure you want to change your location?&quot;, countryConfirmationModalCtaCA: &quot;Continue to SPANX [country_name]&quot;, countryConfirmationModalBodyCA: &quot;You are changing your location to [country_name], and your order will be billed in [currency_code]. Countries carry separate inventory and only ship to their respective regions. If you change sites your shopping bag will not travel with you.&quot;, countryConfirmationModalSecondaryTextCA: &quot;Stay on SPANX CA&quot;, waitlistModalHeader: &quot;Coming soon to [country_name]!&quot;, waitlistModalBody: &quot;Spanx isn&#39;t available to [country_name] just yet, but we&#39;re coming soon! Fill out the form below to be the first to know when our products become available to you.&quot;, waitlistSecondaryText: &quot;Ship to Another Country&quot;, enteredWaitlistModalHeader: &quot;You’re on the List!&quot;, enteredWaitlistModalBody: &quot;We’ll let you know when we start shipping to [country_name]. In the mean time, feel free to browse our US site and start building your wishlist!&quot;, enteredWaitlistSecondaryText: &quot;Shop Spanx US&quot;, timedStoreRedirectModalHeader: &quot;Hang tight, we’re taking you to SPANX [country_code]&quot;, timedStoreRedirectModalBody: &quot;Your shipping location will be set to \u003cb\u003e[country_name]\u003c\/b\u003e and your order will be billed in \u003cb\u003e[currency_code]\u003c\/b\u003e.&quot;, timedStoreRedirectModalSecondaryText: &quot;Cancel&quot;, quebecLanguageChangeModalHeader: &quot;It Looks Like You’re In Canada&quot;, quebecLanguageChangeModalBody: &quot;You can also shop the site in French.&quot;, quebecLanguageChangeModalSecondaryText: &quot;Keep browsing in English&quot;, quebecLanguageChangeModalCTA: &quot;Spanx CA (Français)&quot;, browseUSSuggestionModalHeader: &quot;It Looks Like You’re In the US&quot;, browseUSSuggestionModalBody: &quot;\u003cp\u003eVisit our US site to:\u003c\/p\u003e\u003cul\u003e\u003cli\u003eShop in USD\u003c\/li\u003e\u003cli\u003eSee relevant shipping\u003c\/li\u003e\u003cli\u003eReturns and transactional information\u003c\/li\u003e\u003cli\u003eBe confident that everything you see ships to you\u003c\/li\u003e\u003c\/ul\u003e&quot;, browseUSSuggestionModalSecondaryText: &quot;No Thanks, I’ll Stay Here&quot;, browseUSSuggestionModalCTA: &quot;Spanx US&quot;, browseCASuggestionModalHeader: &quot;It Looks Like You’re In the CA&quot;, browseCASuggestionModalBody: &quot;\u003cp\u003eVisit our CA site to:\u003c\/p\u003e\u003cul\u003e\u003cli\u003eShop in CAD\u003c\/li\u003e\u003cli\u003eSee relevant shipping\u003c\/li\u003e\u003cli\u003eReturns and transactional information\u003c\/li\u003e\u003cli\u003eBe confident that everything you see ships to you\u003c\/li\u003e\u003c\/ul\u003e&quot;, browseCASuggestionModalSecondaryText: &quot;No Thanks, I’ll Stay Here&quot;, browseCASuggestionModalCTA: &quot;Spanx CA (English)&quot;, browseCASuggestionModalSecondCTA: &quot;Spanx CA (Français)&quot;, doubleConfirmationStoreChangeModalHeader: &quot;You’re leaving Spanx [store_country]&quot;, doubleConfirmationStoreChangeModalBody: &quot;Spanx US and Spanx CA carry separate inventory and only ship domestically in their respective regions. If you change sites, your shopping bag will not travel with you.&quot;, doubleConfirmationStoreChangeModalSecondaryText: &quot;No Thanks, I’ll Stay Here&quot;, doubleConfirmationStoreChangeModalCTA: &quot;Continue to Spanx [store_country]&quot;, countryWaitlistKlaviyoListId: &quot;RFCuz9&quot;, klaviyo_site_id: &quot;RN8rMY&quot;, listOfAvailableCountries: null, shopName: &quot;spanx-com.myshopify.com&quot;, debuggerTitle: false, timedModalTimeout: 5, consentFooter: &quot;By entering your email address and checking this box, you agree to receive email updates from us and confirm that you have read and accept our \u003ca href=\&quot;\/policies\/terms-of-service\&quot;\u003eTerms\u003c\/a\u003e and \u003ca href=\&quot;\/pages\/our-privacy-policy\&quot;\u003ePrivacy Policy\u003c\/a\u003e &quot;, canadaPostStrikeRedirect: false, }"></geolocation-modal> <div id="MainContentWrapper"> <main role="main" id="MainContent" class="page-layout" tabindex="-1"> <section id="shopify-section-template--14391303209171__hero_improved_single_wWwqr4" class="shopify-section homepage-hero-section"> <div class="hero single-hero-banner"> <div class="hero__carousel hero-single-block__padding-bottom"> <div> <figure class="hero__figure-wrapper"><a href="/collections/pants" class="hero__slide" onclick="location.href = '/collections/pants'"><div class="u-hidden-tablet-up hero__background-wrapper" style=" position: relative; aspect-ratio: ; background-color: #eee;"> <img src="//spanx.com/cdn/shop/files/0225_New-Stretch-Twill-Pants_SITE_HPHERO_MOBILE_US_CAN.gif?v=1739400076&width=800" alt="" class="hero__image" width="800" height="auto" > </div> <div class="u-hidden-mobile-only hero__background-wrapper" style=" position: relative; aspect-ratio: ; background-color: #eee;"> <img src="//spanx.com/cdn/shop/files/Desktop_Twill_Hero_4c95b344-c51d-4494-b3b4-9dd100d915bc.jpg?v=1739403001&width=2550" alt="" class="hero__image" width="2550" height="auto" > </div> <article class="hero__slide-container hero__slide-text_block_placement-center hero__slide-text_block_placement-mobile-center"> <div class="hero__content hero__content--center"><h1 class="hero__heading hero__heading--1"> <span class="u-hidden-mobile-only" style="color: #02081c; font-size: 52px;"> <p>Stretch Twill is Back </p><p>and Better Than Ever</p> </span> <span class="u-hidden-tablet-up" style="color: #02081c; font-size: 39px; margin-bottom: 0px; display: block;"> <p>Stretch Twill is Back </p><p>and Better Than Ever</p> </span> </h1> <div class="u-hidden-mobile-only hero__body-text hero__body-text--1 hero__body-text--desktop" style="color: #02081c; font-size: 15px;"> <p>Signature built-in smoothing meets newly-added details like </p><p>discreet zip pockets and a functional zipper fly.</p> </div> <div class="u-hidden-mobile-only flex hero__cta-wrapper justify-center "><span class="button hero__cta hero__cta--primary button--darkestblue-inverted"> <span class="button__content">ADD A PAIR (OR TWO)</span> </span> </div> <div class="u-hidden-tablet-up inline-flex hero__cta-wrapper justify-center " style="margin-top: 16px;"><span class="button hero__cta button hero__cta--primary button--darkestblue-inverted"> <span class="button__content">ADD A PAIR (OR TWO)</span> </span> </div> </div> </article></a></figure> </div> </div> </div> </section><section id="shopify-section-template--14391303209171__hero_improved_single_VDXLEq" class="shopify-section homepage-hero-section"> <div class="hero single-hero-banner"> <div class="hero__carousel hero-single-block__none"> <div> <hero-improved-single :schema="{ hero_shares_cta_link: true, root_anchor: true, cta_link: &quot;\/collections\/the-active-edit&quot;, cta_label: &quot;SHOP ACTIVE EDIT&quot;, primary_cta_desktop: true, primary_cta_class_desktop: &quot;button--darkestblue-inverted&quot;, primary_cta_class_mobile: &quot;button--white-inverted&quot;, secondary_cta_label: &quot;&quot;, primary_cta_mobile: true, secondary_cta_link: null, secondary_cta: null, secondary_cta_style: &quot;primary_darkestblue&quot;, secondary_cta_class: null, text_block_indent_value: &quot;&quot;, text_block_indent: false, text_block_placement: &quot;hero__slide-text_block_placement-center_left&quot;, defaulted_mobile_background_image: &quot;\/\/spanx.com\/cdn\/shop\/files\/BB_Active_Mob.jpg?v=1739226275&quot;, defaulted_mobile_background_image_alt: null, defaulted_mobile_background_video: null, defaulted_mobile_background_video_vimeo_id: &quot;&quot;, defaulted_mobile_background_video_thumbnail_image: null, defaulted_mobile_background_video_thumbnail_image_alt: null, is_hero: false, vimeo_player_enabled: false, background_image: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_BB-COLOR-NEWNESS_SITE_Hero_US_CAN.gif?v=1739226276&quot;, background_video: null, background_video_vimeo_id: &quot;&quot;, background_video_thumbnail_image: null, background_video_select_aspect_ratio: &quot;1440\/600&quot;, background_video_custom_aspect_ratio: &quot;1440\/600&quot;, mobile_background_image: &quot;\/\/spanx.com\/cdn\/shop\/files\/BB_Active_Mob.jpg?v=1739226275&quot;, mobile_background_video: null, mobile_background_video_vimeo_id: &quot;&quot;, mobile_background_video_thumbnail_image: null, mobile_background_video_select_aspect_ratio: &quot;393\/517&quot;, mobile_background_video_custom_aspect_ratio: &quot;393\/517&quot;, eyebrow_desktop: &quot;\u003cp\u003eNEW COLORS\u003c\/p\u003e&quot;, eyebrow_mobile: &quot;\u003cp\u003eNEW COLORS\u003c\/p\u003e&quot;, eyebrow_font_size_mobile: 14, eyebrow_font_size_desktop: 14, eyebrow_class: &quot;hero__pre-heading--1&quot;, text_block_placement: &quot;hero__slide-text_block_placement-center_left&quot;, text_block_placement_mobile: &quot;hero__slide-text_block_placement-mobile-center&quot;, text_block_indent: false, inner_text_block_alignment: &quot;hero__content--left&quot;, eyebrow_color: &quot;#02081c&quot;, title_color: &quot;#02081c&quot;, title_desktop_copy: &quot;\u003cp\u003eDopamine\u003c\/p\u003e\u003cp\u003eDressing\u003c\/p\u003e&quot;, title_mobile_copy: &quot;\u003cp\u003eDopamine\u003c\/p\u003e\u003cp\u003eDressing\u003c\/p\u003e&quot;, title_font_size_mobile: 52, title_font_size_desktop: 52, title_class: null, body_text_desktop: &quot;\u003cp\u003eBoost more than just your mood with a fresh\u003c\/p\u003e\u003cp\u003epalette of our Booty Boost® performance styles.\u003c\/p\u003e&quot;, body_text_mobile: &quot;&quot;, body_text_font_size_mobile: 14, body_text_font_size_desktop: 16, body_text_class: null, large_body_copy: null, body_text_color: &quot;#02081c&quot;, cta_style_desktop: &quot;secondary_darkestblue&quot;, cta_style_mobile: &quot;secondary_white&quot;, cta_label: &quot;SHOP ACTIVE EDIT&quot;, hero_banner_cta_width_desktop: true, hero_banner_cta_width_mobile: true, caption_color: &quot;#02081c&quot;, caption_alignment: &quot;bottom_left&quot;, caption_desktop: &quot;&quot;, caption_mobile: &quot;&quot;, caption_font_size_mobile: 11, caption_font_size_desktop: 11, caption_class: null, component: &quot;homepage&quot;, mobile_eyebrow_color: &quot;#ffffff&quot;, mobile_title_color: &quot;#ffffff&quot;, mobile_body_text_color: &quot;#ffffff&quot;, mobile_caption_color: &quot;#ffffff&quot;, mobile_title_margin_bottom: 0, mobile_cta_margin_top: 16, }"> <figure class="hero__figure-wrapper hero-single-block--placeholder"> <div class="hero__slide"> <div class="u-hidden-tablet-up hero__background-wrapper" style="aspect-ratio: 393/517; background-color: rgb(238, 238, 238);" > </div> <div class="u-hidden-mobile-only hero__background-wrapper" style="aspect-ratio: 1440/600; background-color: rgb(238, 238, 238);" > </div> </div> </figure> </hero-improved-single> </div> </div> </div> </section><section id="shopify-section-template--14391303209171__featured_products_q6LiFK" class="shopify-section"> <featured-products :schema="{ &quot;settings&quot;: { hidePricing: true, featuredTextColor: &quot;#02081c&quot;, headerText: &quot;Shop By Color&quot;, headerColor: &quot;&quot;, ctaText: &quot;Shop Now&quot;, ctaUrl: &quot;\/collections\/the-color-shop&quot;, ctaStyle: &quot;primary_darkestblue&quot;, sliderArrowSettings: &quot;mobile_desktop&quot;, sliderDotSettings: &quot;mobile&quot;, enableSpanxEffect: true, sitewideSaleEnabled: false }, &quot;blocks&quot;: [ { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Blooming_Hues_PC.jpg?v=1739224597&quot;, productTitleOverride: &quot;Blooming Hues&quot;, featuredText: &quot;&quot;, product: { title: &quot;The Color Shop&quot;, url: &quot;\/collections\/the-color-shop&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: &quot;https:\/\/spanx.com\/collections\/the-color-shop?color=Pink%2CPurple%2CGreen&quot;, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/True_Blues_PC.jpg?v=1739224615&quot;, productTitleOverride: &quot;True Blues&quot;, featuredText: &quot;&quot;, product: { title: &quot;The Color Shop&quot;, url: &quot;\/collections\/the-color-shop&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: &quot;https:\/\/spanx.com\/collections\/the-color-shop?color=Blue&quot;, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Sophisticated_Nuetrals_PC.jpg?v=1739224597&quot;, productTitleOverride: &quot;Sophisticated Neutrals&quot;, featuredText: &quot;&quot;, product: { title: &quot;The Color Shop&quot;, url: &quot;\/collections\/the-color-shop&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: &quot;https:\/\/spanx.com\/collections\/the-color-shop?color=Brown%2CWhite&quot;, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/SPANX_Red_PC.jpg?v=1739224597&quot;, productTitleOverride: &quot;SPANX® Red&quot;, featuredText: &quot;&quot;, product: { title: &quot;The Color Shop: SPANX Red&quot;, url: &quot;\/collections\/the-color-shop-spanx-red&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: null, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Classic_Black_PC.jpg?v=1739224597&quot;, productTitleOverride: &quot;Classic Black&quot;, featuredText: &quot;&quot;, product: { title: &quot;The Color Shop&quot;, url: &quot;\/collections\/the-color-shop&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: &quot;https:\/\/spanx.com\/collections\/the-color-shop?color=Black&quot;, isOnSale: false, productItem: &quot;&quot; } ], &quot;id&quot;: &quot;template--14391303209171__featured_products_q6LiFK&quot; }"> <div v-if="false"> <div class="u-show-desktop-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="1665" height="779" viewBox="0 0 1665 779"><rect width="1665" height="779" fill="#fff"/><rect width="338" height="37" transform="translate(21 50)" fill="#eee"/><rect width="384" height="480" transform="translate(20 129)" fill="#eee"/><rect width="384" height="480" transform="translate(424 129)" fill="#eee"/><rect width="384" height="480" transform="translate(828 129)" fill="#eee"/><rect width="384" height="480" transform="translate(1232 129)" fill="#eee"/><rect width="242" height="19" transform="translate(20 648)" fill="#eee"/><rect width="242" height="19" transform="translate(424 648)" fill="#eee"/><rect width="242" height="19" transform="translate(828 648)" fill="#eee"/><rect width="242" height="19" transform="translate(1232 648)" fill="#eee"/><rect width="210" height="14" transform="translate(20 682)" fill="#eee"/><rect width="210" height="14" transform="translate(424 682)" fill="#eee"/><rect width="210" height="14" transform="translate(828 682)" fill="#eee"/><rect width="210" height="14" transform="translate(1232 682)" fill="#eee"/><rect width="68" height="19" transform="translate(336 648)" fill="#eee"/><rect width="54" height="9" transform="translate(20 623)" fill="#eee"/><rect width="54" height="9" transform="translate(424 623)" fill="#eee"/><rect width="54" height="9" transform="translate(828 623)" fill="#eee"/><rect width="54" height="9" transform="translate(1232 623)" fill="#eee"/><rect width="68" height="19" transform="translate(740 648)" fill="#eee"/><rect width="68" height="19" transform="translate(1144 648)" fill="#eee"/><rect width="68" height="19" transform="translate(1548 648)" fill="#eee"/></svg> </div> <div class="u-show-laptop-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="1440" height="805" viewBox="0 0 1440 805"><rect width="1440" height="805" fill="#fff"/><rect width="338" height="37" transform="translate(21 50)" fill="#eee"/><rect width="435" height="544" transform="translate(20 129)" fill="#eee"/><rect width="435" height="544" transform="translate(475 129)" fill="#eee"/><rect width="435" height="544" transform="translate(931 129)" fill="#eee"/><rect width="242" height="19" transform="translate(20 712)" fill="#eee"/><rect width="242" height="19" transform="translate(475 712)" fill="#eee"/><rect width="242" height="19" transform="translate(931 712)" fill="#eee"/><rect width="210" height="14" transform="translate(20 746)" fill="#eee"/><rect width="210" height="14" transform="translate(475 746)" fill="#eee"/><rect width="210" height="14" transform="translate(931 746)" fill="#eee"/><rect width="68" height="19" transform="translate(387 712)" fill="#eee"/><rect width="68" height="19" transform="translate(842 712)" fill="#eee"/><rect width="68" height="19" transform="translate(1298 712)" fill="#eee"/><rect width="54" height="9" transform="translate(20 687)" fill="#eee"/><rect width="54" height="9" transform="translate(475 687)" fill="#eee"/><rect width="54" height="9" transform="translate(931 687)" fill="#eee"/></svg> </div> <div class="u-show-tablet-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="1024" height="805" viewBox="0 0 1024 805"><rect width="1024" height="805" fill="#fff"/><rect width="338" height="37" transform="translate(21 50)" fill="#eee"/><rect width="453" height="567" transform="translate(20 129)" fill="#eee"/><rect width="453" height="567" transform="translate(493 129)" fill="#eee"/><rect width="242" height="19" transform="translate(20 735)" fill="#eee"/><rect width="242" height="19" transform="translate(493 735)" fill="#eee"/><rect width="210" height="14" transform="translate(20 769)" fill="#eee"/><rect width="210" height="14" transform="translate(493 769)" fill="#eee"/><rect width="68" height="19" transform="translate(405 735)" fill="#eee"/><rect width="68" height="19" transform="translate(878 735)" fill="#eee"/><rect width="54" height="9" transform="translate(20 710)" fill="#eee"/><rect width="54" height="9" transform="translate(493 710)" fill="#eee"/></svg> </div> <div class="u-show-mobile-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="561" height="711" viewBox="0 0 561 711"><rect width="561" height="711" fill="#fff"/><rect width="223" height="27" transform="translate(21 35)" fill="#eee"/><rect width="409" height="512" transform="translate(20 87)" fill="#eee"/><rect width="113" height="512" transform="translate(448 87)" fill="#eee"/><rect width="242" height="19" transform="translate(20 634)" fill="#eee"/><rect width="113" height="19" transform="translate(448 634)" fill="#eee"/><rect width="210" height="14" transform="translate(20 662)" fill="#eee"/><rect width="113" height="14" transform="translate(448 662)" fill="#eee"/><rect width="68" height="19" transform="translate(361 634)" fill="#eee"/><rect width="54" height="9" transform="translate(20 613)" fill="#eee"/><rect width="54" height="9" transform="translate(448 613)" fill="#eee"/></svg> </div> </div> </featured-products> </section><section id="shopify-section-template--14391303209171__hero_improved_single_iFMgwU" class="shopify-section homepage-hero-section"> <div class="hero single-hero-banner"> <div class="hero__carousel hero-single-block__none"> <div> <hero-improved-single :schema="{ hero_shares_cta_link: true, root_anchor: true, cta_link: &quot;\/collections\/airessentials&quot;, cta_label: &quot;SHOP AIRESSENTIALS&quot;, primary_cta_desktop: true, primary_cta_class_desktop: &quot;button--nude-inverted&quot;, primary_cta_class_mobile: &quot;button--nude-inverted&quot;, secondary_cta_label: &quot;&quot;, primary_cta_mobile: true, secondary_cta_link: null, secondary_cta: null, secondary_cta_style: &quot;primary_darkestblue&quot;, secondary_cta_class: null, text_block_indent_value: &quot;&quot;, text_block_indent: false, text_block_placement: &quot;hero__slide-text_block_placement-center_left&quot;, defaulted_mobile_background_image: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_AE-CHILL-JUMPSUIT_SITE_HP-HERO_US_CAN_Mobile.gif?v=1739224068&quot;, defaulted_mobile_background_image_alt: null, defaulted_mobile_background_video: null, defaulted_mobile_background_video_vimeo_id: &quot;&quot;, defaulted_mobile_background_video_thumbnail_image: null, defaulted_mobile_background_video_thumbnail_image_alt: null, is_hero: false, vimeo_player_enabled: false, background_image: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_AE_CHILL_JUMPSUIT_SITE_HP_HERO_US_CAN_Desktop.jpg?v=1739224070&quot;, background_video: null, background_video_vimeo_id: &quot;&quot;, background_video_thumbnail_image: null, background_video_select_aspect_ratio: &quot;1440\/600&quot;, background_video_custom_aspect_ratio: &quot;1440\/600&quot;, mobile_background_image: &quot;\/\/spanx.com\/cdn\/shop\/files\/0225_AE-CHILL-JUMPSUIT_SITE_HP-HERO_US_CAN_Mobile.gif?v=1739224068&quot;, mobile_background_video: null, mobile_background_video_vimeo_id: &quot;&quot;, mobile_background_video_thumbnail_image: null, mobile_background_video_select_aspect_ratio: &quot;393\/517&quot;, mobile_background_video_custom_aspect_ratio: &quot;393\/517&quot;, eyebrow_desktop: &quot;&quot;, eyebrow_mobile: &quot;&quot;, eyebrow_font_size_mobile: 14, eyebrow_font_size_desktop: 14, eyebrow_class: &quot;hero__pre-heading--1&quot;, text_block_placement: &quot;hero__slide-text_block_placement-center_left&quot;, text_block_placement_mobile: &quot;hero__slide-text_block_placement-mobile-center&quot;, text_block_indent: false, inner_text_block_alignment: &quot;hero__content--left&quot;, eyebrow_color: &quot;#02081c&quot;, title_color: &quot;#f7f3e8&quot;, title_desktop_copy: &quot;\u003cp\u003eHead-To-Toe Cozy\u003c\/p\u003e&quot;, title_mobile_copy: &quot;\u003cp\u003eHead-To-Toe\u003c\/p\u003e\u003cp\u003eCozy\u003c\/p\u003e&quot;, title_font_size_mobile: 52, title_font_size_desktop: 52, title_class: null, body_text_desktop: &quot;\u003cp\u003eFlatter your figure in deliciously soft fabric with\u003c\/p\u003e\u003cp\u003ethis NEW throw-on-and-go or relax-at-home\u003c\/p\u003e\u003cp\u003e jumpsuit.  \u003c\/p\u003e&quot;, body_text_mobile: &quot;&quot;, body_text_font_size_mobile: 14, body_text_font_size_desktop: 16, body_text_class: null, large_body_copy: null, body_text_color: &quot;#f7f3e8&quot;, cta_style_desktop: &quot;secondary_nude&quot;, cta_style_mobile: &quot;secondary_nude&quot;, cta_label: &quot;SHOP AIRESSENTIALS&quot;, hero_banner_cta_width_desktop: false, hero_banner_cta_width_mobile: false, caption_color: &quot;#02081c&quot;, caption_alignment: &quot;bottom_left&quot;, caption_desktop: &quot;&quot;, caption_mobile: &quot;&quot;, caption_font_size_mobile: 11, caption_font_size_desktop: 11, caption_class: null, component: &quot;homepage&quot;, mobile_eyebrow_color: &quot;#ffffff&quot;, mobile_title_color: &quot;#f7f3e8&quot;, mobile_body_text_color: &quot;#ffffff&quot;, mobile_caption_color: &quot;#ffffff&quot;, mobile_title_margin_bottom: 0, mobile_cta_margin_top: 16, }"> <figure class="hero__figure-wrapper hero-single-block--placeholder"> <div class="hero__slide"> <div class="u-hidden-tablet-up hero__background-wrapper" style="aspect-ratio: 393/517; background-color: rgb(238, 238, 238);" > </div> <div class="u-hidden-mobile-only hero__background-wrapper" style="aspect-ratio: 1440/600; background-color: rgb(238, 238, 238);" > </div> </div> </figure> </hero-improved-single> </div> </div> </div> </section><section id="shopify-section-template--14391303209171__featured_products_GW6hJe" class="shopify-section"> <featured-products :schema="{ &quot;settings&quot;: { hidePricing: true, featuredTextColor: &quot;#02081c&quot;, headerText: &quot;Shop All AirEssentials&quot;, headerColor: &quot;&quot;, ctaText: &quot;Shop Now&quot;, ctaUrl: &quot;\/collections\/airessentials&quot;, ctaStyle: &quot;primary_darkestblue&quot;, sliderArrowSettings: &quot;mobile&quot;, sliderDotSettings: &quot;mobile&quot;, enableSpanxEffect: true, sitewideSaleEnabled: false }, &quot;blocks&quot;: [ { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/image_64e1ccbf-eee6-4272-b74b-73949ab7b80e.png?v=1734032215&quot;, productTitleOverride: &quot;Matching Sets&quot;, featuredText: &quot;&quot;, product: { title: &quot;Matching Sets&quot;, url: &quot;\/collections\/matching-sets&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: null, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/image-1_55de1744-3287-4396-9f54-308519418c76.png?v=1734032215&quot;, productTitleOverride: &quot;Tops&quot;, featuredText: &quot;&quot;, product: { title: &quot;Tops&quot;, url: &quot;\/collections\/tops&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: &quot;https:\/\/spanx.com\/collections\/airessentials\/Category:Tops&quot;, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/image-3_ec5b47d3-1332-4131-a19b-b6b8fb8f1fc2.png?v=1734032215&quot;, productTitleOverride: &quot;Jumpsuits&quot;, featuredText: &quot;&quot;, product: { title: &quot;Dresses + Jumpsuits&quot;, url: &quot;\/collections\/dresses-jumpsuits&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: null, isOnSale: false, productItem: &quot;&quot; }, { lifestyleImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/image-2_1b7f68da-a81c-4897-8009-471728f0e48a.png?v=1734032215&quot;, productTitleOverride: &quot;Bottoms&quot;, featuredText: &quot;&quot;, product: { title: &quot;Pants + Jeans&quot;, url: &quot;\/collections\/pants-jeans&quot;, price: &quot;&quot;, image: { src: &quot;\/\/spanx.com\/cdn\/shopifycloud\/shopify\/assets\/no-image-2048-5e88c1b20e087fb7bbe9a3771824e743c244f437e4f8ba93bbf7b11b53f7824c.gif&quot;, alt: &quot;&quot; } } , urlOverride: &quot;https:\/\/spanx.com\/collections\/airessentials\/Category:Pants&quot;, isOnSale: false, productItem: &quot;&quot; } ], &quot;id&quot;: &quot;template--14391303209171__featured_products_GW6hJe&quot; }"> <div v-if="false"> <div class="u-show-desktop-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="1665" height="779" viewBox="0 0 1665 779"><rect width="1665" height="779" fill="#fff"/><rect width="338" height="37" transform="translate(21 50)" fill="#eee"/><rect width="384" height="480" transform="translate(20 129)" fill="#eee"/><rect width="384" height="480" transform="translate(424 129)" fill="#eee"/><rect width="384" height="480" transform="translate(828 129)" fill="#eee"/><rect width="384" height="480" transform="translate(1232 129)" fill="#eee"/><rect width="242" height="19" transform="translate(20 648)" fill="#eee"/><rect width="242" height="19" transform="translate(424 648)" fill="#eee"/><rect width="242" height="19" transform="translate(828 648)" fill="#eee"/><rect width="242" height="19" transform="translate(1232 648)" fill="#eee"/><rect width="210" height="14" transform="translate(20 682)" fill="#eee"/><rect width="210" height="14" transform="translate(424 682)" fill="#eee"/><rect width="210" height="14" transform="translate(828 682)" fill="#eee"/><rect width="210" height="14" transform="translate(1232 682)" fill="#eee"/><rect width="68" height="19" transform="translate(336 648)" fill="#eee"/><rect width="54" height="9" transform="translate(20 623)" fill="#eee"/><rect width="54" height="9" transform="translate(424 623)" fill="#eee"/><rect width="54" height="9" transform="translate(828 623)" fill="#eee"/><rect width="54" height="9" transform="translate(1232 623)" fill="#eee"/><rect width="68" height="19" transform="translate(740 648)" fill="#eee"/><rect width="68" height="19" transform="translate(1144 648)" fill="#eee"/><rect width="68" height="19" transform="translate(1548 648)" fill="#eee"/></svg> </div> <div class="u-show-laptop-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="1440" height="805" viewBox="0 0 1440 805"><rect width="1440" height="805" fill="#fff"/><rect width="338" height="37" transform="translate(21 50)" fill="#eee"/><rect width="435" height="544" transform="translate(20 129)" fill="#eee"/><rect width="435" height="544" transform="translate(475 129)" fill="#eee"/><rect width="435" height="544" transform="translate(931 129)" fill="#eee"/><rect width="242" height="19" transform="translate(20 712)" fill="#eee"/><rect width="242" height="19" transform="translate(475 712)" fill="#eee"/><rect width="242" height="19" transform="translate(931 712)" fill="#eee"/><rect width="210" height="14" transform="translate(20 746)" fill="#eee"/><rect width="210" height="14" transform="translate(475 746)" fill="#eee"/><rect width="210" height="14" transform="translate(931 746)" fill="#eee"/><rect width="68" height="19" transform="translate(387 712)" fill="#eee"/><rect width="68" height="19" transform="translate(842 712)" fill="#eee"/><rect width="68" height="19" transform="translate(1298 712)" fill="#eee"/><rect width="54" height="9" transform="translate(20 687)" fill="#eee"/><rect width="54" height="9" transform="translate(475 687)" fill="#eee"/><rect width="54" height="9" transform="translate(931 687)" fill="#eee"/></svg> </div> <div class="u-show-tablet-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="1024" height="805" viewBox="0 0 1024 805"><rect width="1024" height="805" fill="#fff"/><rect width="338" height="37" transform="translate(21 50)" fill="#eee"/><rect width="453" height="567" transform="translate(20 129)" fill="#eee"/><rect width="453" height="567" transform="translate(493 129)" fill="#eee"/><rect width="242" height="19" transform="translate(20 735)" fill="#eee"/><rect width="242" height="19" transform="translate(493 735)" fill="#eee"/><rect width="210" height="14" transform="translate(20 769)" fill="#eee"/><rect width="210" height="14" transform="translate(493 769)" fill="#eee"/><rect width="68" height="19" transform="translate(405 735)" fill="#eee"/><rect width="68" height="19" transform="translate(878 735)" fill="#eee"/><rect width="54" height="9" transform="translate(20 710)" fill="#eee"/><rect width="54" height="9" transform="translate(493 710)" fill="#eee"/></svg> </div> <div class="u-show-mobile-only"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" width="561" height="711" viewBox="0 0 561 711"><rect width="561" height="711" fill="#fff"/><rect width="223" height="27" transform="translate(21 35)" fill="#eee"/><rect width="409" height="512" transform="translate(20 87)" fill="#eee"/><rect width="113" height="512" transform="translate(448 87)" fill="#eee"/><rect width="242" height="19" transform="translate(20 634)" fill="#eee"/><rect width="113" height="19" transform="translate(448 634)" fill="#eee"/><rect width="210" height="14" transform="translate(20 662)" fill="#eee"/><rect width="113" height="14" transform="translate(448 662)" fill="#eee"/><rect width="68" height="19" transform="translate(361 634)" fill="#eee"/><rect width="54" height="9" transform="translate(20 613)" fill="#eee"/><rect width="54" height="9" transform="translate(448 613)" fill="#eee"/></svg> </div> </div> </featured-products> </section><div id="shopify-section-template--14391303209171__two_image_block_bBgdra" class="shopify-section"> <two-image-block :schema="{ &quot;settings&quot;: { backgroundColor: &quot;#ffffff&quot;, headerTextColor: &quot;#000000&quot;, headingText: &quot;New This Season&quot;, blockTitleColor: &quot;#000000&quot;, blockBodycopyColor: &quot;#000000&quot;, linkColor: &quot;#000000&quot;, }, &quot;blocks&quot;: [ { settings: { linkUrl: &quot;\/collections\/jeans&quot;, image: &quot;\/\/spanx.com\/cdn\/shop\/files\/Jeans_FC.jpg?v=1739225667&quot;, alt: null, header: &quot;Denim Made Better. SPANX Better.&quot;, bodyCopy: &quot;Premium jeans with our signature shaping and sculpting, in a range of \u2028on-trend silhouettes and washes. &quot;, linkText: &quot;Find Your Fit&quot;, linkColor: null, } , }, { settings: { linkUrl: &quot;\/collections\/the-ponte-edit&quot;, image: &quot;\/\/spanx.com\/cdn\/shop\/files\/Ponte_FC.jpg?v=1739225668&quot;, alt: null, header: &quot;Ponte Power Moves&quot;, bodyCopy: &quot;Talk about a triple threat. Versatile. Smoothing. Oh-so comfortable.&quot;, linkText: &quot;IMPRESS IN PONTE&quot;, linkColor: null, } , } ] }"> <section class="two-image-block two-image-block--placeholder"> <div class="two-image-block__content"> <h1 class="two-image-block__header heading text-center heading--2">&nbsp;</h1> <div class="two-image-block__images-container"> <div class="two-image-block__image-block"> <div class="two-image-block__anchor-wrap u-unset-link"> <div class="two-image-block__image-block--wrapper"> <div width="1110" height="1393" class="two-image-block__image-block--image"></div> </div> <h5 class="two-image-block__image-block--header">&nbsp;</h5> <div class="two-image-block__image-block--body-copy">&nbsp;</div> <span class="two-image-bock__image-block--link">&nbsp;</span> </div> </div> <div class="two-image-block__image-block"> <div class="two-image-block__anchor-wrap u-unset-link"> <div class="two-image-block__image-block--wrapper"> <div width="1110" height="1393" class="two-image-block__image-block--image"></div> </div> <h5 class="two-image-block__image-block--header">&nbsp;</h5> <div class="two-image-block__image-block--body-copy">&nbsp;</div> <span class="two-image-bock__image-block--link">&nbsp;</span> </div> </div> </div> </div> </section> </two-image-block> </div><div id="shopify-section-template--14391303209171__1662484994aa7c72b9" class="shopify-section"> <icon-links :schema="{ &quot;settings&quot;: { headerText: &quot;Shop by Category&quot;, headerTextColor: &quot;&quot;, desktopBackgroundColor: &quot;#ffffff&quot;, mobileBackgroundColor: &quot;#ffffff&quot;, titleTextColor: &quot;&quot;, sliderArrowSettings: &quot;mobile&quot;, sliderDotSettings: &quot;none&quot;, desktopMarginTop: 0, desktopMarginBottom: 0, mobileMarginTop: 0, mobileMarginBottom: 0 }, &quot;blocks&quot;: [ { iconImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Clothing_SBC_c36c869a-4cb7-4c0b-a488-eeaeff4d5b16.jpg?v=1737209343&quot;, iconImageAlt: null, title: &quot;Clothing&quot;, link: &quot;\/collections\/clothing&quot; }, { iconImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/SYF_SBC.png?v=1732114451&quot;, iconImageAlt: null, title: &quot;Shapewear&quot;, link: &quot;\/collections\/shapewear&quot; }, { iconImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Jeans_SBC_448c11a6-63e5-422c-ad2f-9119f177041c.png?v=1737209342&quot;, iconImageAlt: null, title: &quot;Jeans&quot;, link: &quot;\/collections\/jeans&quot; }, { iconImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Active_SBC_4903747a-a6ca-4fb4-bd36-5abd7065bac2.jpg?v=1737209342&quot;, iconImageAlt: null, title: &quot;Activewear&quot;, link: &quot;\/collections\/active&quot; }, { iconImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/Lounge_SBC.png?v=1737209342&quot;, iconImageAlt: null, title: &quot;Loungewear&quot;, link: &quot;\/collections\/airessentials&quot; }, { iconImage: &quot;\/\/spanx.com\/cdn\/shop\/files\/SBC_Underwear_5b88479b-61dc-456b-998f-14b0bd1c8f89.png?v=1730382822&quot;, iconImageAlt: null, title: &quot;Underwear&quot;, link: &quot;\/collections\/underwear&quot; } ] }"> <div v-if="false"> <div class="u-hidden-desktop-down"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" id="icon-links-skeleton--desktop" width="1665" height="457" viewBox="0 0 1665 457"> <rect id="Rectangle_1" data-name="Rectangle 1" width="1665" height="457" fill="#fff"/> <rect id="Rectangle_2" data-name="Rectangle 2" width="290" height="45" transform="translate(688 47)" fill="#eee"/> <rect id="Rectangle_3" data-name="Rectangle 3" width="248" height="248" transform="translate(40 129)" fill="#eee"/> <rect id="Rectangle_4" data-name="Rectangle 4" width="248" height="248" transform="translate(307 129)" fill="#eee"/> <rect id="Rectangle_5" data-name="Rectangle 5" width="248" height="248" transform="translate(574 129)" fill="#eee"/> <rect id="Rectangle_6" data-name="Rectangle 6" width="248" height="248" transform="translate(841 129)" fill="#eee"/> <rect id="Rectangle_7" data-name="Rectangle 7" width="248" height="248" transform="translate(1108 129)" fill="#eee"/> <rect id="Rectangle_8" data-name="Rectangle 8" width="248" height="248" transform="translate(1375 129)" fill="#eee"/> <rect id="Rectangle_9" data-name="Rectangle 9" width="105" height="23" transform="translate(112 391)" fill="#eee"/> <rect id="Rectangle_10" data-name="Rectangle 10" width="105" height="23" transform="translate(379 391)" fill="#eee"/> <rect id="Rectangle_11" data-name="Rectangle 11" width="105" height="23" transform="translate(646 391)" fill="#eee"/> <rect id="Rectangle_12" data-name="Rectangle 12" width="105" height="23" transform="translate(913 391)" fill="#eee"/> <rect id="Rectangle_13" data-name="Rectangle 13" width="105" height="23" transform="translate(1180 391)" fill="#eee"/> <rect id="Rectangle_14" data-name="Rectangle 14" width="105" height="23" transform="translate(1447 391)" fill="#eee"/> </svg> </div> </div> <div class="u-hidden-desktop-up"> <svg style="width: 100%; height: auto;" xmlns="http://www.w3.org/2000/svg" id="icon-links-skeleton--mobile" width="635" height="363" viewBox="0 0 635 363"> <rect id="Rectangle_22" data-name="Rectangle 22" width="635" height="363" fill="#fff"/> <rect id="Rectangle_15" data-name="Rectangle 15" width="175" height="26" transform="translate(229 34)" fill="#eee"/> <rect id="Rectangle_19" data-name="Rectangle 19" width="89" height="13" transform="translate(490 315)" fill="#eee"/> <rect id="Rectangle_20" data-name="Rectangle 20" width="89" height="13" transform="translate(273 315)" fill="#eee"/> <rect id="Rectangle_21" data-name="Rectangle 21" width="89" height="13" transform="translate(56 315)" fill="#eee"/> <rect id="Rectangle_16" data-name="Rectangle 16" width="201" height="202" transform="translate(0 98)" fill="#eee"/> <rect id="Rectangle_17" data-name="Rectangle 17" width="201" height="202" transform="translate(217 98)" fill="#eee"/> <rect id="Rectangle_18" data-name="Rectangle 18" width="201" height="202" transform="translate(434 98)" fill="#eee"/> </svg> </div> </icon-links> </div><div id="shopify-section-template--14391303209171__1624487242e9d490f0" class="shopify-section"><section class="text-banner container" style="background-color: #efede3;"> <div class="text-banner__icon-wrapper"> <img class="text-banner__icon" v-lazy="'//spanx.com/cdn/shop/files/MicrosoftTeams-image_54.png?v=1677016281'" alt=""> </div> <div class="text-banner__content"> <div class="text-banner__header" style="color: #333333;" >free shipping</div> <div class="text-banner__body-copy" style="color: #333333;"><p>We're making it easy to shop from home by providing FREE standard shipping on all US orders – no minimums or exclusions</p><p></p></div><a href="/collections/best-sellers" class="text-banner__link" style="color: #333333; --link-color: #333333" >Shop Best Sellers</a></div> </section> </div> </main> </div> <div id="shopify-section-attentive-block" class="shopify-section"> </div> <section id="shopify-section-footer" class="shopify-section"><footer class="footer"> <div class="footer__inner container"><div class="banner"> <div class="banner__inner"> <div class="banner__headline"> <h4 class="heading heading--4">Our Purpose: Elevating Women</h4> </div> <div class="banner__content"> <div class="rte paragraph"> SPANX® is a brand for women, by women. We obsess over comfort, deliver results and ensure you look as good as you feel. We think forward, and give back. We believe women can do anything. And together, we believe we will make the world a better place. </div> </div> </div> </div> <mq-responsive :target="['mobile', 'tablet']" class="column small-12 medium-12 u-hidden-desktop-up"> <div class="feedback-toggle-button-box" id="feedback-button-impersonator-mobile" @click="openFeedBackModal()"> <div> <h2 class="feedback-mobile-heading">Have something to tell us?</h2> <div class="feedback-mobile-text">We want to hear it. Leave us Feedback.</div> </div> <div> <img class="feedback-icon" v-lazy="{ src: '//spanx.com/cdn/shop/t/82/assets/feedback-icon@2x.png?v=156176299260714630271696891246'}" alt="Feedback Icon" width="48" height="56"> </div> </div> </mq-responsive> <div class="footer__main"> <mq-responsive :target="['mobile', 'tablet']" class="email-capture--mobile column small-12 medium-12 u-hidden-desktop-up"> <phone-number-capture attentiveConsent="true" attentiveSourceId="1061230" success-msg="<p>You're in! Check your texts</p>" domestic-text-copy="<p>Be the first to know about new products, promos, & exclusive sales. Opt-in for SMS or Email messaging for 20% off your first purchase.</p>" international-text-copy="<p>Be the first international visitor to know about new products, promos, & exclusive sales!</p>" attentive-french-source-id=""> <template v-slot="{ messageStatus, submitForm, phoneNumber, setConsentStatus, formSuccess, setMessageStatus, setphonenumber, consentStatus, close, setOptionSelectDropdown, gdpr, textCopy }"> <div class="email-capture__inner"> <h2 class="email-capture__heading heading" :class="mq.mobile || mq.tablet ? 'heading--display-3': 'heading--display-5' "> Let's Stay In Touch </h2> <div class="email-capture__message"> <p class="rte paragraph paragraph--small" v-html="textCopy"></p> </div> <form id="text_to_join" class="email-capture__form flex" v-on:submit.prevent="submitForm" v-if="!gdpr"> <fieldset class="phone-capture__form-fieldset"> <div class="attentive_field_group text-input phone-input-wrap email-capture__text-input text-input--full-width text-input--hidden-label"> <option-select-dropdown-input :settings="{ &quot;flags&quot;:[ {&quot;name&quot;:&quot;flag_ca&quot;, &quot;src&quot;:&quot;\/\/spanx.com\/cdn\/shop\/t\/82\/assets\/flag-CA.png?v=108188422411999535881727874544&quot;, &quot;value&quot;: &quot;Canada +1&quot; , &quot;code&quot;: &quot;+1&quot;, &quot;countryCode&quot;: &#39;CA&#39; }, {&quot;name&quot;:&quot;flag_us&quot;, &quot;src&quot;:&quot;\/\/spanx.com\/cdn\/shop\/t\/82\/assets\/flag-US.png?v=17294098706615982991727874545&quot;, &quot;value&quot;: &quot;USA +1&quot; , &quot;code&quot;: &quot;+1&quot;, &quot;countyCode&quot;: &#39;US&#39; } ] }" :setphonenumber="setphonenumber" placeholder="Phone Number" :class="{ 'text-input--error' : messageStatus.errorStatus }" :set-ref="setOptionSelectDropdown" /> </div> <div class="attentive_messages" v-if="messageStatus.successStatus || messageStatus.errorStatus"> <div class="success_message email-capture__notice check-icon flex align-center" v-if="messageStatus.successStatus" @click="close()" v-html="messageStatus.message"></div> <div class="error_message phone-input__error-notice flex align-center" v-if="messageStatus.errorStatus" v-text="messageStatus.message"></div> </div> <div class="email-capture__consent" v-if="phoneNumber.length > 9 && !formSuccess"> <checkbox-input name="$consent" id="consent-sms" value="phone" :size="14" :checked="consentStatus" @input="setConsentStatus($event)"></checkbox-input> <label for="consent-sms" class="email-capture__consent-label">By entering your cell number and checking this box, you agree to receive recurring automated promotional and personalized marketing text messages (e.g. cart reminders) from Spanx at the cell number entered above. Consent is not a condition of any purchase. Reply HELP for help and STOP to cancel. Msg frequency varies. Msg and data rates may apply. View <a href="http://attn.tv/spanx/terms.html">Terms</a> and <a href="/pages/our-privacy-policy">Privacy Policy</a>. </label> </div> </fieldset> <div class="attentive_form_actions"> <button :type=" !formSuccess ? 'submit' : 'button' " class="email-capture__submit-button button button--tertiary attentive_submit_button"> <span v-if="!formSuccess" class="button__content">Join </span> <span v-else="formSuccess" class="button__content">Joined! </span> </button> </div> </form> </div> </template> </phone-number-capture> <email-capture v-slot="{ submitForm, messageStatus, consentStatus, isCaptchaStep, formSubmitting, formSuccess, customer, customCaptchaInput, validateEmail, setConsentStatus, close, cancel, gdpr }" :klaviyo-express-consent="true"success-msg="<p>You're in! Check your email</p>" error-msg="<p>An error happened during your subscription. Please verify the email address or try again later.</p>" :success-msg-timeout-in-sec="6" :enable-custom-captcha="true" custom-captcha-secret="confirm" klaviyo-site-id="RN8rMY" klaviyo-list="Yprbqa" :enable-azure-api="true" > <div class="email-capture email-capture__inner"> <form id="email_signup" ref="email_signup" class="email-capture__form flex email-capture__flex-row klaviyo_standard_embed_Yprbqa" v-on:submit="submitForm($event)"> <input type="hidden" name="g" value="Yprbqa"> <input type="hidden" value="footer" id="k_id_source" name="$source"> <input type="hidden" value="US" id="k_selected_country" name="last_shopify_localization_selected"> <input type="hidden" value="N/A" id="k_geotargely_country" name="last_optin_geolocation"> <input type="hidden" value="last_shopify_localization_selected,last_optin_geolocation" id="k_fields" name="$fields"> <!-- regular fields --> <div class="email-capture__flex-group"> <fieldset class="email-capture__form-fieldset"> <!-- email input --> <div class="k_field_group text-input email-input-wrap email-capture__text-input text-input--full-width text-input--hidden-label"> <input id="email" class="email-capture__text-input text-input__input OneLinkNoTx" :class="{ 'error-border' : messageStatus.errorStatus && !messageStatus.finalStatus && !isCaptchaStep, 'text-input--disabled' : consentStatus || isCaptchaStep || formSubmitting || formSuccess }" type="email" v-model="customer.currentEmail" name="email" id="klaviyo_id_email" placeholder="Email" autocomplete="email" ref="email_input" :readonly="consentStatus || isCaptchaStep || formSubmitting" /> </div> </fieldset> <div class="k_form_actions"> <!-- (captcha/submit) CTA buttons --> <submit-busy-button v-if="!isCaptchaStep" type="submit" class="klaviyo_submit_button email-capture__submit-button button button--tertiary k_submit_button" :tertiary="true" :loading="false" label="Join" :busy="formSubmitting" :disabled="formSubmitting"> </submit-busy-button> <button v-else="isCaptchaStep" type="button" class="email-capture__submit-button button button--darkestblue-inverted k_submit_button" @click.prevent="cancel($event)"> <span class="button__content">Cancel</span> </button> </div> </div> <!-- custom captcha --> <div class="email-capture__custom-captcha" v-if="isCaptchaStep && !formSuccess && validateEmail(customer.currentEmail)"> <div class="email-capture__flex-group"> <!-- custom captcha label --> <label for="custom-captcha">Please type the word "<span class="OneLinkNoTx">confirm</span>" before proceeding:</label> </div> <div class="email-capture__flex-group"> <fieldset class="email-capture__form-fieldset"> <!-- custom captcha input --> <div class="k_field_group text-input email-input-wrap email-capture__text-input text-input--full-width text-input--hidden-label"> <input class="email-capture__text-input text-input__input OneLinkNoTx" :class="{ 'error-border' : messageStatus.errorStatus && isCaptchaStep }" type="text" id="custom-captcha" ref="customCaptcha" :disabled="formSubmitting" v-model="customCaptchaInput.value" /> </div> <!-- custom captcha response message --> <div class="klaviyo_messages" v-if="messageStatus.errorStatus && isCaptchaStep"> <div class="error_message email-input__error-notice flex align-center" v-text="messageStatus.message"></div> </div> </fieldset> <div class="k_form_actions"> <!-- custom captcha CTA button --> <button type="submit" class="email-capture__submit-button button button--tertiary k_submit_button"> <span class="button__content">Join</span> </button> </div> </div> </div> <div class="email-capture__flex-group"> <fieldset class="email-capture__form-fieldset full-width"> <!-- response messages --> <div class="klaviyo_messages" v-if="(messageStatus.successStatus || messageStatus.errorStatus) && !isCaptchaStep"> <div class="success_message email-capture__notice flex align-center" :class="{ 'check-icon': messageStatus.successStatus, 'error-icon': messageStatus.errorStatus }" v-if="messageStatus.successStatus || messageStatus.finalStatus" @click="close()" v-html="messageStatus.message"></div> <div class="error_message email-input__error-notice flex align-center" v-if="messageStatus.errorStatus && !messageStatus.finalStatus" v-text="messageStatus.message"></div> </div> <!-- express (checkbox) consent --> <div class="email-capture__consent" v-if="(customer.currentEmail.length > 3 || gdpr) && !formSuccess && !isCaptchaStep && !formSubmitting"> <checkbox-input name="$consent" id="consent-email" ref="consentCheckbox" value="email" :size="14" :checked="consentStatus" @input="setConsentStatus($event)"></checkbox-input> <label for="consent-email" class="email-capture__consent-label" v-if="gdpr"> Yes, I would like to receive marketing emails from Spanx according to my subscription preferences. I understand I can unsubscribe at any time. </label> <label for="consent-email" class="email-capture__consent-label" v-else> By entering your email address and checking this box, you agree to receive updates and special promotional offers from Spanx. You can unsubscribe at any time. View <a href="/pages/terms-conditions">Terms</a> and <a href="/pages/our-privacy-policy">Privacy</a>. </label> </div> </fieldset> </div> </form> </div> </email-capture> </mq-responsive> <mq-responsive target="desktop+" class="footer__logo footer__logo--desktop u-hidden-tablet-down"> <a class="footer__logo_link" href="https://spanx.com"> <figure class="footer__logo-figure"> <img class="footer__logo-image" src="https://cdn.shopify.com/s/files/1/0549/4895/4134/files/SPANX_Logo-Black.svg?v=1737465554" alt="Spanx" width="165" height="auto" loading="lazy"> </figure> </a> <div class="footer__social"> <ul class="footer__social-list"><li class="footer__social-list-link"> <icon-link icon="instagram" href="https://www.instagram.com/spanx" label="instagram" size="20px" :screen-reader-label="false" ></icon-link> </li><li class="footer__social-list-link"> <icon-link icon="facebook" href="https://www.facebook.com/SPANX" label="facebook" size="20px" :screen-reader-label="false" ></icon-link> </li><li class="footer__social-list-link"> <icon-link icon="tiktok" href="https://www.tiktok.com/@spanx" label="tiktok" size="20px" :screen-reader-label="false" ></icon-link> </li></ul> </div> </mq-responsive> <div class="footer__linklists" :class="!mq.desktop && !mq.hd ? 'column small-12 medium-12' : null"><mq-responsive target="tablet+" class="footer__linklist-wrapper"><h5 class='footer__linklist-title heading heading--display-5'>Help</h5><ul class="u-list-simple footer__linklist"><li><a href="/pages/help" class="footer__linklist-link">FAQs & Support</a></li><li><a href="https://spanx.kustomer.help/en_us/how-do-i-measure-myself-and-find-my-size-SyZ8oEgXh" class="footer__linklist-link">Find My Size</a></li><li><a href="/blogs/education-center" class="footer__linklist-link">Education Center</a></li><li><a href="/pages/return-policy-instructions" class="footer__linklist-link">Returns and Exchanges</a></li><li><a href="/products/gift-card" class="footer__linklist-link">Purchase Gift Cards</a></li><li><a href="/pages/check-gift-card-balance" class="footer__linklist-link">Check Gift Card Balance</a></li><li><a href="/pages/help" class="footer__linklist-link">Contact Us</a></li></ul> </mq-responsive><mq-responsive target="tablet+" class="footer__linklist-wrapper"><h5 class='footer__linklist-title heading heading--display-5'>About</h5><ul class="u-list-simple footer__linklist"><li><a href="/pages/about-us" class="footer__linklist-link">About Spanx, LLC</a></li><li><a href="/pages/spanx-society" class="footer__linklist-link">Join the SPANX Society</a></li><li><a href="/pages/corporate-career-opportunities-at-spanx" class="footer__linklist-link">Careers</a></li></ul> </mq-responsive><mq-responsive target="mobile" class="footer__accordions"> <div> <accordion heading="Help" active-icon="minus" inactive-icon="plus" icon-size="12px" > <ul class="u-list-simple footer__linklist"><li><a href="/pages/help" class="footer__linklist-link">FAQs & Support</a></li><li><a href="https://spanx.kustomer.help/en_us/how-do-i-measure-myself-and-find-my-size-SyZ8oEgXh" class="footer__linklist-link">Find My Size</a></li><li><a href="/blogs/education-center" class="footer__linklist-link">Education Center</a></li><li><a href="/pages/return-policy-instructions" class="footer__linklist-link">Returns and Exchanges</a></li><li><a href="/products/gift-card" class="footer__linklist-link">Purchase Gift Cards</a></li><li><a href="/pages/check-gift-card-balance" class="footer__linklist-link">Check Gift Card Balance</a></li><li><a href="/pages/help" class="footer__linklist-link">Contact Us</a></li></ul> </accordion> </div> <div> <accordion heading="About" active-icon="minus" inactive-icon="plus" icon-size="12px" > <ul class="u-list-simple footer__linklist"><li><a href="/pages/about-us" class="footer__linklist-link">About Spanx, LLC</a></li><li><a href="/pages/spanx-society" class="footer__linklist-link">Join the SPANX Society</a></li><li><a href="/pages/corporate-career-opportunities-at-spanx" class="footer__linklist-link">Careers</a></li></ul> </accordion> </div> </mq-responsive> </div> <mq-responsive :target="['mobile', 'tablet']" class="footer__logo footer__logo--mobile u-hidden-desktop-up"> <a class="footer__logo_link" href="https://spanx.com"> <figure class="footer__logo-figure"> <img class="footer__logo-image" src="https://cdn.shopify.com/s/files/1/0549/4895/4134/files/SPANX_Logo-Black.svg?v=1737465554" alt="Spanx" width="160" height="auto" loading="lazy"> </figure> </a> <div class="footer__social"> <ul class="footer__social-list"><li class="footer__social-list-link"> <icon-link icon="instagram" href="https://www.instagram.com/spanx" label="instagram" size="20px"> </icon-link> </li><li class="footer__social-list-link"> <icon-link icon="facebook" href="https://www.facebook.com/SPANX" label="facebook" size="20px"> </icon-link> </li><li class="footer__social-list-link"> <icon-link icon="tiktok" href="https://www.tiktok.com/@spanx" label="tiktok" size="20px"> </icon-link> </li></ul> </div> </mq-responsive> <mq-responsive target="desktop+" class="email-capture--desktop u-hidden-tablet-down footer-right-col"> <div> <h2 class="heading heading--display-5">Have something to tell us?</h2> <div class="feedback-toggle-button-box" id="feedback-button-impersonator" @click="openFeedBackModal()"> We want to hear it. Leave us Feedback. <img class="feedback-icon" src="//spanx.com/cdn/shop/t/82/assets/feedback-icon@2x.png?v=156176299260714630271696891246" loading="lazy" width="48" height="56" alt="Feedback Icon"> </div> </div> <phone-number-capture attentiveConsent="true" attentiveSourceId="1061230" success-msg="<p>You're in! Check your texts</p>" domestic-text-copy="<p>Be the first to know about new products, promos, & exclusive sales. Opt-in for SMS or Email messaging for 20% off your first purchase.</p>" international-text-copy="<p>Be the first international visitor to know about new products, promos, & exclusive sales!</p>" attentive-french-source-id=""> <template v-slot="{ messageStatus, submitForm, phoneNumber, setConsentStatus, formSuccess, setMessageStatus, setphonenumber, consentStatus, close, setOptionSelectDropdown, gdpr, textCopy }"> <div class="email-capture__inner"> <h2 class="email-capture__heading heading" :class="mq.mobile || mq.tablet ? 'heading--display-3': 'heading--display-5' "> Let's Stay In Touch </h2> <div class="email-capture__message"> <p class="rte paragraph paragraph--small" v-html="textCopy"></p> </div> <form id="text_to_join" class="email-capture__form flex" v-on:submit.prevent="submitForm" v-if="!gdpr"> <fieldset class="phone-capture__form-fieldset"> <div class="attentive_field_group text-input phone-input-wrap email-capture__text-input text-input--full-width text-input--hidden-label"> <option-select-dropdown-input :settings="{ &quot;flags&quot;:[ {&quot;name&quot;:&quot;flag_ca&quot;, &quot;src&quot;:&quot;\/\/spanx.com\/cdn\/shop\/t\/82\/assets\/flag-CA.png?v=108188422411999535881727874544&quot;, &quot;value&quot;: &quot;Canada +1&quot; , &quot;code&quot;: &quot;+1&quot;, &quot;countryCode&quot;: &#39;CA&#39; }, {&quot;name&quot;:&quot;flag_us&quot;, &quot;src&quot;:&quot;\/\/spanx.com\/cdn\/shop\/t\/82\/assets\/flag-US.png?v=17294098706615982991727874545&quot;, &quot;value&quot;: &quot;USA +1&quot; , &quot;code&quot;: &quot;+1&quot;, &quot;countyCode&quot;: &#39;US&#39; } ] }" :setphonenumber="setphonenumber" placeholder="Phone Number" :class="{ 'text-input--error' : messageStatus.errorStatus }" :set-ref="setOptionSelectDropdown" /> </div> <div class="attentive_messages" v-if="messageStatus.successStatus || messageStatus.errorStatus"> <div class="success_message email-capture__notice check-icon flex align-center" v-if="messageStatus.successStatus" @click="close()" v-html="messageStatus.message"></div> <div class="error_message phone-input__error-notice flex align-center" v-if="messageStatus.errorStatus" v-text="messageStatus.message"></div> </div> <div class="email-capture__consent" v-if="phoneNumber.length > 9 && !formSuccess"> <checkbox-input name="$consent" id="consent-sms" value="phone" :size="14" :checked="consentStatus" @input="setConsentStatus($event)"></checkbox-input> <label for="consent-sms" class="email-capture__consent-label">By entering your cell number and checking this box, you agree to receive recurring automated promotional and personalized marketing text messages (e.g. cart reminders) from Spanx at the cell number entered above. Consent is not a condition of any purchase. Reply HELP for help and STOP to cancel. Msg frequency varies. Msg and data rates may apply. View <a href="http://attn.tv/spanx/terms.html">Terms</a> and <a href="/pages/our-privacy-policy">Privacy Policy</a>. </label> </div> </fieldset> <div class="attentive_form_actions"> <button :type=" !formSuccess ? 'submit' : 'button' " class="email-capture__submit-button button button--tertiary attentive_submit_button"> <span v-if="!formSuccess" class="button__content">Join </span> <span v-else="formSuccess" class="button__content">Joined! </span> </button> </div> </form> </div> </template> </phone-number-capture> <email-capture v-slot="{ submitForm, messageStatus, consentStatus, isCaptchaStep, formSubmitting, formSuccess, customer, customCaptchaInput, validateEmail, setConsentStatus, close, cancel, gdpr }" :klaviyo-express-consent="true"success-msg="<p>You're in! Check your email</p>" error-msg="<p>An error happened during your subscription. Please verify the email address or try again later.</p>" :success-msg-timeout-in-sec="6" :enable-custom-captcha="true" custom-captcha-secret="confirm" klaviyo-site-id="RN8rMY" klaviyo-list="Yprbqa" :enable-azure-api="true" > <div class="email-capture email-capture__inner"> <form id="email_signup" ref="email_signup" class="email-capture__form flex email-capture__flex-row klaviyo_standard_embed_Yprbqa" v-on:submit="submitForm($event)"> <input type="hidden" name="g" value="Yprbqa"> <input type="hidden" value="footer" id="k_id_source" name="$source"> <input type="hidden" value="US" id="k_selected_country" name="last_shopify_localization_selected"> <input type="hidden" value="N/A" id="k_geotargely_country" name="last_optin_geolocation"> <input type="hidden" value="last_shopify_localization_selected,last_optin_geolocation" id="k_fields" name="$fields"> <!-- regular fields --> <div class="email-capture__flex-group"> <fieldset class="email-capture__form-fieldset"> <!-- email input --> <div class="k_field_group text-input email-input-wrap email-capture__text-input text-input--full-width text-input--hidden-label"> <input id="email" class="email-capture__text-input text-input__input OneLinkNoTx" :class="{ 'error-border' : messageStatus.errorStatus && !messageStatus.finalStatus && !isCaptchaStep, 'text-input--disabled' : consentStatus || isCaptchaStep || formSubmitting || formSuccess }" type="email" v-model="customer.currentEmail" name="email" id="klaviyo_id_email" placeholder="Email" autocomplete="email" ref="email_input" :readonly="consentStatus || isCaptchaStep || formSubmitting" /> </div> </fieldset> <div class="k_form_actions"> <!-- (captcha/submit) CTA buttons --> <submit-busy-button v-if="!isCaptchaStep" type="submit" class="klaviyo_submit_button email-capture__submit-button button button--tertiary k_submit_button" :tertiary="true" :loading="false" label="Join" :busy="formSubmitting" :disabled="formSubmitting"> </submit-busy-button> <button v-else="isCaptchaStep" type="button" class="email-capture__submit-button button button--darkestblue-inverted k_submit_button" @click.prevent="cancel($event)"> <span class="button__content">Cancel</span> </button> </div> </div> <!-- custom captcha --> <div class="email-capture__custom-captcha" v-if="isCaptchaStep && !formSuccess && validateEmail(customer.currentEmail)"> <div class="email-capture__flex-group"> <!-- custom captcha label --> <label for="custom-captcha">Please type the word "<span class="OneLinkNoTx">confirm</span>" before proceeding:</label> </div> <div class="email-capture__flex-group"> <fieldset class="email-capture__form-fieldset"> <!-- custom captcha input --> <div class="k_field_group text-input email-input-wrap email-capture__text-input text-input--full-width text-input--hidden-label"> <input class="email-capture__text-input text-input__input OneLinkNoTx" :class="{ 'error-border' : messageStatus.errorStatus && isCaptchaStep }" type="text" id="custom-captcha" ref="customCaptcha" :disabled="formSubmitting" v-model="customCaptchaInput.value" /> </div> <!-- custom captcha response message --> <div class="klaviyo_messages" v-if="messageStatus.errorStatus && isCaptchaStep"> <div class="error_message email-input__error-notice flex align-center" v-text="messageStatus.message"></div> </div> </fieldset> <div class="k_form_actions"> <!-- custom captcha CTA button --> <button type="submit" class="email-capture__submit-button button button--tertiary k_submit_button"> <span class="button__content">Join</span> </button> </div> </div> </div> <div class="email-capture__flex-group"> <fieldset class="email-capture__form-fieldset full-width"> <!-- response messages --> <div class="klaviyo_messages" v-if="(messageStatus.successStatus || messageStatus.errorStatus) && !isCaptchaStep"> <div class="success_message email-capture__notice flex align-center" :class="{ 'check-icon': messageStatus.successStatus, 'error-icon': messageStatus.errorStatus }" v-if="messageStatus.successStatus || messageStatus.finalStatus" @click="close()" v-html="messageStatus.message"></div> <div class="error_message email-input__error-notice flex align-center" v-if="messageStatus.errorStatus && !messageStatus.finalStatus" v-text="messageStatus.message"></div> </div> <!-- express (checkbox) consent --> <div class="email-capture__consent" v-if="(customer.currentEmail.length > 3 || gdpr) && !formSuccess && !isCaptchaStep && !formSubmitting"> <checkbox-input name="$consent" id="consent-email" ref="consentCheckbox" value="email" :size="14" :checked="consentStatus" @input="setConsentStatus($event)"></checkbox-input> <label for="consent-email" class="email-capture__consent-label" v-if="gdpr"> Yes, I would like to receive marketing emails from Spanx according to my subscription preferences. I understand I can unsubscribe at any time. </label> <label for="consent-email" class="email-capture__consent-label" v-else> By entering your email address and checking this box, you agree to receive updates and special promotional offers from Spanx. You can unsubscribe at any time. View <a href="/pages/terms-conditions">Terms</a> and <a href="/pages/our-privacy-policy">Privacy</a>. </label> </div> </fieldset> </div> </form> </div> </email-capture> <div class="footer__sms u-hidden-tablet-down"> <div class="footer__sms-headline rte"> </div> <div class="footer__sms-legal-copy rte"> </div> <div class="footer__sms-support-id paragraph paragraph--small" v-if="$root.supportId" v-cloak> <span class="footer__sms-support-text">Support ID:</span> <span class="footer__sms-support-value" v-html="$root.supportId"></span> </div> </div> </mq-responsive> </div> <mq-responsive :target="['mobile', 'tablet']" class="row u-hidden"> <div class="footer__sms column small-12 medium-12"> <div class="footer__sms-headline rte"> </div> <div class="footer__sms-legal-copy rte"> </div> <div class="footer__sms-support-id paragraph paragraph--small" v-if="$root.supportId" v-cloak> <span class="footer__sms-support-text">Support ID:</span> <span class="footer__sms-support-value" v-html="$root.supportId"></span> </div> </div> </mq-responsive> <div class="footer__legal"> <ul class="footer__legal-list u-list-simple flex justify-center flex-wrap"> <li class="footer__legal-list-item"> <span class="footer__legal-list-link footer__linklist-link">&copy; 2025 Spanx, LLC.</span> </li><li class="footer__legal-list-item footer__legal-list-item--0"> <a class="footer__legal-list-link footer__linklist-link" href="/pages/terms-of-use">Terms of Use</a> </li><li class="footer__legal-list-item footer__legal-list-item--1"> <a class="footer__legal-list-link footer__linklist-link" href="/pages/our-privacy-policy">Privacy Policy</a> </li><li class="footer__legal-list-item footer__legal-list-item--2"> <a class="footer__legal-list-link footer__linklist-link" href="/pages/cookie-policy">Cookie Policy</a> </li><li class="footer__legal-list-item footer__legal-list-item--3"> <a class="footer__legal-list-link footer__linklist-link" href="https://privacyportal-eu.onetrust.com/webform/c0a5badd-5440-4f46-857d-4507c682205f/draft/d3d3259c-c94e-438b-a8ac-c82e8b37d18d">Do Not Share Or Sell My Personal Information</a> </li><li class="footer__legal-list-item footer__legal-list-item--4"> <a class="footer__legal-list-link footer__linklist-link" href="/pages/california-transparency-act">CA Transparency Act</a> </li><li class="footer__legal-list-item footer__legal-list-item--5"> <a class="footer__legal-list-link footer__linklist-link" href="/pages/accessibility">Accessibility</a> </li><li class="footer__legal-list-item footer__legal-list-item--6"> <a class="footer__legal-list-link footer__linklist-link" href="https://spanx-com.myshopify.com/sitemap.xml">Sitemap</a> </li></ul> </div> </div> </footer> </section><product-image-badges :image-badges="[{ &quot;badge_name&quot;: &quot;Eco-Conscious&quot;, &quot;badge_image&quot;: &quot;https://cdn.shopify.com/s/files/1/0549/4895/4134/t/8/assets/0f9c1c2cf869--Badge-v7-45fe36.png?v=1652137960&quot;, &quot;badge_priority&quot;: &quot;&quot; }]"></product-image-badges> <toast></toast> <div data-cart-subtotal class="u-hidden"></div> <sidecart :display-cart-discount-error-message="false" :settings="{ &quot;heading&quot;: &quot;Your Bag&quot;, &quot;showCartDiscountLabel&quot;: false, &quot;showApplyDiscount&quot;: true, &quot;showDiscountMessage&quot;: false,&quot;discountMessageIntlVisibility&quot;: &quot;domestic&quot;,&quot;cartDiscountLabel&quot;: &quot;&quot;, &quot;cartDiscountEntryLabel&quot;: &quot;Apply Promo Code&quot;, &quot;cartDiscountPlaceholder&quot;: &quot;Promo code&quot;, &quot;discountMessage&quot;: &quot;&quot;, &quot;globalBundleEnable&quot;: true, &quot;bfcmBundleEnable&quot;: false, &quot;cartBundleMessage&quot;: &quot;Add more eligible styles to bundle and save&quot;, &quot;currency&quot;: &quot;USD&quot;, &quot;cartTaxMessage&quot;: &quot;&quot;, &quot;emptyCart&quot;: { &quot;text&quot;: &quot;Oh no, your bag is empty!&quot;, &quot;buttonText&quot;: &quot;Start Shopping&quot;, &quot;buttonUrl&quot;: &quot;\/collections\/best-sellers&quot; }, &quot;cartPage&quot;: { &quot;buttonText&quot;: &quot;Continue Shopping&quot;, &quot;buttonUrl&quot;: &quot;\/collections\/best-sellers&quot; }, &quot;cartItemsMessage&quot;: { &quot;noFinalSaleText&quot;: &quot;\u003cp\u003eFree Shipping!\u003c\/p\u003e&quot;, &quot;finalSaleText&quot;: &quot;\u003cp\u003eYour cart contains final sale items.\u003cbr\/\u003eThese items cannot be returned or exchanged.\u003c\/p\u003e&quot;, &quot;finalSaleCountries&quot;: &quot;[\&quot;IE\&quot;, \&quot; DE\&quot;, \&quot; GB\&quot;, \&quot; SI\&quot;, \&quot; SK\&quot;, \&quot; RO\&quot;, \&quot; PL\&quot;, \&quot; LT\&quot;, \&quot; LV\&quot;, \&quot; HU\&quot;, \&quot; GR\&quot;, \&quot; FI\&quot;, \&quot; EE\&quot;, \&quot; CZ\&quot;, \&quot; CY\&quot;, \&quot; HR\&quot;, \&quot; BG\&quot;, \&quot; AT\&quot;, \&quot; MT\&quot;, \&quot; NO\&quot;, \&quot; DK\&quot;, \&quot; SE\&quot;, \&quot; PT\&quot;, \&quot; ES\&quot;, \&quot; LU\&quot;, \&quot; IT\&quot;, \&quot; BE\&quot;, \&quot; FR\&quot;, \&quot; NL\&quot;]&quot;, &quot;internationalFinalSaleText&quot;: &quot;Your cart contains final sale items which may be returned\/exchanged within 14 days of delivery.&quot;, &quot;internationalFinalSaleTooltip&quot;: &quot;\u003cp\u003eEU and UK customers may return final sale items within 14 days of delivery. Please email contactus@spanx.com to begin the return process.\u003c\/p\u003e&quot;, &quot;finalSaleTooltipLabel&quot;: &quot;Learn more&quot;, &quot;finalSaleIcon&quot;: false, &quot;noFinalSaleIcon&quot;: true, &quot;discountErrorMessageText&quot;: &quot;Items in your cart or your total purchase amount do not qualify for the discount code.&quot;, &quot;shippingFreeLabel&quot;: &quot;FREE&quot;, &quot;freeShippingFeatureFlag&quot;: true,&quot;intlVisibility&quot;: { &quot;finalSaleText&quot;: &quot;all&quot;, &quot;noFinalSaleText&quot;: &quot;domestic&quot; }}, &quot;lineItemRejectionMessage&quot;: false, &quot;discountCodesDisabled&quot;: false, &quot;banner&quot;: { &quot;text&quot;: &quot;Spend $200 now, score $50 off a future full-price order! \u003ca href=\&quot;\/pages\/spend-200-now-get-50-off-later-february-2025\&quot; title=\&quot;Spend $200 Now, Get $50 Off Later: February 2025\&quot;\u003eTerms\u003c\/a\u003e&quot;, &quot;backgroundColor&quot;: &quot;#FFFFFF&quot;, &quot;textColor&quot;: &quot;#4f586f&quot;, &quot;iconColor&quot;: &quot;none&quot; ,&quot;bannerIntlVisibility&quot;: &quot;domestic&quot;} }" :customer="{ &quot;id&quot;: null, &quot;email&quot;: null }" :cross-sell="[{ &quot;id&quot;: &quot;7714846146771&quot;, &quot;handle&quot;: &quot;spanx-fit-to-you-bikini-3-pack-box&quot;, &quot;position&quot;:0},{ &quot;id&quot;: &quot;7714846212307&quot;, &quot;handle&quot;: &quot;spanx-fit-to-you-thong-3-pack-box&quot;, &quot;position&quot;:1},{ &quot;id&quot;: &quot;7714800664787&quot;, &quot;handle&quot;: &quot;spanxshape-extraordinary-brief&quot;, &quot;position&quot;:2},{ &quot;id&quot;: &quot;9348083351763&quot;, &quot;handle&quot;: &quot;spanxshape-extraordinary-thong&quot;, &quot;position&quot;:3},{ &quot;id&quot;: &quot;6708097745107&quot;, &quot;handle&quot;: &quot;spanxsmooth-undie-tectable-brief&quot;, &quot;position&quot;:4}]" :cross-sell-two="[{ &quot;id&quot;: &quot;9348082532563&quot;, &quot;handle&quot;: &quot;spanx-airessentials-half-zip&quot;, &quot;position&quot;:0},{ &quot;id&quot;: &quot;9348082696403&quot;, &quot;handle&quot;: &quot;spanx-airessentials-crewneck&quot;, &quot;position&quot;:1},{ &quot;id&quot;: &quot;7714808824019&quot;, &quot;handle&quot;: &quot;spanx-airessentials-turtleneck-tunic&quot;, &quot;position&quot;:2},{ &quot;id&quot;: &quot;6708137689299&quot;, &quot;handle&quot;: &quot;spanxshape-booty-boost-7-8-leggings&quot;, &quot;position&quot;:3},{ &quot;id&quot;: &quot;6708136640723&quot;, &quot;handle&quot;: &quot;spanxshape-faux-leather-leggings&quot;, &quot;position&quot;:4}]" :sitewide-sale-enabled="false" :flash-sale-enabled="false" :end-of-season-enabled="false" :final-text="{ &quot;text&quot;: &quot;cannot be returned or exchanged.&quot; }" cross-sell-title="Add these styles to your bag" cross-sell-title-two="Shop Best Sellers" cross-sell-position="1" file-path="//spanx.com/cdn/shop/files/?152934" :show-payment-terms-on-cart="false" :payment-terms-on-cart="''" :disable-cross-sell="false" :disable-cross-sell-two="false" promo-text="" :intl-feature-flags="{ &quot;intlVisibilityEnabled&quot;: true, &quot;intlFinalSaleCustomLogicEnabled&quot;: true, &quot;intlCountryListTranslationDisabled&quot;: false }" :intl-final-sale-categories="[&quot;underwear&quot;,&quot;panties&quot;]" :sale-standard-include-markdown-sale-variants="false" :bau-standard-include-variants-compare-at-price="false" accelerated-checkout-options="" :show-accelerated-checkout-options="false" :order-summary-feature-flag="true" :checkout-cta-feature-flag="false" :show-sidecart-footer="true" :is-percent-off-red="false" > </sidecart> <portal-target name="modal-target" multiple></portal-target> </div><script> // Set theme settings to global object, so it can be accessed in GTM window.settings = { klaviyoAppId: "RN8rMY", klaviyoExpressConsent: "true", onelinkProjectKey: "", friendbuyMerchantId: "edeba4b0-672d-48a4-bd79-48491169aad3", kustomerChatStoreIdentifier: "66b12ac46d667d46aade6304", attentiveOverlayAdjstZIndex: true, attentiveLowOverlayZIndex: 3, passCountryCodeToBundleScriptAsItemAttribute: true } </script> <script> window.bvaccel = { template: "index" }; </script><script> ;((window) => { window.i18nHelpers = window.i18nHelpers || { settings: {}, functions: {}, localization: {} }; window.i18nHelpers.functions.getLocalization = () => { if (typeof window?.i18nHelpers?.localization !== "undefined") { return window.i18nHelpers.localization; } return {}; }; window.i18nHelpers.functions.getAvailableLanguages = function() { return window?.i18nHelpers?.localization?.currentLocation?.availableLanguages || []; }; window.i18nHelpers.functions.getCurrentLanguageCode = function() { return window?.i18nHelpers?.localization?.currentLocation?.language?.code || null; }; window.i18nHelpers.functions.getCurrentCountryCode = function() { return window?.i18nHelpers?.localization?.currentLocation?.country?.code || null; }; window.i18nHelpers.functions.getCurrentCurrencyCode = function() { return window?.i18nHelpers?.localization?.currentLocation?.currency?.code || null; }; window.i18nHelpers.functions.getAllCountries = (getCountriesWithoutFiltering = false) => { if(getCountriesWithoutFiltering) { const { allCountries, } = window?.i18nHelpers?.localization || {}; if (!Array.isArray(allCountries) || !allCountries.length) { console.error("The country list is not available"); return []; } return allCountries; } const { availableCountries } = window?.i18nHelpers?.localization || []; if (!Array.isArray(availableCountries) || !availableCountries.length) { console.error("The country list is not available"); return []; } return availableCountries; }; window.i18nHelpers.functions.getComingSoonCountries = () => { const countryComingSoonList = "DE".split(","); const allCountries = window.i18nHelpers.functions.getAllCountries(true); const comingSoonCountries = allCountries .filter(country => countryComingSoonList.includes(country.code)) .map(country => { Object.defineProperty(country, "comingSoon", { value: true, writable: true }); return country; }); return [...new Set(comingSoonCountries)]; }; window.i18nHelpers.functions.getAllCountriesByContinent = function() { const { availableCountries } = window?.i18nHelpers?.localization || []; const comingSoonCountries = window.i18nHelpers.functions.getComingSoonCountries(); const { titleCase } = window?.i18nHelpers?.functions || (str => str); const enableComingSoonList = "false" === "true"; const countriesWithLanguages = []; if (!Array.isArray(availableCountries) || !availableCountries.length) { console.error("The country list is not available"); return []; } availableCountries.forEach(country => { if (country.availableLanguages.length > 1) { country.availableLanguages.forEach(language => { countriesWithLanguages.push({ name: titleCase(`${country.name} (${language.endonymName})`), code: country.code, currency: country.currency, availableLanguages: [language], continent: titleCase( country.continent.toLowerCase() === "amérique du nord" ? "North America" : country.continent ) }); }); } else { countriesWithLanguages.push(country); } }); const countriesByContinent = countriesWithLanguages.reduce((acc, country) => { const { continent } = country; if (!acc[continent]) { acc[continent] = []; } acc[continent].push(country); return acc; }, {}); const continentsOrder = ["North America", "Europe", "Asia", "Central America", "Africa", "South America", "Oceania"]; const sortedCountriesByContinent = Object.keys(countriesByContinent) .sort((a, b) => continentsOrder.indexOf(a) - continentsOrder.indexOf(b)) .reduce((acc, key) => { acc[key] = countriesByContinent[key]; return acc; }, {}); const comingSoonCountriesByContinent = comingSoonCountries.reduce((acc, country) => { const { continent } = country; if (!acc[continent]) { acc[continent] = []; } acc[continent].push(country); return acc; }, {}); if(enableComingSoonList){ Object.keys(comingSoonCountriesByContinent).forEach(continent => { if (!sortedCountriesByContinent[continent]) { sortedCountriesByContinent[continent] = []; } Object.keys(comingSoonCountriesByContinent[continent]).forEach(index => { const comingSoonCountry = comingSoonCountriesByContinent[continent][index]; const existingCountryIndex = sortedCountriesByContinent[continent] .findIndex(country => country.code === comingSoonCountry.code); if (existingCountryIndex > -1) { sortedCountriesByContinent[continent][existingCountryIndex]["comingSoon"] = true; } else { sortedCountriesByContinent[continent].concat(comingSoonCountry); } sortedCountriesByContinent[continent].sort((a, b) => { if (a.comingSoon && !b.comingSoon) { return 1; } if (!a.comingSoon && b.comingSoon) { return -1; } return 0; }); }); }); } Object.keys(sortedCountriesByContinent).forEach(continent => { if (!sortedCountriesByContinent[continent]?.length) { delete sortedCountriesByContinent[continent]; } }); return sortedCountriesByContinent; }; window.i18nHelpers.functions.getCountryFlag = countryCode => { let base_url = "https://cdn.shopify.com/s/files/1/0549/4895/4134/files/"; base_url = base_url.endsWith("/") ? base_url : `${base_url}/`; return `${base_url}flag-${countryCode}.png?v=${+new Date()}`; }; window.i18nHelpers.functions.getCurrentCountry = () => { const isCAStore = window?.i18nHelpers?.localization?.isCAStore; if (isCAStore) { return window.i18nHelpers.functions.getCountry("CA"); } const currentCountryCode = window.i18nHelpers.functions.getCurrentCountryCode(); return window.i18nHelpers.functions.getCountry(currentCountryCode); }; window.i18nHelpers.functions.getCurrentCountryFlag = () => { const isCAStore = window?.i18nHelpers?.localization?.isCAStore; if (isCAStore) { return window.i18nHelpers.functions.getCountryFlag("CA"); } const currentCountry = window.i18nHelpers.functions.getCurrentCountryCode(); return window.i18nHelpers.functions.getCountryFlag(currentCountry); }; window.i18nHelpers.functions.getCountry = countryCode => { const { getAllCountries } = window?.i18nHelpers?.functions || null; if (typeof getAllCountries !== "function") { console.error("Unable to retrieve the country list"); return null; } const allCountries = getAllCountries(true); const country = allCountries.find(country => country.code === countryCode.trim().toUpperCase()) || null; return country || null; }; window.i18nHelpers.functions.getCountryWithSelectedLanguage = (countryCode, languageCode) => { const { getCountry } = window?.i18nHelpers?.functions || null; if (typeof getCountry !== "function") { console.error("Unable to retrieve the country"); return null; } const country = getCountry(countryCode); if (!country) { console.error("The country is not available", countryCode, languageCode); return null; } const { availableLanguages } = country; const selectedLanguage = availableLanguages.find(language => language.code === languageCode.trim().toLowerCase()); return selectedLanguage ? { ...country, selectedLanguage } : null; }; window.i18nHelpers.functions.getCurrentCurrency = function() { return window.i18nHelpers.functions.getCurrentCurrencyCode() || null; }; window.i18nHelpers.functions.getCurrentCurrencyFormat = function(withCurrencyCode = true) { const liquidFormat = "$1,000.00 USD"; const decimalSeparator = liquidFormat.indexOf(".") > liquidFormat.indexOf(",") ? "." : ","; const symbol = window?.i18nHelpers?.localization?.currentLocation?.currency?.symbol || ""; const code = window?.i18nHelpers?.localization?.currentLocation?.currency?.code || ""; const trailingSymbol = liquidFormat.includes(symbol) && liquidFormat.indexOf(symbol) > liquidFormat.indexOf(decimalSeparator); if (withCurrencyCode) { return { symbol, decimalSeparator, trailingSymbol, code }; } return { symbol, decimalSeparator, trailingSymbol }; }; window.i18nHelpers.functions.getCurrencyFormat = function(languageCode = null) { const currencyFormat = window.i18nHelpers.functions.getCurrentCurrencyFormat() || { decimalSeparator: ".", symbol: "$", trailingSymbol: false }; return currencyFormat; }; window.i18nHelpers.functions.isDomesticLocation = function(countryCode = null) { const targetCountryCode = countryCode || window?.i18nHelpers?.functions?.getCurrentCountryCode() || ""; const domesticLocations = ["US"]; if (window?.i18nHelpers?.localization?.isCanadaMarketEnabled !== true) { domesticLocations.push("CA"); } return domesticLocations.includes(targetCountryCode); }; window.i18nHelpers.functions.isInternationalLocation = function(countryCode = null) { const targetCountryCode = countryCode || window?.i18nHelpers?.functions?.getCurrentCountryCode() || ""; const isDomestic = window?.i18nHelpers?.functions?.isDomesticLocation(targetCountryCode) || null; return isDomestic === null ? true : !isDomestic; }; window.i18nHelpers.functions.isVisibleForCountry = function(visibility, countryCode = null) { const { isDomesticLocation, isInternationalLocation } = window?.i18nHelpers?.functions || { isDomesticLocation: null, isInternationalLocation: null }; if (!visibility || typeof visibility !== "string") return null; if (isDomesticLocation === null || isInternationalLocation === null) return null; switch (visibility?.toLowerCase()) { case "domestic": return isDomesticLocation(countryCode); case "international": return isInternationalLocation(countryCode); case "all": return true; default: return false; }; }; })(window);</script><script> ;((window) => { const defaultLanguageCode = "en"; const checkoutLocalizationParamName = "locale"; // Shopify's const isCanadaStore = () => { return window?.i18nHelpers?.localization?.isCAStore || null; };const isLanguageSupported = langCode => { if (!langCode || langCode === "") return false; const { getAvailableLanguages } = window.i18nHelpers.functions; const supportedLanguages = getAvailableLanguages(); const supportedLanguagesCodes = supportedLanguages.length ? supportedLanguages.map(lang => lang?.code) : []; return supportedLanguagesCodes.length ? supportedLanguagesCodes.includes(langCode) : langCode === defaultLanguageCode; };const getCurrentLanguageCodeFromURLFolder = () => { try { const currentPathParts = (window.location.pathname.split("/") || []).filter( part => part.trim() !== "" ); const folder = currentPathParts.length ? currentPathParts[0].trim().toLowerCase() : ""; return isLanguageSupported(folder) ? folder : false; } catch (err) { return false; } };const getCurrentLanguageCodeFromCookies = () => { try { const transperfectCookieName = "langPref"; const customCookieName = "lang"; const separator = "_"; const langCookie = document.cookie.match(`(^|;)\\s*${transperfectCookieName}\\s*=\\s*([^;]+)`) || document.cookie.match(`(^|;)\\s*${customCookieName}\\s*=\\s*([^;]+)`) || null; if (langCookie) { const langCookieVal = (langCookie.pop() || "").trim().toLowerCase() || ""; const langCode = langCookieVal.includes(separator) ? langCookieVal.split(separator).shift() : langCookieVal; return isLanguageSupported(langCode) ? langCode : false; } return false; } catch (err) { return false; } };const getCurrentLanguageCodeFromLocale = () => { try { const separator = "-"; const checkoutLocale = window.Shopify?.Checkout?.locale || null; if (checkoutLocale) { const checkoutLocaleVal = checkoutLocale.trim().toLowerCase() || ""; const langCode = checkoutLocaleVal.includes(separator) ? checkoutLocaleVal.split(separator).shift() : checkoutLocaleVal; return isLanguageSupported(langCode) ? langCode : false; } return false; } catch (err) { return false; } };window.i18nHelpers = window.i18nHelpers || { settings: {}, functions: {}, localization: {} };window.i18nHelpers.settings = { quebecLocalizeCheckoutURL: false, quebecLocalizeCheckoutModule: false };window.i18nHelpers.functions.getDefaultLanguageCode = function() { return defaultLanguageCode; }; window.i18nHelpers.functions.getShopifyLocalizationParamName = function() { return checkoutLocalizationParamName; }; window.i18nHelpers.functions.isCanada = function() { return isCanadaStore(); };window.i18nHelpers.functions.isQuebecLocalizedCheckoutEnabled = function() { const { quebecLocalizeCheckoutURL, quebecLocalizeCheckoutModule } = window.i18nHelpers.settings; return quebecLocalizeCheckoutModule || quebecLocalizeCheckoutURL; };window.i18nHelpers.functions.isQuebecCheckoutModuleLocalizationEnabled = function() { const { isQuebecLocalizedCheckoutEnabled } = window.i18nHelpers.functions; const { quebecLocalizeCheckoutModule } = window.i18nHelpers.settings; return isQuebecLocalizedCheckoutEnabled() && quebecLocalizeCheckoutModule; };window.i18nHelpers.functions.parseLanguageTag = function(languageTag) { if (!languageTag) return false; const tagSeparator = "_"; const { getCurrentCountryCode, getAvailableLanguages } = window.i18nHelpers.functions; const availableLanguages = getAvailableLanguages(); let parsedLanguageTag = { countryCode: false, languageCode: false, languageTag: false }; switch (languageTag.trim().length) { // ISO639-1 (2 letter language code) case 2: { const languageCode = languageTag.trim().toLowerCase(); const currentCountryCode = getCurrentCountryCode(); if (!(availableLanguages.filter(lang => (lang?.code || "") === languageCode) || []).length) break; parsedLanguageTag = { countryCode: currentCountryCode, languageCode, languageTag: `${languageCode}_${currentCountryCode}` }; break; } // ISO639-1 (2 letter language code) + SEPARATOR + ISO3166-1 (2 letter country code) case 5: { if (!languageTag.contains(tagSeparator)) break; const [languageCode, countryCode] = languageTag .split(tagSeparator) .map((code, i) => { return (i === 0 ? code.toLowerCase() : code.toUpperCase()).trim(); }); if (!(availableLanguages.filter(lang => (lang?.code || "") === languageCode) || []).length) break; parsedLanguageTag = { countryCode, languageCode, languageTag: `${languageCode}_${countryCode}` }; break; } // unknown/unexpected language tag format default: { return false; } } return Object.keys(parsedLanguageTag).some( key => parsedLanguageTag[key] === false ) ? false : parsedLanguageTag; };window.i18nHelpers.functions.getUserLocalePreference = function() { const { parseLanguageTag } = window.i18nHelpers.functions; let userPreference = defaultLanguageCode;userPreference = getCurrentLanguageCodeFromURLFolder() || getCurrentLanguageCodeFromCookies(); return parseLanguageTag(userPreference ? userPreference : defaultLanguageCode); };window.i18nHelpers.functions.getUserLanguageCodePreference = function() { const { getUserLocalePreference } = window.i18nHelpers.functions; const localePref = getUserLocalePreference(); return localePref.languageCode ? localePref.languageCode : false; };window.i18nHelpers.functions.getUserLanguageOnCheckout = function() { const { parseLanguageTag } = window.i18nHelpers.functions; const { getUserLocalePreference } = window.i18nHelpers.functions; let userPreference = defaultLanguageCode;userPreference = getCurrentLanguageCodeFromCookies() || getCurrentLanguageCodeFromLocale(); const localePref = parseLanguageTag(userPreference ? userPreference : defaultLanguageCode); return localePref.languageCode ? localePref.languageCode : false; }; })(window); </script> <script> class KlaviyoApiClient { apiUrl = "https://fa-p-klaviyo-api.azurewebsites.net/api"; siteId = ""; requestDataModel = { profileId: "", listId: "", listIds: [], payload: { attributes: { properties: { $language: "", $source: [], $consent: ["email"], // for backwards compatibility "consent[]": ["email", "marketing"], // for backwards compatibility "source[]": [] // to prevent data loss on the $source field // https://help.klaviyo.com/hc/en-us/articles/1260804673530 } } }, options: { delayInSec: 0, source: "Function App API", consent: false, consents: {} } }; lastError = null; lastResponse = null; constructor({ siteId, apiUrl = "" } = {}) { this.siteId = siteId; if (apiUrl !== "") { this.apiUrl = apiUrl; } } get lastError() { return JSON.parse(this.lastError); } get lastResponse() { return JSON.parse(this.lastResponse); } set lastError(error) { this.lastError = JSON.stringify(error); this.lastResponse = null; } set lastResponse(response) { this.lastResponse = JSON.stringify(response); this.lastError = null; } set apiUrl(url) { this.apiUrl = url; } set siteId(siteId) { this.siteId = siteId; } get requestDataModel() { return Object.assign({}, this.requestDataModel); } parseRequestDataModel(languageCode = "") { const model = Object.assign({}, this.requestDataModel); model.payload = Object.assign({}, model.payload) || {}; model.payload.attributes = Object.assign({}, model.payload.attributes) || {}; model.payload.attributes.properties = Object.assign({}, model.payload.attributes.properties) || {}; try { if ( languageCode === "" && window && window.i18nHelpers && window.i18nHelpers.functions ) { // the checkout version of the helper function to get the user // language fits both - theme and checkout - in this context const { getUserLanguageOnCheckout } = window.i18nHelpers.functions; if ( getUserLanguageOnCheckout && typeof getUserLanguageOnCheckout === "function" ) { languageCode = getUserLanguageOnCheckout() || ""; } } else { languageCode = ""; } } catch (error) { // eslint-disable-next-line no-console console.error("Unable to get the user language: ", error.message); languageCode = ""; } finally { model.payload.attributes.properties.$language = languageCode; return { model: Object.assign({}, model), modelPayload: Object.assign({}, model.payload), modelAttributes: Object.assign({}, model.payload.attributes), modelProperties: Object.assign({}, model.payload.attributes.properties) }; } } parseJsonToBoolResponse(jsonResponse) { this.lastResponse = Object.assign({}, jsonResponse); return ( jsonResponse.success === true && jsonResponse.statusCode >= 200 && jsonResponse.statusCode <= 225 ); } buildEmktSubscriptionRequest({ email, listId, source, languageCode = "", consentVersion = "", expressConsent = true, delayInSec = 0, customAttributes = { properties: {} } }) { const { model, modelPayload, modelAttributes, modelProperties } = this.parseRequestDataModel(languageCode); const request = { ...model, email, listIds: [listId], payload: { ...modelPayload, attributes: { ...modelAttributes, ...customAttributes, location: { country: "United States", }, properties: { ...modelProperties, ...(customAttributes.properties || {}), $source: source, "source[]": source, last_optin_geolocation: window.SPANX.getGeotargetlyCountryCode(), last_shopify_localization_selected: "US", } } }, source, mktConsents: { [listId]: true }, delayInSec }; if (expressConsent === true) { request.payload.attributes.properties.$method_id = "api"; request.payload.attributes.properties.$method_type = "Shopify Form"; request.payload.attributes.properties.$consent_version = consentVersion; // for backwards compatibility request.payload.attributes.properties.consentVersion = request.payload.attributes.properties.$consent_version; } return request; } async callApi({ method, endpoint, email, data }) { try { const request = { method, mode: "cors", cache: "no-cache", credentials: "same-origin", headers: { "Content-Type": "application/x-www-form-urlencoded;charset=UTF-8", }, redirect: "follow", referrerPolicy: "no-referrer", }; if (method === "POST" && data) { request.body = JSON.stringify(data); } const encodedEmail = encodeURIComponent(email).replace(/\+/g, "%2B").toLowerCase().trim(); const queryParams = `publicKey=${this.siteId}&email=${encodedEmail}&t=${+new Date()}`; const url = `${this.apiUrl}/${endpoint}?${queryParams}`; const response = await fetch(url, request); const json = await response.json(); if ( json && json.rateLimits && typeof json.rateLimits === "object" && Object.keys(json.rateLimits).length && json.rateLimits.nearLimit === true ) { console.warn("Subscriptions API rate limit warning"); } return this.parseJsonToBoolResponse(json); } catch (error) { this.lastError = Object.assign({}, error); // eslint-disable-next-line no-console console.error(error.message); return error; } } async fetchProfile(email) { if (window.helpers?.emailValidate(email) === false) { return Promise.reject({ statusCode: 400, message: "Invalid email!"}); } const method = "GET"; const endpoint = "profiles/fetch-profile"; const response = await this.callApi({ method, endpoint, email }); return response; } async updateProfile(profileId, payload, source, languageCode = "") { const method = "POST"; const endpoint = "profiles/update-profile"; const { model, modelPayload, modelAttributes, modelProperties } = this.parseRequestDataModel(languageCode); const data = { ...model, profileId, payload: { ...modelPayload, ...payload, attributes: { ...modelAttributes, ...(payload.attributes || {}), properties: { ...modelProperties, ...(payload.attributes || { properties: {} }).properties, $source: source, "source[]": source } } } }; const response = await this.callApi({ method, endpoint, email: "*", data }); return response; } async createProfile(email, payload, source, languageCode = "") { if (window.helpers?.emailValidate(email) === false) { return Promise.reject({ statusCode: 400, message: "Invalid email!"}); } const method = "POST"; const endpoint = "profiles/create-profile"; const { model, modelPayload, modelAttributes, modelProperties } = this.parseRequestDataModel(languageCode); const data = { ...model, payload: { ...modelPayload, ...payload, attributes: { ...modelAttributes, ...(payload.attributes || {}), properties: { ...modelProperties, ...(payload.attributes || { properties: {} }).properties, $source: source, "source[]": source } } } }; const response = await this.callApi({ method, endpoint, email, data }); return response; } async addToList(profileId, listId) { const method = "POST"; const endpoint = "lists/add-profile-to-list"; const data = { ...this.requestDataModel, profileId, listId }; const response = await this.callApi({ method, endpoint, email: "*", data }); return response; } async subscribeToList(email, profileId, listId, source) { if (window.helpers?.emailValidate(email) === false) { return Promise.reject({ statusCode: 400, message: "Invalid email!"}); } const method = "POST"; const endpoint = "subscriptions/subscribe-profile-to-list"; const data = { ...this.requestDataModel, profileId, listId, options: { source, consent: true } }; const response = await this.callApi({ method, endpoint, email, data }); return response; } async updateSubscriptions({ email, listIds, payload, source, mktConsents, delayInSec = 0.5, languageCode = "" }) { if (window.helpers?.emailValidate(email) === false) { return Promise.reject({ statusCode: 400, message: "Invalid email!"}); } const method = "POST"; const endpoint = "update-subscriptions"; const { model, modelPayload, modelAttributes, modelProperties } = this.parseRequestDataModel(languageCode); const data = { ...model, listIds: [...new Set(listIds)], payload: { ...modelPayload, ...payload, attributes: { ...modelAttributes, ...(payload.attributes || {}), properties: { ...modelProperties, ...(payload.attributes || { properties: {} }).properties, $source: source, "source[]": source } } }, options: { consents: mktConsents, delayInSec, source } }; const response = await this.callApi({ method, endpoint, email, data }); return response; } } window.SPANX = window.SPANX || {}; window.SPANX.KlaviyoApiClient = KlaviyoApiClient; window.SPANX.getGeotargetlyCountryCode = function getGeotargetlyCountryCode() { const countryCode = localStorage.getItem("geotargetly_country_code"); if (countryCode) { return countryCode; } if ("geotargetly_country_code" in window === false) { return "N/A"; } return window.geotargetly_country_code(); } </script> <script src="//spanx.com/cdn/shop/t/82/assets/vendors-main.js?v=101010317133218047861739207724" type="text/javascript"></script> <script src="//spanx.com/cdn/shop/t/82/assets/main.js?v=142557694577629049091739372656" type="text/javascript"></script> <script src="//spanx.com/cdn/shop/t/82/assets/vimeo_player.js?v=155463920105762432881687353311" type="text/javascript"></script> <script> (function () { /* DATALAYER: Log State */ var logState = { 'isCustomer' : false, 'logState' : "Logged Out", 'customerType' : "New", 'userId' : "", 'customerEmail' : null, 'checkoutEmail' : null, 'currency' : Shopify?.currency?.active || window.NA, 'exchangeRate' : Shopify?.currency?.rate || window.NA, 'customerFirst' : null, 'customerLast' : null, 'totalOrders' : "", 'totalSpent' : 0, 'pageLanguage' : "en-US", 'event' : 'Customer Details', }; /* DATALAYER: Base Event */ var url = window.location.href; var baseEvent = { 'pageType': "index", 'event': "index", }; /* DATALAYER: Collections */ /* DATALAYER: Product Detail Page */ /* DATALAYER: Cart View */ /* DATALAYER: Checkout & Transaction Data */ if (url.indexOf('order') > -1) { __bva__products = []; var transactionData = { 'checkoutInfoHashed' : { 'email' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'fullName' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'firstName' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'lastName' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'address1' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'address2' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'street' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'city' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'province' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'zip' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'country' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 'phone' : 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855' }, 'transactionNumber' : null, 'transactionId' : null, 'transactionAffiliation' : "Spanx", 'transactionCurrency' : Shopify?.currency?.active || window.NA, 'transactionTotal' : Number(), 'transactionTax' : Number(), 'transactionShipping' : Number(), 'transactionSubtotal' : Number(), 'products': __bva__products, }; if (url.indexOf('order') > -1) { baseEvent = transactionData; baseEvent.pageType = 'Order Status'; baseEvent.event = 'Order Status'; } } /* DATALAYER: Template-Specific Events */ dataLayer.push(logState); dataLayer.push(baseEvent); /* DATALAYER: All Pages */ dataLayer.push({ 'event': 'DataLayer Loaded' }); }()); function decodeHtmlEntities(input) { return new DOMParser().parseFromString(input, 'text/html').body.textContent; } function fetchCategory(itemID, fallback) { const cartStorage = sessionStorage.getItem("productCategory"); if (cartStorage) { const match = JSON.parse(cartStorage).find(storageItem => storageItem.id === itemID); return match && match.category ? match.category : fallback; } return fallback; } </script> <script> window.localStorage.setItem("last_shipping_country_code", ""); </script> <!-- Algolia head --> <script> var ALGOLIA_INSIGHTS_SRC = "https://cdn.jsdelivr.net/npm/search-insights@1.6.3"; !function(e,a,t,n,s,i,c){e.AlgoliaAnalyticsObject=s,e[s]=e[s]||function(){ (e[s].queue=e[s].queue||[]).push(arguments)},i=a.createElement(t),c=a.getElementsByTagName(t)[0], i.async=1,i.src=n,c.parentNode.insertBefore(i,c) }(window,document,"script",ALGOLIA_INSIGHTS_SRC,"aa"); const isCanada = () => { const caURLS = ['spanx.ca', 'spanx-ca-dev.myshopify.com', 'spanx-ca-com.myshopify.com']; const windowLocation = window.location.href; // check if window location includes a substring from string array if (caURLS.some(function(v) { return windowLocation.indexOf(v) >= 0; })) { // There's at least one return true; } return false }; const isBFCMStore = () => { const BFCMStoreURL = "spanx-bfcm.myshopify.com"; const windowLocation = window.location.href; return windowLocation.indexOf(BFCMStoreURL) >= 0; } const isUSProd = () => { const USPodURL = "spanx.com"; const windowLocation = window.location.href; return windowLocation.indexOf(USPodURL) >= 0; }; const getAlgoliaIdAndKey = () => { // US DEV/PROD -- ALGOLIA APP ID let algoliaId = "WQD8KYMS9K"; // US DEV -- ALGOLIA API KEY let algoliaKey = "fa523836f7b4d1f136bd12b20da3f4d3"; if (isCanada()) { algoliaId = "LD515O4VDO"; algoliaKey = "90df238c93b11c4cff81a5a9a89e8e31"; } if (isBFCMStore()) { algoliaId = "RO2WDBBNXL"; algoliaKey = "c8c20d1b3a0bafd627c11f40b51bae80"; } else if (isUSProd()) algoliaKey = "fa523836f7b4d1f136bd12b20da3f4d3"; return { algoliaId, algoliaKey }; }; const { algoliaId: ALGOLIA_ID, algoliaKey: ALGOLIA_KEY } = getAlgoliaIdAndKey(); aa("init", { appId: ALGOLIA_ID, apiKey: ALGOLIA_KEY });</script> <!-- End Algolia Search Insights --> <!-- /Algolia head --> <style> .hero__body-text--desktop strong {font-weight: 600 !important;} @media (max-width: 649px) {.hero__heading span:not(:first-child) {line-height: 130%; } .hero__cta-wrapper {margin-top: 10px !important; }} #FreeShippingBanner {display: none !important;} .globale-free-shipping-banner #FreeShippingBanner {width: 100%; height: 100%; display: inline-block !important; position: relative; line-height: 28px !important; background-color: transparent !important;} .sidecart__header-content-row--shipping {margin-bottom: 0 !important;} .sidecart-banner__container {padding-top: 0 !important;} </style> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10