{"id":58428,"date":"2024-08-12T10:37:32","date_gmt":"2024-08-12T15:37:32","guid":{"rendered":"https:\/\/www.shipstation.com\/?page_id=58428"},"modified":"2026-09-24T10:48:14","modified_gmt":"2026-09-24T15:48:14","slug":"home","status":"publish","type":"page","link":"https:\/\/www.shipstation.com\/","title":{"rendered":"Shipping Software for Ecommerce Fulfillment"},"content":{"rendered":"\n<style data-wp-block-html=\"css\">\n.block-hero{display:none;}\n.ltl-hero-2 .form {\n    padding: 0 !important;\n}\n.ltl-hero-2 .hero-form {\n    background-color: transparent;\n    box-shadow: none !important;\n    --tw-shadow: none !important;\n    --tw-shadow-colored: none !important;\n}\n<\/style>\n\n<script data-wp-block-html=\"js\">\n(function () {\n  var VARIANT_MAP = {\n    '5146116084203520': 1,\n    '6395579046035456': 2,\n    '4835663583903744': 3\n  };\n  var FALLBACK_BLOCK = 1;\n  var SEARCH_TIMEOUT_MS = 1000;\n  var MAX_SCAN_DEPTH = 4;\n  var REVEAL_MS = 450;\n\n  var resolved = false;\n  var timeoutId = null;\n\n  function prefersReducedMotion() {\n    if (!window.matchMedia) return false;\n    return window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n  }\n\n  function revealSection(section) {\n    section.style.display = 'block';\n\n    if (prefersReducedMotion()) {\n      section.style.height = 'auto';\n      section.style.overflow = 'visible';\n      section.style.opacity = '1';\n      return;\n    }\n\n    \/\/ Padding isn't part of the collapsed stylesheet rule above (only\n    \/\/ display\/height\/opacity\/overflow are), so it still reflects the\n    \/\/ theme's real value at the CURRENT viewport width here \u2014 read it\n    \/\/ before we touch it, the same way it always has to be discovered\n    \/\/ fresh rather than hardcoded, since it can differ per breakpoint.\n    var computed = window.getComputedStyle(section);\n    var naturalPaddingTop = computed.paddingTop;\n    var naturalPaddingBottom = computed.paddingBottom;\n\n    \/\/ height:0 alone only zeroes the content box \u2014 top\/bottom padding from\n    \/\/ the theme's spacing classes still renders on top of that. Zeroing\n    \/\/ (and animating) padding right alongside height avoids an abrupt\n    \/\/ partial-height jump when the animation starts. Forcing content-box\n    \/\/ here too means the math is unambiguous regardless of whatever\n    \/\/ box-sizing the theme's reset applies.\n    section.style.boxSizing = 'content-box';\n    section.style.paddingTop = '0px';\n    section.style.paddingBottom = '0px';\n\n    var targetHeight = section.scrollHeight;\n    var easing = 'cubic-bezier(0.22, 1, 0.36, 1)'; \/\/ fast start, long smooth settle \u2014 for a softer outro\n    section.style.transition =\n      'height ' + REVEAL_MS + 'ms ' + easing + ', ' +\n      'opacity ' + REVEAL_MS + 'ms ' + easing + ', ' +\n      'padding-top ' + REVEAL_MS + 'ms ' + easing + ', ' +\n      'padding-bottom ' + REVEAL_MS + 'ms ' + easing;\n\n    \/\/ Two rAFs so the starting state (height\/opacity already 0 from the\n    \/\/ stylesheet, padding just zeroed above) is committed as its own frame\n    \/\/ before we change to the target values \u2014 otherwise some browsers\n    \/\/ coalesce both changes and skip the transition entirely.\n    requestAnimationFrame(function () {\n      requestAnimationFrame(function () {\n        section.style.height = targetHeight + 'px';\n        section.style.paddingTop = naturalPaddingTop;\n        section.style.paddingBottom = naturalPaddingBottom;\n        section.style.opacity = '1';\n      });\n    });\n\n    section.addEventListener('transitionend', function onEnd(e) {\n      if (e.propertyName !== 'height') return;\n      section.removeEventListener('transitionend', onEnd);\n      \/\/ 'auto'\/'visible', not '' \u2014 the stylesheet rule's own default for\n      \/\/ these two is the COLLAPSED state, so reverting to '' would snap the\n      \/\/ section back to invisible. 'auto' also means any later resize or\n      \/\/ orientation change is handled by the browser's normal reflow, with\n      \/\/ no extra code needed here. Padding reverts to '' safely since the\n      \/\/ stylesheet rule never touches it.\n      section.style.height = 'auto';\n      section.style.overflow = 'visible';\n      section.style.paddingTop = '';\n      section.style.paddingBottom = '';\n      section.style.boxSizing = '';\n      section.style.transition = '';\n    });\n  }\n\n  function applyBlock(n) {\n    var sections = document.querySelectorAll('main#main-content .block-hero');\n    if (!sections.length) return;\n    var inRange = false;\n    if (n >= 1) {\n      if (n <= sections.length) {\n        inRange = true;\n      }\n    }\n    var index = inRange ? (n - 1) : 0;\n    sections.forEach(function (section, i) {\n      if (i === index) {\n        revealSection(section);\n      } else {\n        section.style.display = 'none';\n      }\n    });\n  }\n\n  function showBlock(n) {\n    if (resolved) return;\n    resolved = true;\n    if (timeoutId) clearTimeout(timeoutId);\n\n    if (document.readyState === 'loading') {\n      document.addEventListener('DOMContentLoaded', function () { applyBlock(n); });\n    } else {\n      applyBlock(n);\n    }\n  }\n\n  function checkValue(value) {\n    if (resolved || value == null) return;\n    var str = String(value);\n    \/\/ Match exact IDs (e.g. a clean \"variationId\" field) as well as IDs embedded inside\n    \/\/ a larger string (e.g. optimizely_decision's \"Variation #1 (6395579046035456)\" or\n    \/\/ experience_impression's \"OPT-...-6395579046035456(Variation #1)\").\n    for (var id in VARIANT_MAP) {\n      if (!Object.prototype.hasOwnProperty.call(VARIANT_MAP, id)) continue;\n      if (str.indexOf(id) !== -1) {\n        showBlock(VARIANT_MAP[id]);\n        return;\n      }\n    }\n  }\n\n  \/\/ Recursively scan a dataLayer entry for any value matching a known variant ID,\n  \/\/ since the exact property name Optimizely\/GTM stores it under can vary by setup.\n  function scanForVariant(obj, depth) {\n    if (resolved || obj == null || depth > MAX_SCAN_DEPTH) return;\n    if (typeof obj === 'string' || typeof obj === 'number') {\n      checkValue(obj);\n      return;\n    }\n    if (typeof obj !== 'object') return;\n    for (var key in obj) {\n      if (resolved) return;\n      if (!Object.prototype.hasOwnProperty.call(obj, key)) continue;\n      scanForVariant(obj[key], depth + 1);\n    }\n  }\n\n  window.dataLayer = window.dataLayer || [];\n\n  \/\/ 1) Check everything already pushed to dataLayer before this script ran.\n  for (var i = 0; i < window.dataLayer.length; i++) {\n    if (resolved) {\n      break;\n    }\n    scanForVariant(window.dataLayer[i], 0);\n  }\n\n  \/\/ 2) Hook future pushes \u2014 Optimizely may activate and push the variant after this runs.\n  if (!resolved) {\n    var originalPush = window.dataLayer.push;\n    window.dataLayer.push = function () {\n      for (var a = 0; a < arguments.length; a++) {\n        if (!resolved) scanForVariant(arguments[a], 0);\n      }\n      return originalPush.apply(this, arguments);\n    };\n  }\n\n  \/\/ 3) Safety net: never leave the hero area blank.\n  timeoutId = setTimeout(function () {\n    showBlock(FALLBACK_BLOCK);\n  }, SEARCH_TIMEOUT_MS);\n})();\n<\/script>\n\n\n\n<section class=\"block block-hero padding-top--md padding-bottom--md US \" target-element-id=\"1788192233776\"><div class=\"content--full\">\n<div id=\"hero-block-block_1761eca7a0bf8b98cfe50ec88db3cd51\" class=\"hero-block ltl-hero-1 relative\">\n  <div class=\"container\">\n    <div class=\"hero items-start\">\n      <div class=\"  hero-content hero-text-only\" target-element-id=\"1788192232868\">\n\n        \n        \n                  <a class=\"ne-eyebrow\" href=\"\/fulfillment\/shipping\/ltl-freight\" aria-label=\"Parcel and freight, finally together\">\n<svg width=\"359\" height=\"26\" viewBox=\"0 0 359 26\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" role=\"img\">\n<style>\n.ne-eyebrow{display:inline-block;text-decoration:none;margin-bottom:8px;}\n#ne-pill{transform-origin:22.5px 13px;animation:ne-pill-pop 400ms 2s 1 forwards linear;}\n@keyframes ne-pill-pop{\n  0%{transform:scale(1.16);}\n  100%{transform:scale(1);}\n}\n#ne-icon{animation:ne-icon-move 2s 2s 1 both, ne-icon-fade 2s 2s 1 both;}\n@keyframes ne-icon-move{\n  0%,3.57%{transform:translateX(-180px);animation-timing-function:ease-out;}\n  80.64%,100%{transform:translateX(0);}\n}\n@keyframes ne-icon-fade{\n  0%,64.2%{opacity:0;}\n  89.2%{opacity:.867;}\n  100%{opacity:1;}\n}\n#ne-arrow{animation:ne-arrow-fade 2s 2s 1 both;}\n@keyframes ne-arrow-fade{\n  0%,64.2%{opacity:0;}\n  93.8%,100%{opacity:1;}\n}\n<\/style>\n\n<g id=\"ne-pill\">\n<rect y=\"3\" width=\"45\" height=\"20\" rx=\"10\" fill=\"#5C50FF\"><\/rect>\n<path d=\"M7.28993 18V8.2H8.96993L14.1779 15.284V8.2H15.8019V18H14.1779L8.91393 10.832V18H7.28993ZM18.1317 18V8.2H24.1657V9.684H19.7557V12.288H23.6477V13.744H19.7557V16.516H24.2077V18H18.1317ZM34.2155 18L37.0995 8.2H38.7515L35.7835 18H34.2155ZM28.2795 18L25.3535 8.2H26.9915L29.8615 18H28.2795ZM28.4895 18L31.2475 8.2H32.7455L30.0015 18H28.4895ZM34.0615 18L31.3595 8.2H32.8575L35.6435 18H34.0615Z\" fill=\"white\"><\/path>\n<\/g>\n\n<path d=\"M54.302 18V8.2H57.494C58.1287 8.2 58.6887 8.33067 59.174 8.592C59.6687 8.85333 60.0513 9.21733 60.322 9.684C60.602 10.1507 60.742 10.692 60.742 11.308C60.742 11.9053 60.616 12.4373 60.364 12.904C60.112 13.3707 59.7667 13.7393 59.328 14.01C58.8893 14.2713 58.3807 14.402 57.802 14.402H55.492V18H54.302ZM55.492 13.324H57.802C58.3153 13.324 58.7353 13.1373 59.062 12.764C59.398 12.3813 59.566 11.896 59.566 11.308C59.566 10.7013 59.37 10.2113 58.978 9.838C58.586 9.46467 58.0867 9.278 57.48 9.278H55.492V13.324ZM66.2627 18L66.2067 16.852V14.304C66.2067 13.7533 66.146 13.3007 66.0247 12.946C65.9034 12.582 65.712 12.3067 65.4507 12.12C65.1894 11.9333 64.8487 11.84 64.4287 11.84C64.046 11.84 63.7147 11.9193 63.4347 12.078C63.164 12.2273 62.94 12.47 62.7627 12.806L61.7547 12.414C61.932 12.0873 62.1467 11.8073 62.3987 11.574C62.6507 11.3313 62.9447 11.1493 63.2807 11.028C63.6167 10.8973 63.9994 10.832 64.4287 10.832C65.082 10.832 65.6187 10.9627 66.0387 11.224C66.468 11.476 66.79 11.854 67.0047 12.358C67.2194 12.8527 67.322 13.4687 67.3127 14.206L67.2987 18H66.2627ZM64.1627 18.168C63.3414 18.168 62.6974 17.9813 62.2307 17.608C61.7734 17.2253 61.5447 16.698 61.5447 16.026C61.5447 15.3167 61.778 14.7753 62.2447 14.402C62.7207 14.0193 63.3834 13.828 64.2327 13.828H66.2347V14.766H64.4847C63.8314 14.766 63.3647 14.8733 63.0847 15.088C62.814 15.3027 62.6787 15.6107 62.6787 16.012C62.6787 16.376 62.814 16.6653 63.0847 16.88C63.3554 17.0853 63.7334 17.188 64.2187 17.188C64.62 17.188 64.97 17.104 65.2687 16.936C65.5674 16.7587 65.796 16.5113 65.9547 16.194C66.1227 15.8673 66.2067 15.4847 66.2067 15.046H66.6827C66.6827 15.998 66.468 16.7587 66.0387 17.328C65.6094 17.888 64.984 18.168 64.1627 18.168ZM69.7034 14.206C69.7034 13.45 69.8481 12.8387 70.1374 12.372C70.4268 11.896 70.7954 11.546 71.2434 11.322C71.7008 11.0887 72.1814 10.972 72.6854 10.972V12.022C72.2748 12.022 71.8781 12.092 71.4954 12.232C71.1221 12.3627 70.8141 12.582 70.5714 12.89C70.3288 13.198 70.2074 13.618 70.2074 14.15L69.7034 14.206ZM69.0874 18V11H70.2074V18H69.0874ZM76.9399 18.168C76.2492 18.168 75.6379 18.014 75.1059 17.706C74.5739 17.3887 74.1586 16.9547 73.8599 16.404C73.5612 15.8533 73.4119 15.2187 73.4119 14.5C73.4119 13.7813 73.5566 13.1467 73.8459 12.596C74.1446 12.0453 74.5599 11.616 75.0919 11.308C75.6239 10.9907 76.2306 10.832 76.9119 10.832C77.5839 10.832 78.1859 10.986 78.7179 11.294C79.2499 11.602 79.6559 12.036 79.9359 12.596L78.9139 13.058C78.7272 12.6847 78.4566 12.3953 78.1019 12.19C77.7472 11.9753 77.3412 11.868 76.8839 11.868C76.4266 11.868 76.0206 11.98 75.6659 12.204C75.3206 12.428 75.0452 12.7407 74.8399 13.142C74.6439 13.534 74.5459 13.9867 74.5459 14.5C74.5459 15.0133 74.6439 15.4707 74.8399 15.872C75.0452 16.264 75.3252 16.572 75.6799 16.796C76.0439 17.02 76.4546 17.132 76.9119 17.132C77.3692 17.132 77.7752 17.0153 78.1299 16.782C78.4939 16.5487 78.7692 16.222 78.9559 15.802L79.9779 16.264C79.6979 16.8613 79.2919 17.328 78.7599 17.664C78.2279 18 77.6212 18.168 76.9399 18.168ZM84.4581 18.168C83.7768 18.168 83.1748 18.014 82.6521 17.706C82.1294 17.3887 81.7188 16.9547 81.4201 16.404C81.1308 15.8533 80.9861 15.2187 80.9861 14.5C80.9861 13.7813 81.1308 13.1467 81.4201 12.596C81.7188 12.0453 82.1248 11.616 82.6381 11.308C83.1608 10.9907 83.7581 10.832 84.4301 10.832C85.0834 10.832 85.6481 10.9953 86.1241 11.322C86.6001 11.6393 86.9688 12.0873 87.2301 12.666C87.4914 13.2447 87.6221 13.926 87.6221 14.71H81.8401L82.1201 14.472C82.1201 15.032 82.2181 15.5127 82.4141 15.914C82.6194 16.3153 82.9041 16.6233 83.2681 16.838C83.6321 17.0433 84.0474 17.146 84.5141 17.146C85.0088 17.146 85.4241 17.0293 85.7601 16.796C86.1054 16.5627 86.3714 16.2547 86.5581 15.872L87.5241 16.362C87.3468 16.726 87.1088 17.0433 86.8101 17.314C86.5208 17.5847 86.1754 17.7947 85.7741 17.944C85.3821 18.0933 84.9434 18.168 84.4581 18.168ZM82.1901 13.996L81.8961 13.772H86.7261L86.4321 14.01C86.4321 13.562 86.3434 13.1747 86.1661 12.848C85.9888 12.5213 85.7508 12.2693 85.4521 12.092C85.1534 11.9147 84.8081 11.826 84.4161 11.826C84.0334 11.826 83.6694 11.9147 83.3241 12.092C82.9881 12.2693 82.7128 12.5213 82.4981 12.848C82.2928 13.1653 82.1901 13.548 82.1901 13.996ZM89.0347 18V8.2H90.1547V18H89.0347ZM99.8818 18L99.8258 16.852V14.304C99.8258 13.7533 99.7652 13.3007 99.6438 12.946C99.5225 12.582 99.3312 12.3067 99.0698 12.12C98.8085 11.9333 98.4678 11.84 98.0478 11.84C97.6652 11.84 97.3338 11.9193 97.0538 12.078C96.7832 12.2273 96.5592 12.47 96.3818 12.806L95.3738 12.414C95.5512 12.0873 95.7658 11.8073 96.0178 11.574C96.2698 11.3313 96.5638 11.1493 96.8998 11.028C97.2358 10.8973 97.6185 10.832 98.0478 10.832C98.7012 10.832 99.2378 10.9627 99.6578 11.224C100.087 11.476 100.409 11.854 100.624 12.358C100.839 12.8527 100.941 13.4687 100.932 14.206L100.918 18H99.8818ZM97.7818 18.168C96.9605 18.168 96.3165 17.9813 95.8498 17.608C95.3925 17.2253 95.1638 16.698 95.1638 16.026C95.1638 15.3167 95.3972 14.7753 95.8638 14.402C96.3398 14.0193 97.0025 13.828 97.8518 13.828H99.8538V14.766H98.1038C97.4505 14.766 96.9838 14.8733 96.7038 15.088C96.4332 15.3027 96.2978 15.6107 96.2978 16.012C96.2978 16.376 96.4332 16.6653 96.7038 16.88C96.9745 17.0853 97.3525 17.188 97.8378 17.188C98.2392 17.188 98.5892 17.104 98.8878 16.936C99.1865 16.7587 99.4152 16.5113 99.5738 16.194C99.7418 15.8673 99.8258 15.4847 99.8258 15.046H100.302C100.302 15.998 100.087 16.7587 99.6578 17.328C99.2285 17.888 98.6032 18.168 97.7818 18.168ZM102.707 18V11H103.757L103.827 12.288V18H102.707ZM107.621 18V14.416H108.741V18H107.621ZM107.621 14.416C107.621 13.7253 107.541 13.198 107.383 12.834C107.224 12.47 107.005 12.2227 106.725 12.092C106.445 11.952 106.127 11.882 105.773 11.882C105.157 11.882 104.676 12.1013 104.331 12.54C103.995 12.9693 103.827 13.5807 103.827 14.374H103.281C103.281 13.6367 103.388 13.002 103.603 12.47C103.817 11.938 104.13 11.532 104.541 11.252C104.951 10.972 105.446 10.832 106.025 10.832C106.575 10.832 107.051 10.944 107.453 11.168C107.863 11.3827 108.181 11.728 108.405 12.204C108.638 12.68 108.75 13.3053 108.741 14.08V14.416H107.621ZM115.693 18L115.637 16.698V8.2H116.757V18H115.693ZM113.271 18.168C112.646 18.168 112.095 18.014 111.619 17.706C111.143 17.398 110.77 16.9687 110.499 16.418C110.238 15.858 110.107 15.2187 110.107 14.5C110.107 13.772 110.238 13.1327 110.499 12.582C110.77 12.0313 111.143 11.602 111.619 11.294C112.095 10.986 112.646 10.832 113.271 10.832C113.859 10.832 114.373 10.986 114.811 11.294C115.259 11.602 115.605 12.0313 115.847 12.582C116.09 13.1327 116.211 13.772 116.211 14.5C116.211 15.2187 116.09 15.858 115.847 16.418C115.605 16.9687 115.259 17.398 114.811 17.706C114.373 18.014 113.859 18.168 113.271 18.168ZM113.523 17.146C113.934 17.146 114.298 17.034 114.615 16.81C114.933 16.586 115.18 16.2733 115.357 15.872C115.544 15.4707 115.637 15.0133 115.637 14.5C115.637 13.9867 115.544 13.5293 115.357 13.128C115.18 12.7267 114.933 12.414 114.615 12.19C114.298 11.966 113.929 11.854 113.509 11.854C113.071 11.854 112.679 11.966 112.333 12.19C111.997 12.414 111.731 12.7267 111.535 13.128C111.339 13.5293 111.241 13.9867 111.241 14.5C111.241 15.0133 111.339 15.4707 111.535 15.872C111.731 16.2733 112.002 16.586 112.347 16.81C112.693 17.034 113.085 17.146 113.523 17.146ZM122.875 18V10.202C122.875 9.474 123.043 8.928 123.379 8.564C123.725 8.19067 124.247 8.004 124.947 8.004C125.134 8.004 125.344 8.03667 125.577 8.102C125.811 8.16733 126.058 8.26067 126.319 8.382L125.899 9.264C125.685 9.18 125.503 9.11467 125.353 9.068C125.204 9.02133 125.078 8.998 124.975 8.998C124.649 8.998 124.401 9.10533 124.233 9.32C124.075 9.52533 123.995 9.84733 123.995 10.286V18H122.875ZM121.587 11.966V11H126.025V11.966H121.587ZM127.959 14.206C127.959 13.45 128.104 12.8387 128.393 12.372C128.683 11.896 129.051 11.546 129.499 11.322C129.957 11.0887 130.437 10.972 130.941 10.972V12.022C130.531 12.022 130.134 12.092 129.751 12.232C129.378 12.3627 129.07 12.582 128.827 12.89C128.585 13.198 128.463 13.618 128.463 14.15L127.959 14.206ZM127.343 18V11H128.463V18H127.343ZM135.14 18.168C134.458 18.168 133.856 18.014 133.334 17.706C132.811 17.3887 132.4 16.9547 132.102 16.404C131.812 15.8533 131.668 15.2187 131.668 14.5C131.668 13.7813 131.812 13.1467 132.102 12.596C132.4 12.0453 132.806 11.616 133.32 11.308C133.842 10.9907 134.44 10.832 135.112 10.832C135.765 10.832 136.33 10.9953 136.806 11.322C137.282 11.6393 137.65 12.0873 137.912 12.666C138.173 13.2447 138.304 13.926 138.304 14.71H132.522L132.802 14.472C132.802 15.032 132.9 15.5127 133.096 15.914C133.301 16.3153 133.586 16.6233 133.95 16.838C134.314 17.0433 134.729 17.146 135.196 17.146C135.69 17.146 136.106 17.0293 136.442 16.796C136.787 16.5627 137.053 16.2547 137.24 15.872L138.206 16.362C138.028 16.726 137.79 17.0433 137.492 17.314C137.202 17.5847 136.857 17.7947 136.456 17.944C136.064 18.0933 135.625 18.168 135.14 18.168ZM132.872 13.996L132.578 13.772H137.408L137.114 14.01C137.114 13.562 137.025 13.1747 136.848 12.848C136.67 12.5213 136.432 12.2693 136.134 12.092C135.835 11.9147 135.49 11.826 135.098 11.826C134.715 11.826 134.351 11.9147 134.006 12.092C133.67 12.2693 133.394 12.5213 133.18 12.848C132.974 13.1653 132.872 13.548 132.872 13.996ZM139.786 18V11H140.906V18H139.786ZM140.36 9.376C140.174 9.376 140.01 9.306 139.87 9.166C139.73 9.026 139.66 8.86267 139.66 8.676C139.66 8.48 139.73 8.31667 139.87 8.186C140.01 8.046 140.174 7.976 140.36 7.976C140.556 7.976 140.72 8.046 140.85 8.186C140.99 8.31667 141.06 8.48 141.06 8.676C141.06 8.86267 140.99 9.026 140.85 9.166C140.72 9.306 140.556 9.376 140.36 9.376ZM145.77 20.968C145.322 20.968 144.912 20.9213 144.538 20.828C144.174 20.744 143.862 20.646 143.6 20.534C143.348 20.4313 143.166 20.3427 143.054 20.268L143.474 19.358C143.596 19.4233 143.768 19.5027 143.992 19.596C144.216 19.6987 144.478 19.7827 144.776 19.848C145.084 19.9227 145.411 19.96 145.756 19.96C146.204 19.96 146.606 19.8667 146.96 19.68C147.324 19.5027 147.604 19.218 147.8 18.826C148.006 18.4433 148.108 17.9487 148.108 17.342V11H149.228V17.328C149.228 18.1307 149.079 18.8027 148.78 19.344C148.482 19.8853 148.071 20.2913 147.548 20.562C147.026 20.8327 146.433 20.968 145.77 20.968ZM145.728 17.944C145.103 17.944 144.552 17.7947 144.076 17.496C143.6 17.1973 143.227 16.782 142.956 16.25C142.695 15.7087 142.564 15.0927 142.564 14.402C142.564 13.6927 142.695 13.072 142.956 12.54C143.227 11.9987 143.6 11.5787 144.076 11.28C144.552 10.9813 145.103 10.832 145.728 10.832C146.316 10.832 146.83 10.9813 147.268 11.28C147.707 11.5787 148.048 11.9987 148.29 12.54C148.542 13.072 148.668 13.6927 148.668 14.402C148.668 15.102 148.542 15.718 148.29 16.25C148.048 16.782 147.707 17.1973 147.268 17.496C146.83 17.7947 146.316 17.944 145.728 17.944ZM145.994 16.978C146.405 16.978 146.769 16.866 147.086 16.642C147.404 16.418 147.651 16.1147 147.828 15.732C148.006 15.34 148.094 14.8873 148.094 14.374C148.094 13.8793 148.001 13.4407 147.814 13.058C147.637 12.666 147.39 12.3627 147.072 12.148C146.764 11.924 146.4 11.812 145.98 11.812C145.542 11.812 145.15 11.924 144.804 12.148C144.468 12.3627 144.202 12.666 144.006 13.058C143.82 13.4407 143.726 13.8793 143.726 14.374C143.726 14.8873 143.824 15.34 144.02 15.732C144.216 16.1147 144.482 16.418 144.818 16.642C145.164 16.866 145.556 16.978 145.994 16.978ZM151.187 18V8.2H152.307V18H151.187ZM156.115 18V14.416H157.235V18H156.115ZM156.115 14.416C156.115 13.7253 156.031 13.198 155.863 12.834C155.704 12.47 155.485 12.2227 155.205 12.092C154.925 11.952 154.608 11.882 154.253 11.882C153.637 11.882 153.156 12.1013 152.811 12.54C152.475 12.9693 152.307 13.5807 152.307 14.374H151.761C151.761 13.6367 151.868 13.002 152.083 12.47C152.307 11.938 152.624 11.532 153.035 11.252C153.446 10.972 153.94 10.832 154.519 10.832C155.06 10.832 155.536 10.944 155.947 11.168C156.358 11.3827 156.675 11.728 156.899 12.204C157.132 12.68 157.244 13.3053 157.235 14.08V14.416H156.115ZM161.626 18.168C160.944 18.168 160.417 17.9907 160.044 17.636C159.67 17.2813 159.484 16.782 159.484 16.138V8.816H160.604V16.026C160.604 16.3807 160.697 16.656 160.884 16.852C161.08 17.0387 161.35 17.132 161.696 17.132C161.808 17.132 161.915 17.118 162.018 17.09C162.13 17.0527 162.274 16.9687 162.452 16.838L162.886 17.748C162.643 17.9067 162.424 18.014 162.228 18.07C162.032 18.1353 161.831 18.168 161.626 18.168ZM158.266 11.994V11H162.704V11.994H158.266ZM163.865 19.61L164.663 16.656H165.923L164.831 19.61H163.865ZM171.602 18V10.202C171.602 9.474 171.77 8.928 172.106 8.564C172.451 8.19067 172.974 8.004 173.674 8.004C173.861 8.004 174.071 8.03667 174.304 8.102C174.537 8.16733 174.785 8.26067 175.046 8.382L174.626 9.264C174.411 9.18 174.229 9.11467 174.08 9.068C173.931 9.02133 173.805 8.998 173.702 8.998C173.375 8.998 173.128 9.10533 172.96 9.32C172.801 9.52533 172.722 9.84733 172.722 10.286V18H171.602ZM170.314 11.966V11H174.752V11.966H170.314ZM176.14 18V11H177.26V18H176.14ZM176.714 9.376C176.527 9.376 176.364 9.306 176.224 9.166C176.084 9.026 176.014 8.86267 176.014 8.676C176.014 8.48 176.084 8.31667 176.224 8.186C176.364 8.046 176.527 7.976 176.714 7.976C176.91 7.976 177.073 8.046 177.204 8.186C177.344 8.31667 177.414 8.48 177.414 8.676C177.414 8.86267 177.344 9.026 177.204 9.166C177.073 9.306 176.91 9.376 176.714 9.376ZM179.324 18V11H180.374L180.444 12.288V18H179.324ZM184.238 18V14.416H185.358V18H184.238ZM184.238 14.416C184.238 13.7253 184.158 13.198 184 12.834C183.841 12.47 183.622 12.2227 183.342 12.092C183.062 11.952 182.744 11.882 182.39 11.882C181.774 11.882 181.293 12.1013 180.948 12.54C180.612 12.9693 180.444 13.5807 180.444 14.374H179.898C179.898 13.6367 180.005 13.002 180.22 12.47C180.434 11.938 180.747 11.532 181.158 11.252C181.568 10.972 182.063 10.832 182.642 10.832C183.192 10.832 183.668 10.944 184.07 11.168C184.48 11.3827 184.798 11.728 185.022 12.204C185.255 12.68 185.367 13.3053 185.358 14.08V14.416H184.238ZM191.442 18L191.386 16.852V14.304C191.386 13.7533 191.326 13.3007 191.204 12.946C191.083 12.582 190.892 12.3067 190.63 12.12C190.369 11.9333 190.028 11.84 189.608 11.84C189.226 11.84 188.894 11.9193 188.614 12.078C188.344 12.2273 188.12 12.47 187.942 12.806L186.934 12.414C187.112 12.0873 187.326 11.8073 187.578 11.574C187.83 11.3313 188.124 11.1493 188.46 11.028C188.796 10.8973 189.179 10.832 189.608 10.832C190.262 10.832 190.798 10.9627 191.218 11.224C191.648 11.476 191.97 11.854 192.184 12.358C192.399 12.8527 192.502 13.4687 192.492 14.206L192.478 18H191.442ZM189.342 18.168C188.521 18.168 187.877 17.9813 187.41 17.608C186.953 17.2253 186.724 16.698 186.724 16.026C186.724 15.3167 186.958 14.7753 187.424 14.402C187.9 14.0193 188.563 13.828 189.412 13.828H191.414V14.766H189.664C189.011 14.766 188.544 14.8733 188.264 15.088C187.994 15.3027 187.858 15.6107 187.858 16.012C187.858 16.376 187.994 16.6653 188.264 16.88C188.535 17.0853 188.913 17.188 189.398 17.188C189.8 17.188 190.15 17.104 190.448 16.936C190.747 16.7587 190.976 16.5113 191.134 16.194C191.302 15.8673 191.386 15.4847 191.386 15.046H191.862C191.862 15.998 191.648 16.7587 191.218 17.328C190.789 17.888 190.164 18.168 189.342 18.168ZM194.267 18V8.2H195.387V18H194.267ZM197.343 18V8.2H198.463V18H197.343ZM201.049 20.968C200.872 20.968 200.667 20.9307 200.433 20.856C200.2 20.7907 199.953 20.702 199.691 20.59L200.111 19.652C200.326 19.7453 200.513 19.8153 200.671 19.862C200.839 19.9087 200.97 19.932 201.063 19.932C201.315 19.932 201.521 19.862 201.679 19.722C201.847 19.5913 201.987 19.4 202.099 19.148L202.897 17.244L205.487 11H206.691L203.331 18.98C203.154 19.3907 202.967 19.7453 202.771 20.044C202.585 20.3427 202.356 20.5713 202.085 20.73C201.815 20.8887 201.469 20.968 201.049 20.968ZM202.589 18L199.565 11H200.755L203.359 17.23L203.695 18H202.589ZM213.88 18.168C213.198 18.168 212.671 17.9907 212.298 17.636C211.924 17.2813 211.738 16.782 211.738 16.138V8.816H212.858V16.026C212.858 16.3807 212.951 16.656 213.138 16.852C213.334 17.0387 213.604 17.132 213.95 17.132C214.062 17.132 214.169 17.118 214.272 17.09C214.384 17.0527 214.528 16.9687 214.706 16.838L215.14 17.748C214.897 17.9067 214.678 18.014 214.482 18.07C214.286 18.1353 214.085 18.168 213.88 18.168ZM210.52 11.994V11H214.958V11.994H210.52ZM219.592 18.168C218.91 18.168 218.304 18.014 217.772 17.706C217.249 17.3887 216.838 16.9547 216.54 16.404C216.241 15.8533 216.092 15.2187 216.092 14.5C216.092 13.7813 216.236 13.1467 216.526 12.596C216.824 12.0453 217.235 11.616 217.758 11.308C218.29 10.9907 218.892 10.832 219.564 10.832C220.254 10.832 220.861 10.9907 221.384 11.308C221.916 11.616 222.326 12.0453 222.616 12.596C222.914 13.1467 223.064 13.7813 223.064 14.5C223.064 15.2187 222.914 15.8533 222.616 16.404C222.326 16.9547 221.92 17.3887 221.398 17.706C220.875 18.014 220.273 18.168 219.592 18.168ZM219.592 17.132C220.058 17.132 220.464 17.02 220.81 16.796C221.155 16.572 221.426 16.264 221.622 15.872C221.827 15.48 221.93 15.0227 221.93 14.5C221.93 13.9773 221.827 13.52 221.622 13.128C221.426 12.736 221.15 12.428 220.796 12.204C220.441 11.98 220.03 11.868 219.564 11.868C219.106 11.868 218.7 11.98 218.346 12.204C218 12.428 217.725 12.736 217.52 13.128C217.324 13.52 217.226 13.9773 217.226 14.5C217.226 15.0133 217.324 15.4707 217.52 15.872C217.725 16.264 218.005 16.572 218.36 16.796C218.724 17.02 219.134 17.132 219.592 17.132ZM227.419 20.968C226.971 20.968 226.56 20.9213 226.187 20.828C225.823 20.744 225.51 20.646 225.249 20.534C224.997 20.4313 224.815 20.3427 224.703 20.268L225.123 19.358C225.244 19.4233 225.417 19.5027 225.641 19.596C225.865 19.6987 226.126 19.7827 226.425 19.848C226.733 19.9227 227.059 19.96 227.405 19.96C227.853 19.96 228.254 19.8667 228.609 19.68C228.973 19.5027 229.253 19.218 229.449 18.826C229.654 18.4433 229.757 17.9487 229.757 17.342V11H230.877V17.328C230.877 18.1307 230.727 18.8027 230.429 19.344C230.13 19.8853 229.719 20.2913 229.197 20.562C228.674 20.8327 228.081 20.968 227.419 20.968ZM227.377 17.944C226.751 17.944 226.201 17.7947 225.725 17.496C225.249 17.1973 224.875 16.782 224.605 16.25C224.343 15.7087 224.213 15.0927 224.213 14.402C224.213 13.6927 224.343 13.072 224.605 12.54C224.875 11.9987 225.249 11.5787 225.725 11.28C226.201 10.9813 226.751 10.832 227.377 10.832C227.965 10.832 228.478 10.9813 228.917 11.28C229.355 11.5787 229.696 11.9987 229.939 12.54C230.191 13.072 230.317 13.6927 230.317 14.402C230.317 15.102 230.191 15.718 229.939 16.25C229.696 16.782 229.355 17.1973 228.917 17.496C228.478 17.7947 227.965 17.944 227.377 17.944ZM227.643 16.978C228.053 16.978 228.417 16.866 228.735 16.642C229.052 16.418 229.299 16.1147 229.477 15.732C229.654 15.34 229.743 14.8873 229.743 14.374C229.743 13.8793 229.649 13.4407 229.463 13.058C229.285 12.666 229.038 12.3627 228.721 12.148C228.413 11.924 228.049 11.812 227.629 11.812C227.19 11.812 226.798 11.924 226.453 12.148C226.117 12.3627 225.851 12.666 225.655 13.058C225.468 13.4407 225.375 13.8793 225.375 14.374C225.375 14.8873 225.473 15.34 225.669 15.732C225.865 16.1147 226.131 16.418 226.467 16.642C226.812 16.866 227.204 16.978 227.643 16.978ZM235.901 18.168C235.22 18.168 234.618 18.014 234.095 17.706C233.573 17.3887 233.162 16.9547 232.863 16.404C232.574 15.8533 232.429 15.2187 232.429 14.5C232.429 13.7813 232.574 13.1467 232.863 12.596C233.162 12.0453 233.568 11.616 234.081 11.308C234.604 10.9907 235.201 10.832 235.873 10.832C236.527 10.832 237.091 10.9953 237.567 11.322C238.043 11.6393 238.412 12.0873 238.673 12.666C238.935 13.2447 239.065 13.926 239.065 14.71H233.283L233.563 14.472C233.563 15.032 233.661 15.5127 233.857 15.914C234.063 16.3153 234.347 16.6233 234.711 16.838C235.075 17.0433 235.491 17.146 235.957 17.146C236.452 17.146 236.867 17.0293 237.203 16.796C237.549 16.5627 237.815 16.2547 238.001 15.872L238.967 16.362C238.79 16.726 238.552 17.0433 238.253 17.314C237.964 17.5847 237.619 17.7947 237.217 17.944C236.825 18.0933 236.387 18.168 235.901 18.168ZM233.633 13.996L233.339 13.772H238.169L237.875 14.01C237.875 13.562 237.787 13.1747 237.609 12.848C237.432 12.5213 237.194 12.2693 236.895 12.092C236.597 11.9147 236.251 11.826 235.859 11.826C235.477 11.826 235.113 11.9147 234.767 12.092C234.431 12.2693 234.156 12.5213 233.941 12.848C233.736 13.1653 233.633 13.548 233.633 13.996ZM243.11 18.168C242.429 18.168 241.901 17.9907 241.528 17.636C241.155 17.2813 240.968 16.782 240.968 16.138V8.816H242.088V16.026C242.088 16.3807 242.181 16.656 242.368 16.852C242.564 17.0387 242.835 17.132 243.18 17.132C243.292 17.132 243.399 17.118 243.502 17.09C243.614 17.0527 243.759 16.9687 243.936 16.838L244.37 17.748C244.127 17.9067 243.908 18.014 243.712 18.07C243.516 18.1353 243.315 18.168 243.11 18.168ZM239.75 11.994V11H244.188V11.994H239.75ZM245.769 18V8.2H246.889V18H245.769ZM250.697 18V14.416H251.817V18H250.697ZM250.697 14.416C250.697 13.7253 250.613 13.198 250.445 12.834C250.286 12.47 250.067 12.2227 249.787 12.092C249.507 11.952 249.19 11.882 248.835 11.882C248.219 11.882 247.738 12.1013 247.393 12.54C247.057 12.9693 246.889 13.5807 246.889 14.374H246.343C246.343 13.6367 246.45 13.002 246.665 12.47C246.889 11.938 247.206 11.532 247.617 11.252C248.028 10.972 248.522 10.832 249.101 10.832C249.642 10.832 250.118 10.944 250.529 11.168C250.94 11.3827 251.257 11.728 251.481 12.204C251.714 12.68 251.826 13.3053 251.817 14.08V14.416H250.697ZM256.642 18.168C255.96 18.168 255.358 18.014 254.836 17.706C254.313 17.3887 253.902 16.9547 253.604 16.404C253.314 15.8533 253.17 15.2187 253.17 14.5C253.17 13.7813 253.314 13.1467 253.604 12.596C253.902 12.0453 254.308 11.616 254.822 11.308C255.344 10.9907 255.942 10.832 256.614 10.832C257.267 10.832 257.832 10.9953 258.308 11.322C258.784 11.6393 259.152 12.0873 259.414 12.666C259.675 13.2447 259.806 13.926 259.806 14.71H254.024L254.304 14.472C254.304 15.032 254.402 15.5127 254.598 15.914C254.803 16.3153 255.088 16.6233 255.452 16.838C255.816 17.0433 256.231 17.146 256.698 17.146C257.192 17.146 257.608 17.0293 257.944 16.796C258.289 16.5627 258.555 16.2547 258.742 15.872L259.708 16.362C259.53 16.726 259.292 17.0433 258.994 17.314C258.704 17.5847 258.359 17.7947 257.958 17.944C257.566 18.0933 257.127 18.168 256.642 18.168ZM254.374 13.996L254.08 13.772H258.91L258.616 14.01C258.616 13.562 258.527 13.1747 258.35 12.848C258.172 12.5213 257.934 12.2693 257.636 12.092C257.337 11.9147 256.992 11.826 256.6 11.826C256.217 11.826 255.853 11.9147 255.508 12.092C255.172 12.2693 254.896 12.5213 254.682 12.848C254.476 13.1653 254.374 13.548 254.374 13.996ZM261.834 14.206C261.834 13.45 261.979 12.8387 262.268 12.372C262.558 11.896 262.926 11.546 263.374 11.322C263.832 11.0887 264.312 10.972 264.816 10.972V12.022C264.406 12.022 264.009 12.092 263.626 12.232C263.253 12.3627 262.945 12.582 262.702 12.89C262.46 13.198 262.338 13.618 262.338 14.15L261.834 14.206ZM261.218 18V11H262.338V18H261.218Z\" fill=\"#11003A\"><\/path>\n\n<g id=\"ne-icon\" clip-path=\"url(#ne-clip-icon)\">\n<path d=\"M324.656 12.7365H321.358L319.85 8.93817H315.786V8.10204C315.786 7.13013 314.998 6.34045 314.024 6.34045H309.159V20.4725H318.73C318.703 20.3045 318.686 20.1348 318.686 19.9597C318.686 18.1856 320.127 16.7438 321.901 16.7438C323.676 16.7438 325.117 18.1856 325.117 19.9597C325.117 20.1348 325.099 20.3045 325.073 20.4725H326.677V14.7571C326.677 13.6405 325.773 12.7365 324.656 12.7365ZM315.786 12.7365V10.0101H319.122L320.204 12.7365H315.786Z\" fill=\"#11003A\"><\/path>\n<path d=\"M321.901 18.0945C320.872 18.0945 320.036 18.9306 320.036 19.9597C320.036 20.9888 320.872 21.8249 321.901 21.8249C322.93 21.8249 323.767 20.9888 323.767 19.9597C323.767 18.9306 322.93 18.0945 321.901 18.0945Z\" fill=\"#11003A\"><\/path>\n<path d=\"M303.021 18.1428C301.992 18.1428 301.155 18.9789 301.155 20.008C301.155 21.0371 301.992 21.8732 303.021 21.8732C304.05 21.8732 304.886 21.0371 304.886 20.008C304.886 18.9789 304.05 18.1428 303.021 18.1428Z\" fill=\"#11003A\"><\/path>\n<path d=\"M296.373 18.2696C295.344 18.2696 294.507 19.1057 294.507 20.1348C294.507 21.1639 295.344 22 296.373 22C297.402 22 298.238 21.1639 298.238 20.1348C298.238 19.1057 297.402 18.2696 296.373 18.2696Z\" fill=\"#11003A\"><\/path>\n<path d=\"M284.243 18.032C283.214 18.032 282.378 18.8681 282.378 19.8972C282.378 20.9263 283.214 21.7624 284.243 21.7624C285.272 21.7624 286.109 20.9263 286.109 19.8972C286.109 18.8681 285.272 18.032 284.243 18.032Z\" fill=\"#11003A\"><\/path>\n<path d=\"M277.594 18.1588C276.565 18.1588 275.729 18.9949 275.729 20.024C275.729 21.0531 276.565 21.8892 277.594 21.8892C278.623 21.8892 279.459 21.0531 279.459 20.024C279.459 18.9949 278.623 18.1588 277.594 18.1588Z\" fill=\"#11003A\"><\/path>\n<path d=\"M272.927 18.3768H274.835C275.398 17.4388 276.422 16.8081 277.592 16.8081C278.762 16.8081 279.788 17.4388 280.349 18.3768H281.408C281.951 17.3673 283.018 16.6813 284.242 16.6813C285.466 16.6813 286.532 17.3691 287.075 18.3768H293.68C294.256 17.4996 295.245 16.9189 296.369 16.9189C297.493 16.9189 298.484 17.4996 299.058 18.3768H300.251C300.812 17.4299 301.841 16.7921 303.019 16.7921C304.196 16.7921 305.225 17.4299 305.786 18.3768H306.903V4H272.927V18.3768ZM303.264 6.22789C303.264 6.07782 303.385 5.95454 303.537 5.95454H303.625C303.775 5.95454 303.898 6.07603 303.898 6.22789V14.7C303.898 14.85 303.776 14.9733 303.625 14.9733H303.537C303.387 14.9733 303.264 14.8518 303.264 14.7V6.22789ZM300.242 6.22789C300.242 6.07782 300.364 5.95454 300.516 5.95454H300.603C300.753 5.95454 300.877 6.07603 300.877 6.22789V14.7C300.877 14.85 300.755 14.9733 300.603 14.9733H300.516C300.366 14.9733 300.242 14.8518 300.242 14.7V6.22789ZM297.221 6.22789C297.221 6.07782 297.343 5.95454 297.495 5.95454H297.582C297.732 5.95454 297.856 6.07603 297.856 6.22789V14.7C297.856 14.85 297.734 14.9733 297.582 14.9733H297.495C297.345 14.9733 297.221 14.8518 297.221 14.7V6.22789ZM294.2 6.22789C294.2 6.07782 294.322 5.95454 294.474 5.95454H294.561C294.711 5.95454 294.834 6.07603 294.834 6.22789V14.7C294.834 14.85 294.713 14.9733 294.561 14.9733H294.474C294.323 14.9733 294.2 14.8518 294.2 14.7V6.22789ZM291.179 6.22789C291.179 6.07782 291.301 5.95454 291.452 5.95454H291.54C291.69 5.95454 291.813 6.07603 291.813 6.22789V14.7C291.813 14.85 291.692 14.9733 291.54 14.9733H291.452C291.302 14.9733 291.179 14.8518 291.179 14.7V6.22789ZM288.158 6.22789C288.158 6.07782 288.279 5.95454 288.431 5.95454H288.519C288.669 5.95454 288.792 6.07603 288.792 6.22789V14.7C288.792 14.85 288.671 14.9733 288.519 14.9733H288.431C288.281 14.9733 288.158 14.8518 288.158 14.7V6.22789ZM285.137 6.22789C285.137 6.07782 285.258 5.95454 285.41 5.95454H285.498C285.648 5.95454 285.771 6.07603 285.771 6.22789V14.7C285.771 14.85 285.65 14.9733 285.498 14.9733H285.41C285.26 14.9733 285.137 14.8518 285.137 14.7V6.22789ZM282.116 6.22789C282.116 6.07782 282.237 5.95454 282.389 5.95454H282.477C282.627 5.95454 282.75 6.07603 282.75 6.22789V14.7C282.75 14.85 282.628 14.9733 282.477 14.9733H282.389C282.239 14.9733 282.116 14.8518 282.116 14.7V6.22789ZM279.094 6.22789C279.094 6.07782 279.216 5.95454 279.368 5.95454H279.455C279.605 5.95454 279.729 6.07603 279.729 6.22789V14.7C279.729 14.85 279.607 14.9733 279.455 14.9733H279.368C279.218 14.9733 279.094 14.8518 279.094 14.7V6.22789ZM276.073 6.22789C276.073 6.07782 276.195 5.95454 276.347 5.95454H276.434C276.584 5.95454 276.708 6.07603 276.708 6.22789V14.7C276.708 14.85 276.586 14.9733 276.434 14.9733H276.347C276.197 14.9733 276.073 14.8518 276.073 14.7V6.22789Z\" fill=\"#00E664\"><\/path>\n<\/g>\n\n<g id=\"ne-arrow\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M354.848 12.4258L351.03 8.8121L351.888 8L356.455 12.3232C356.85 12.697 356.85 13.303 356.455 13.6768L351.888 18L351.03 17.1879L354.848 13.5742H341.752V12.4258H354.848Z\" fill=\"#11003A\"><\/path>\n<\/g>\n\n<defs>\n<clipPath id=\"ne-clip-icon\">\n<rect width=\"53.7517\" height=\"18\" fill=\"white\" transform=\"translate(272.927 4)\"><\/rect>\n<\/clipPath>\n<\/defs>\n<\/svg>\n<\/a>\n                  <h1 class=\"xl\" target-element-id=\"1788192228095\">Every parcel. Every pallet. One platform.<\/h1>\n        \n                            <div class=\"lead max-w-[64rem]\"><p class=\"p1\" target-element-id=\"1788192228042\">Ship faster, save more, and manage every order in one place.<\/p>\n<\/div>\n        \n                  <div class=\"btn-group\">\n                          <a href=\"https:\/\/www.shipstation.com\/start-a-free-trial\/\" target=\"\" class=\"btn\" target-element-id=\"1788192227822\">\n                Start Shipping Now              <\/a>\n            \n                          <a href=\"https:\/\/www.shipstation.com\/contact-us\/\" target=\"\" class=\"btn outline\">\n                Talk to an Expert              <\/a>\n                      <\/div>\n        \n                  <div class=\"text-xs max-w-[64rem]\"><style>     \/* CSS *\/     .features {     max-width: 540px;     }      .feature-row {     list-style: none;     margin: 0;     padding: 0;     display: flex;     justify-content: flex-start;     flex-wrap: wrap; \/* allow stacking *\/     gap: 16px;     }      .feature {     display: flex;     align-items: center;     gap: 10px;     white-space: nowrap; \/* prevent text wrapping if you want tight spacing *\/     }      \/* Checkmark image *\/     .checkmark {     width: 20px;     height: 20px;     flex: 0 0 20px;     display: block;     }      \/* Text *\/     .feature span {     font-size: 16px;     line-height: 1.4;     color: #111827;     }     .hero-block .container .hero .hero-content ul {         padding-left: 0 !important;     }      \/* Stack at 992px and below *\/     @media (max-width: 992px) {       .feature-row {         flex-direction: column;         align-items: flex-start;     }     }  <\/style> <section class=\"features\">   <ul class=\"feature-row\">     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\">       <span>No credit card required<\/span>     <\/li>     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\">       <span>Cancel anytime<\/span>     <\/li>     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\">       <span>Set up in minutes<\/span>     <\/li>   <\/ul> <\/section><\/div>\n        \n        \n      <\/div>\n\n      \n      \n    <\/div>\n  <\/div>\n\n  \n  \n<\/div>\n<\/div><\/section>\n\n\n<section class=\"block block-hero padding-top--md padding-bottom--md US \"><div class=\"content--full\">\n<div id=\"hero-block-block_82cafc05de1ee39664e9524e432126bc\" class=\"hero-block ltl-hero-2 relative\">\n  <div class=\"container\">\n    <div class=\"hero items-start\">\n      <div class=\"  hero-content \">\n\n        \n                  <p class=\"eyebrow\"><img loading=\"lazy\" decoding=\"async\" width=\"221\" height=\"42\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/02\/station-capterra.svg\" alt=\"\" class=\"alignnone size-full wp-image-69925\" \/><\/p>\n        \n                  <h1 class=\"xl\">Ship faster and save more across parcel and freight<\/h1>\n        \n                            <div class=\"lead max-w-[64rem]\"><p class=\"p1\">Run your entire fulfillment operation from one dashboard to get the best rates and keep orders moving fast.<\/p>\n<\/div>\n        \n                  <div class=\"btn-group\">\n                          <a href=\"https:\/\/www.shipstation.com\/start-a-free-trial\/\" target=\"\" class=\"btn\">\n                Start Shipping Now              <\/a>\n            \n                          <a href=\"\/contact-us\" target=\"\" class=\"btn outline\">\n                Talk to an Expert              <\/a>\n                      <\/div>\n        \n                  <div class=\"text-xs max-w-[64rem]\"><style>     \/* CSS *\/     .features {     max-width: 540px;     }      .feature-row {     list-style: none;     margin: 0;     padding: 0;     display: flex;     justify-content: flex-start;     flex-wrap: wrap; \/* allow stacking *\/     gap: 16px;     }      .feature {     display: flex;     align-items: center;     gap: 10px;     white-space: nowrap; \/* prevent text wrapping if you want tight spacing *\/     }      \/* Checkmark image *\/     .checkmark {     width: 20px;     height: 20px;     flex: 0 0 20px;     display: block;     }      \/* Text *\/     .feature span {     font-size: 16px;     line-height: 1.4;     color: #111827;     }     .hero-block .container .hero .hero-content ul {         padding-left: 0 !important;     }      \/* Stack at 992px and below *\/     @media (max-width: 992px) {       .feature-row {         flex-direction: column;         align-items: flex-start;     }     }  <\/style> <section class=\"features\">   <ul class=\"feature-row\">     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\" \/>       <span>No credit card required<\/span>     <\/li>     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\" \/>       <span>Cancel anytime<\/span>     <\/li>     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\" \/>       <span>Set up in minutes<\/span>     <\/li>   <\/ul> <\/section><\/div>\n        \n        \n      <\/div>\n\n              <div class=\"hero-form\">\n          <div class=\"form \">\n            <div class=\"form-content\">\n              <div class=\"acf-innerblocks-container\">\n\n<!-- LTL hero animation \u2014 pure HTML\/CSS, no JS, no external requests. Paste this whole block into a WordPress Custom HTML block. -->\n<div class=\"lh-wrap\">\n<style>\n.lh-wrap *{box-sizing:border-box;margin:0;padding:0;}\n.lh-wrap{\n  --lh-indigo:#11003A;--lh-purple:#5C50FF;--lh-green-bright:#00E664;--lh-green-dark:#00873B;\n  --lh-green-savings:#40EC8B;--lh-grey-25:#F8F8F8;--lh-grey-200:#CFD1D3;--lh-grey-300:#AFB3B6;\n  --lh-grey-400:#8D9196;--lh-grey-500:#71767A;--lh-grey-600:#637381;--lh-grey-700:#656C76;\n  --lh-grey-800:#45505B;--lh-grey-900:#212C36;--lh-text:#0A0B0D;--lh-border-light:#E1E4E8;\n  --lh-border:#E4E5E7;--lh-cyan-tint:#BFEAFF;--lh-success:#15803D;--lh-blue:#256FEB;\n  --lh-ups-brown:#341B14;--lh-ups-gold:#FFB406;--lh-usps-blue:#004B87;--lh-fedex-purple:#4D148C;\n  --lh-fedex-orange:#FF6600;--lh-dhl-yellow:#FFCC00;--lh-dhl-red:#D40511;\n  --lh-font-heading:'Figtree',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;\n  --lh-font-body:'Figtree',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;\n  --lh-font-ui:'Roboto',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;\n  width:100%;max-width:632px;margin:0 auto;\n}\n.lh-stage{position:relative;width:100%;aspect-ratio:632\/474;container-type:inline-size;overflow:hidden;background:var(--lh-grey-25);border-radius:8px;}\n.lh-canvas{position:absolute;top:0;left:0;width:632px;height:474px;transform-origin:top left;transform:scale(calc(100cqw \/ 632px));}\n\n\/* ---- background \"Awaiting Shipment\" table ---- *\/\n.lh-grid{position:absolute;left:76.42px;top:28px;width:696.282px;height:530.237px;}\n.lh-tablebg{position:absolute;left:-7.75px;top:0;width:703.995px;height:530.219px;background:#fff;border:1.1px solid var(--lh-border);border-radius:22.53px;box-shadow:0 4.39px 6.58px -1.1px rgba(15,15,15,.1),0 2.19px 4.39px -1.1px rgba(15,15,15,.06);}\n.lh-title{position:absolute;left:77.4px;top:50.8px;font:500 32.24px\/45.3px var(--lh-font-heading);color:var(--lh-indigo);letter-spacing:-.63px;white-space:nowrap;}\n.lh-gear{position:absolute;left:27px;top:46px;width:34px;height:34.5px;}\n.lh-tag{position:absolute;top:50.8px;display:flex;align-items:center;padding:3.55px 9.46px;border-radius:4.73px;font:400 14.19px\/21.28px var(--lh-font-ui);white-space:nowrap;}\n.lh-tag--cyan{left:439.36px;background:var(--lh-cyan-tint);color:#000;border-radius:4.73px;}\n.lh-tag--green{left:532.11px;background:var(--lh-green-dark);color:#fff;border-radius:4px;}\n.lh-thead-bg{position:absolute;left:28.72px;top:102.78px;width:640.49px;height:32.83px;background:var(--lh-indigo);border-radius:4.18px;}\n.lh-thead{position:absolute;left:39.35px;top:115.09px;display:flex;gap:77.375px;font:600 12.31px\/17.63px var(--lh-font-heading);color:#fff;letter-spacing:-.22px;white-space:nowrap;}\n.lh-thead-date{position:absolute;left:452.52px;top:115.09px;font:600 12.31px\/17.63px var(--lh-font-heading);color:#fff;letter-spacing:-.22px;white-space:nowrap;}\n.lh-rows{position:absolute;left:28.72px;top:135.61px;width:640.49px;}\n.lh-row{position:relative;height:41.036px;border-top:1px solid var(--lh-border);}\n.lh-cell{position:absolute;top:50%;transform:translateY(-50%);display:flex;align-items:center;gap:4.3px;font:400 12.31px\/17.95px var(--lh-font-body);color:var(--lh-grey-400);letter-spacing:-.14px;white-space:nowrap;}\n.lh-cell-order{left:11px;}\n.lh-cell-mode{left:113px;}\n.lh-cell-mode svg{width:21.5px;height:21.5px;flex-shrink:0;}\n.lh-cell-service{left:207px;gap:8px;}\n.lh-cell-service svg,.lh-cell-service img{height:14px;width:auto;max-width:26px;flex-shrink:0;object-fit:contain;}\n.lh-cell-date{left:420px;}\n.lh-cell-status{left:518px;}\n.lh-fade{position:absolute;left:-17.73px;top:213.97px;width:702.14px;height:242.283px;background:linear-gradient(to bottom,rgba(248,248,248,0) 21%,var(--lh-grey-25) 94%);}\n\n\/* ---- sync inventory button ---- *\/\n.lh-sync{position:absolute;left:28.83px;top:14.09px;display:flex;align-items:center;gap:7.9px;padding:6.49px 22.9px;background:var(--lh-purple);border:none;border-radius:25px;filter:drop-shadow(0 4px 3px rgba(15,15,15,.1)) drop-shadow(0 2px 2px rgba(15,15,15,.06));cursor:default;}\n.lh-sync span{font:600 17.12px var(--lh-font-heading);color:#fff;white-space:nowrap;}\n.lh-sync svg{width:29px;height:29px;flex-shrink:0;}\n.lh-spin{animation:lh-spin 2.4s linear infinite;transform-origin:50% 50%;display:block;}\n@keyframes lh-spin{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}\n\n\/* ---- dimming shadow over background while cards are up ---- *\/\n.lh-shadow{position:absolute;left:-14px;top:-25px;width:659px;height:514px;background:rgba(92,80,255,.14);backdrop-filter:blur(1.25px);animation:lh-shadow 12000ms linear infinite;}\n@keyframes lh-shadow{0%,14.583%{opacity:0;}17.917%,79.167%{opacity:1;}82.5%,100%{opacity:0;}}\n\n\/* ---- mouse cursor + click feedback + row scan highlight ---- *\/\n.lh-mouse{position:absolute;left:60px;top:450px;width:19px;height:22px;z-index:50;animation:lh-mouse-left 12000ms linear infinite,lh-mouse-top 12000ms linear infinite,lh-mouse-op 12000ms linear infinite;filter:drop-shadow(0 1px 1.5px rgba(0,0,0,.35));}\n@keyframes lh-mouse-op{0%,33.333%{opacity:0;}3.333%,15%{opacity:1;}17.5%,33.333%{opacity:0;}35.833%,40.833%{opacity:1;}43.333%,100%{opacity:0;}}\n@keyframes lh-mouse-left{0%{left:60px;}3.333%{left:60px;animation-timing-function:linear;}5%{left:110px;animation-timing-function:linear;}6.667%{left:120px;animation-timing-function:linear;}8.333%{left:125px;animation-timing-function:linear;}10%{left:130px;animation-timing-function:linear;}11.667%{left:135px;animation-timing-function:cubic-bezier(.22,.61,.36,1);}13.333%{left:140px;}17.5%{left:140px;animation-timing-function:cubic-bezier(.645,.045,.355,1);}33.333%{left:340px;animation-timing-function:cubic-bezier(.645,.045,.355,1);}35.833%{left:340px;animation-timing-function:cubic-bezier(.645,.045,.355,1);}39.167%{left:389px;}100%{left:389px;}}\n@keyframes lh-mouse-top{0%{top:450px;}3.333%{top:450px;animation-timing-function:linear;}5%{top:430px;animation-timing-function:linear;}6.667%{top:389px;animation-timing-function:linear;}8.333%{top:348px;animation-timing-function:linear;}10%{top:307px;animation-timing-function:linear;}11.667%{top:266px;animation-timing-function:cubic-bezier(.22,.61,.36,1);}13.333%{top:225px;}17.5%{top:225px;animation-timing-function:cubic-bezier(.645,.045,.355,1);}33.333%{top:190px;animation-timing-function:cubic-bezier(.645,.045,.355,1);}35.833%{top:190px;animation-timing-function:cubic-bezier(.645,.045,.355,1);}39.167%{top:97px;}100%{top:97px;}}\n.lh-click-ring{position:absolute;width:22px;height:22px;border-radius:50%;border:2px solid rgba(92,80,255,.55);background:rgba(92,80,255,.18);z-index:49;}\n.lh-click-ring--1{left:132px;top:217px;animation:lh-click1 12000ms linear infinite;}\n.lh-click-ring--2{left:381px;top:89px;animation:lh-click2 12000ms linear infinite;}\n@keyframes lh-click1{0%,13.333%{opacity:0;transform:scale(.4);}14.167%{opacity:1;transform:scale(1.1);}15.417%,100%{opacity:0;transform:scale(1.4);}}\n@keyframes lh-click2{0%,39.167%{opacity:0;transform:scale(.4);}39.833%{opacity:1;transform:scale(1.1);}40.833%,100%{opacity:0;transform:scale(1.4);}}\n.lh-rows .lh-row:nth-child(7){animation:lh-hl-row7 12000ms linear infinite;}\n.lh-rows .lh-row:nth-child(6){animation:lh-hl-row6 12000ms linear infinite;}\n.lh-rows .lh-row:nth-child(5){animation:lh-hl-row5 12000ms linear infinite;}\n.lh-rows .lh-row:nth-child(4){animation:lh-hl-row4 12000ms linear infinite;}\n.lh-rows .lh-row:nth-child(3){animation:lh-hl-row3 12000ms linear infinite;}\n.lh-rows .lh-row:nth-child(2){animation:lh-hl-row2 12000ms linear infinite;}\n@keyframes lh-hl-row7{0%,3.75%{background:transparent;}5%{background:#eceef1;}6.25%,100%{background:transparent;}}\n@keyframes lh-hl-row6{0%,5.417%{background:transparent;}6.667%{background:#eceef1;}7.917%,100%{background:transparent;}}\n@keyframes lh-hl-row5{0%,7.083%{background:transparent;}8.333%{background:#eceef1;}9.583%,100%{background:transparent;}}\n@keyframes lh-hl-row4{0%,8.75%{background:transparent;}10%{background:#eceef1;}11.25%,100%{background:transparent;}}\n@keyframes lh-hl-row3{0%,10.417%{background:transparent;}11.667%{background:#eceef1;}12.917%,100%{background:transparent;}}\n@keyframes lh-hl-row2{0%,12.083%{background:transparent;}13.333%,16.667%{background:#eceef1;}17.5%,100%{background:transparent;}}\n\n\/* ---- floating cards ---- *\/\n.lh-card{position:absolute;left:154px;top:69px;width:324.074px;background:#fff;border:1px solid var(--lh-grey-200);border-bottom:none;border-radius:16.18px 16.18px 0 0;filter:drop-shadow(0 10.74px 8.06px rgba(15,15,15,.1)) drop-shadow(0 4.3px 3.22px rgba(15,15,15,.05));padding:16.18px;display:flex;flex-direction:column;gap:11.17px;font-family:var(--lh-font-body);}\n.lh-tabs{display:flex;background:#F0F2F5;border-radius:20px;padding:3px;gap:2px;width:100%;}\n.lh-tab{flex:1;text-align:center;padding:6px 0;border-radius:17px;font:600 12.5px var(--lh-font-heading);color:var(--lh-grey-600);}\n.lh-tab.active{background:#fff;color:var(--lh-text);box-shadow:0 1px 3px rgba(15,15,15,.15);}\n.lh-card-title{font:600 14px\/20px var(--lh-font-heading);color:var(--lh-text);}\n.lh-steps{display:flex;flex-direction:column;gap:8px;width:100%;}\n.lh-step{display:flex;gap:8px;align-items:flex-start;padding:12px;border:1px solid var(--lh-border-light);border-radius:8px;}\n.lh-step svg{width:16px;height:16px;flex-shrink:0;margin-top:2px;}\n.lh-step-title{font:600 14px\/20px var(--lh-font-heading);color:var(--lh-text);}\n.lh-step-sub{font:400 13px\/19px var(--lh-font-body);color:var(--lh-grey-700);}\n.lh-price-row{display:flex;align-items:center;justify-content:space-between;width:100%;}\n.lh-savings{display:inline-flex;align-items:center;padding:7.4px 9.86px;border-radius:17.25px;background:var(--lh-green-savings);font:500 12.3px var(--lh-font-heading);color:#000;white-space:nowrap;}\n.lh-arrival{display:flex;align-items:center;justify-content:space-between;width:100%;padding-top:9.86px;border-top:.5px solid var(--lh-grey-400);font-size:12.3px;color:var(--lh-grey-500);}\n.lh-arrival span:first-child{font:600 12.3px var(--lh-font-heading);}\n.lh-field{width:100%;display:flex;flex-direction:column;gap:2px;}\n.lh-field label{font:600 13px\/18.6px var(--lh-font-heading);color:var(--lh-grey-900);}\n.lh-select,.lh-input{display:flex;align-items:center;justify-content:space-between;gap:7.4px;width:100%;background:#fff;border:.93px solid var(--lh-grey-600);border-radius:3.7px;padding:5.6px 7.4px;font:400 13px var(--lh-font-body);color:var(--lh-grey-800);}\n.lh-select svg,.lh-input svg{width:11px;height:11px;flex-shrink:0;color:var(--lh-grey-600);}\n.lh-weight-row{display:flex;gap:7.4px;width:100%;}\n.lh-stepper{flex:1;display:flex;align-items:center;justify-content:space-between;border:.93px solid var(--lh-grey-600);border-radius:3.7px;padding:5.6px 7.4px;}\n.lh-stepper .u{font-size:11px;color:var(--lh-grey-600);}\n.lh-stepper .v{display:flex;align-items:center;gap:3.7px;font-size:13px;color:var(--lh-grey-800);}\n.lh-stepper .v svg{width:11px;height:11px;}\n.lh-scale{flex:1.3;display:flex;align-items:center;justify-content:space-between;border:.93px solid var(--lh-grey-600);border-radius:3.7px;padding:0 0 0 11px;overflow:hidden;}\n.lh-scale .lbl{display:flex;align-items:center;gap:3.7px;font-size:12px;color:var(--lh-grey-800);}\n.lh-scale .lbl svg{width:14px;height:14px;}\n.lh-scale .chev{border-left:.93px solid var(--lh-grey-600);padding:7px 9px;display:flex;align-items:center;}\n.lh-scale .chev svg{width:11px;height:11px;}\n.lh-pkgtype-label{display:flex;align-items:center;justify-content:space-between;width:100%;}\n.lh-ghost-plus{font:500 11px var(--lh-font-body);color:var(--lh-grey-600);border:none;background:none;}\n\n\/* ---- discount badges ---- *\/\n.lh-badges{position:absolute;left:377px;top:184px;display:flex;flex-direction:column;gap:8.7px;}\n.lh-badge-row{display:flex;gap:8.7px;}\n.lh-badge{width:115px;padding:12.4px;border-radius:13.9px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5.35px;filter:drop-shadow(0 5.3px 4px rgba(15,15,15,.1)) drop-shadow(0 2.66px 2.66px rgba(15,15,15,.06));text-align:center;}\n.lh-badge .lh-logo{height:32px;display:flex;align-items:center;justify-content:center;}\n.lh-badge .lh-upto{font:400 7.36px\/10.71px var(--lh-font-heading);letter-spacing:.07px;}\n.lh-badge .lh-pct{display:flex;align-items:flex-end;justify-content:center;line-height:0;}\n.lh-badge .lh-pct b{font:800 45.5px\/45.5px var(--lh-font-heading);letter-spacing:-.46px;}\n.lh-badge .lh-pctwrap{display:flex;flex-direction:column;gap:4px;text-align:center;}\n.lh-badge .lh-pctwrap .sym{font:400 29.45px\/22.35px var(--lh-font-heading);}\n.lh-badge .lh-pctwrap .off{font:400 9.37px\/18.34px var(--lh-font-heading);letter-spacing:.09px;}\n.lh-badge .lh-caption{font:400 7.36px\/10.71px var(--lh-font-heading);letter-spacing:.15px;}\n.lh-badge--ups{background:var(--lh-ups-brown);color:var(--lh-ups-gold);}\n.lh-badge--usps{background:var(--lh-usps-blue);color:#fff;}\n.lh-badge--fedex{background:var(--lh-fedex-purple);color:#fff;}\n.lh-badge--dhl{background:var(--lh-dhl-yellow);color:#000;}\n.lh-badge svg.ups-mark,.lh-badge svg.usps-mark{height:32px;width:auto;}\n.lh-badge svg.fedex-mark{height:20.7px;width:auto;}\n.lh-badge svg.dhl-mark{height:22px;width:auto;}\n\n\/* ---- animated element visibility (12s storyboard) ---- *\/\n.lh-card--package{animation:lh-package-op 12000ms linear infinite;}\n@keyframes lh-package-op{0%,14.583%{opacity:0;}17.917%,42.5%{opacity:1;}45.833%,100%{opacity:0;}}\n.lh-card--freight{animation:lh-freight 12000ms linear infinite;}\n@keyframes lh-freight{0%,42.5%{opacity:0;}45.833%,79.167%{opacity:1;}82.5%,100%{opacity:0;}}\n.lh-badge--ups{animation:lh-badge1 12000ms linear infinite;}\n@keyframes lh-badge1{0%,17.917%{opacity:0;}20%,40.833%{opacity:1;}44.167%,100%{opacity:0;}}\n.lh-badge--usps{animation:lh-badge2 12000ms linear infinite;}\n@keyframes lh-badge2{0%,19.583%{opacity:0;}21.667%,40.833%{opacity:1;}44.167%,100%{opacity:0;}}\n.lh-badge--fedex{animation:lh-badge3 12000ms linear infinite;}\n@keyframes lh-badge3{0%,21.25%{opacity:0;}23.333%,40.833%{opacity:1;}44.167%,100%{opacity:0;}}\n.lh-badge--dhl{animation:lh-badge4 12000ms linear infinite;}\n@keyframes lh-badge4{0%,22.917%{opacity:0;}25%,40.833%{opacity:1;}44.167%,100%{opacity:0;}}\n<\/style>\n\n<svg style=\"display:none\" aria-hidden=\"true\">\n<defs>\n<symbol id=\"lh-ic-truck\" viewBox=\"0 0 21.503 21.503\"><path d=\"M3.45459 16.7891C2.96644 16.2999 2.72237 15.706 2.72237 15.0073H1.20618V4.03181H15.0246V7.4434H17.4022L20.2968 11.3202V15.0073H18.6774C18.6774 15.706 18.4326 16.2999 17.9429 16.7891C17.4534 17.2783 16.859 17.5229 16.1597 17.5229C15.4604 17.5229 14.8666 17.2783 14.3783 16.7891C13.8902 16.2999 13.6461 15.706 13.6461 15.0073H7.7534C7.7534 15.7079 7.50865 16.3023 7.01916 16.7905C6.52967 17.2788 5.93528 17.5229 5.23598 17.5229C4.53654 17.5229 3.94274 17.2783 3.45459 16.7891ZM6.07012 15.8394C6.29635 15.6132 6.40946 15.3358 6.40946 15.0073C6.40946 14.6788 6.29635 14.4013 6.07012 14.175C5.84389 13.9487 5.56651 13.8356 5.238 13.8356C4.90948 13.8356 4.63203 13.9487 4.40565 14.175C4.17942 14.4013 4.06631 14.6788 4.06631 15.0073C4.06631 15.3358 4.17942 15.6132 4.40565 15.8394C4.63203 16.0658 4.90948 16.179 5.238 16.179C5.56651 16.179 5.84389 16.0658 6.07012 15.8394ZM2.55012 13.6634H3.1979C3.38859 13.3314 3.66395 13.0531 4.02397 12.8286C4.38415 12.604 4.78882 12.4917 5.238 12.4917C5.67552 12.4917 6.07721 12.6026 6.44306 12.8243C6.80891 13.0461 7.08718 13.3257 7.27787 13.6634H13.6806V5.37575H2.55012V13.6634ZM16.9939 15.8394C17.2202 15.6132 17.3334 15.3358 17.3334 15.0073C17.3334 14.6788 17.2202 14.4013 16.9939 14.175C16.7676 13.9487 16.4903 13.8356 16.1617 13.8356C15.8332 13.8356 15.5558 13.9487 15.3294 14.175C15.1032 14.4013 14.9901 14.6788 14.9901 15.0073C14.9901 15.3358 15.1032 15.6132 15.3294 15.8394C15.5558 16.0658 15.8332 16.179 16.1617 16.179C16.4903 16.179 16.7676 16.0658 16.9939 15.8394ZM15.0246 11.8714H19.0391L16.713 8.78734H15.0246V11.8714Z\" fill=\"#5C50FF\"\/><\/symbol>\n<symbol id=\"lh-ic-package\" viewBox=\"0 0 21.503 21.503\"><path d=\"M10.0796 17.5332V11.1374L4.47979 7.89476V14.2905L10.0796 17.5332ZM11.4234 17.5332L17.0232 14.2905V7.89476L11.4234 11.1374V17.5332ZM10.7515 19.4629L3.13588 15.0848V6.41818L10.7515 2.04007L18.3671 6.41818V15.0848L10.7515 19.4629ZM14.2061 7.97405L16.2841 6.78173L10.7515 3.58383L8.66837 4.78133L14.2061 7.97405ZM10.7515 9.97961L12.8346 8.77352L7.30206 5.57562L5.21893 6.78173L10.7515 9.97961Z\" fill=\"#656C76\"\/><\/symbol>\n<symbol id=\"lh-ic-ups\" viewBox=\"0 0 15.8884 18.5365\"><path d=\"M15.1584 1.92069C14.1774 1.8313 13.158 1.77415 12.1199 1.77415C8.27095 1.77415 4.14245 2.58561 0.730314 5.65378V10.8966C0.730314 12.6045 1.37455 14.0311 2.59875 15.0092C3.67983 15.8716 7.00826 17.3484 7.94434 17.7543C8.87034 17.3546 12.1883 15.8972 13.2881 15.0092C14.5212 14.0142 15.1565 12.6206 15.1565 10.8966V1.92105M1.43546 10.3507V6.09156H2.8181V10.4108C2.8181 10.7955 2.91265 11.3633 3.54642 11.3633C3.77586 11.3725 4.00307 11.3142 4.19888 11.1963V6.09156H5.57853V11.97C4.95522 12.3517 4.22915 12.5411 3.49485 12.514C2.12753 12.514 1.43397 11.7864 1.43397 10.3507M7.67081 15.2671H6.28816V6.43813C6.8472 6.10145 7.49517 5.93403 8.15099 5.95638C9.80082 5.95638 10.7074 7.18328 10.7074 9.15863C10.7074 11.134 9.8281 12.492 8.29337 12.492C8.08336 12.4957 7.87372 12.4697 7.67118 12.4151V15.2671H7.67081ZM7.67081 11.3062C7.8143 11.3589 7.96602 11.3868 8.11923 11.3882C8.91369 11.3882 9.29448 10.6724 9.29448 9.19014C9.29448 7.70789 8.96227 7.0448 8.15959 7.0448C7.99143 7.04334 7.82439 7.07667 7.67006 7.14225L7.67081 11.3062ZM11.0209 7.72035C11.0392 6.73231 11.8673 5.94356 12.8755 5.95455C13.4174 5.92634 13.9529 6.08131 14.3919 6.39417V7.57271C14.0665 7.2397 13.6236 7.04077 13.1539 7.01659C12.7619 7.0133 12.3542 7.18218 12.3411 7.66393C12.3277 8.15704 12.7346 8.35193 13.2488 8.64831C14.4035 9.3136 14.6266 9.91148 14.6001 10.6999C14.5736 11.5666 13.9648 12.5126 12.599 12.5126C12.0635 12.5067 11.5392 12.3616 11.0796 12.092V10.846C11.4447 11.1695 11.9099 11.3633 12.4006 11.3974C12.9077 11.3996 13.2414 11.1149 13.2294 10.6423C13.2189 10.217 12.9738 9.98585 12.3658 9.63562C11.2264 8.98022 11.0205 8.44096 11.0205 7.72035M2.13687 15.5602C0.737788 14.4388 0.000129132 12.8254 0.000129132 10.8966V1.72799C2.20713 0.58095 4.88011 -0.000445078 7.94434 -0.000445078C11.0086 -0.000445078 13.6816 0.58095 15.8886 1.72799V10.8966C15.8886 12.8254 15.1509 14.4388 13.7522 15.562C12.4738 16.5878 8.41071 18.3371 7.94434 18.5361C7.47798 18.3371 3.41488 16.5893 2.13613 15.5617L2.13687 15.5602Z\" fill=\"#8D9196\"\/><\/symbol>\n<symbol id=\"lh-ic-dhl\" viewBox=\"0 0 19.4557 2.77939\"><path d=\"M3.42438 5.92463e-06L2.80281 0.852994H6.1905C6.36171 0.852994 6.35945 0.918712 6.27579 1.03325C6.19081 1.14951 6.04855 1.35169 5.96194 1.46984C5.91804 1.52974 5.83859 1.63901 6.10178 1.63901H7.48718C7.48718 1.63901 7.71045 1.33212 7.89762 1.07546C8.15233 0.726433 7.91972 5.92463e-06 7.00943 5.92463e-06H3.42438Z\" fill=\"#8D9196\"\/><path d=\"M2.54837 2.77908L3.79688 1.06547H5.34617C5.51738 1.06547 5.5152 1.13119 5.43146 1.24573C5.34648 1.36199 5.20189 1.56205 5.11527 1.68012C5.0713 1.74002 4.99192 1.84944 5.25512 1.84944H7.33072C7.15811 2.08834 6.59818 2.779 5.59279 2.779L2.54837 2.77908ZM9.69863 1.84929L9.02157 2.779H7.23562C7.23562 2.779 7.91229 1.84944 7.91291 1.84944L9.69863 1.84929ZM12.4346 1.63901H8.06622L9.2608 5.92463e-06H11.0462L10.3615 0.939779H11.1585L11.8435 5.92463e-06H13.6287L12.4346 1.63901ZM12.2812 1.84952L11.6039 2.77908H9.81855C9.81855 2.77908 10.4952 1.84952 10.4958 1.84952H12.2812ZM0 2.216H2.63102L2.48728 2.41346H0V2.216ZM0 1.84952H2.89834L2.75437 2.04675H0V1.84952ZM0 2.58279H2.36386L2.22082 2.77908H0V2.58279ZM19.4556 2.41354H16.8347L16.9786 2.21608H19.4557L19.4556 2.41354ZM19.4556 2.77908L16.5682 2.77939L16.7113 2.58287H19.4556V2.77908ZM17.2455 1.84952H19.4557V2.04683L17.1019 2.04699L17.2455 1.84952ZM16.1013 5.92463e-06L14.907 1.63893H13.0151C13.0151 1.63893 14.2098 5.92463e-06 14.2104 5.92463e-06H16.1013ZM12.862 1.84952C12.862 1.84952 12.7315 2.02969 12.6682 2.11624C12.4439 2.42243 12.6422 2.77908 13.3739 2.77908H16.2413L16.9186 1.84952H12.862Z\" fill=\"#8D9196\"\/><\/symbol>\n<symbol id=\"lh-ic-fedex\" viewBox=\"0 0 16.838 5.03035\"><path d=\"M16.8383 4.85387H15.1439L14.5572 4.19614L13.9758 4.85387H8.39294V4.54079H8.37979C8.17194 4.84861 7.83255 5.03015 7.46159 5.03015C6.60127 5.03015 5.97774 4.33558 5.88039 3.53314H3.63094C3.63094 4.15141 4.44916 4.46713 4.83591 3.91726H5.94091C5.21477 5.69841 2.51542 5.21694 2.51542 3.29373C2.51542 3.12535 2.53647 2.96486 2.57594 2.8149H1.28941V4.85387H0.000246891V0.00242403H2.86797V1.08374H1.28941V1.77305H2.73116V2.40973C3.37574 1.26264 5.46471 1.21529 5.93828 2.77806C6.1356 2.10717 6.69862 1.59677 7.4458 1.59677C7.8115 1.59677 8.12459 1.69675 8.37716 1.98615H8.39031V-0.000206907H12.3683V1.26527H10.8923V1.68622H14.0153L14.6072 2.3387L15.1781 1.68622H16.8198L15.4175 3.26216L16.8383 4.85387ZM4.88853 2.82542C4.76225 2.1519 3.82563 2.13348 3.66514 2.82542H4.88853ZM7.701 2.45972C6.80649 2.45972 6.7907 4.11195 7.701 4.11195C8.61131 4.11195 8.55869 2.45972 7.701 2.45972ZM12.1157 4.61446V3.8357H10.6398V2.65967H12.1157V1.92038H10.6555V1.02849H12.1315V0.233947H9.63211V4.61446H12.1157ZM12.3841 3.56735V4.76705L13.718 3.26742L12.3841 1.76778V2.9254H10.9081V3.56735H12.3841ZM14.5546 3.83833L15.2465 4.61446H16.3121L15.1018 3.26216L16.2963 1.92038H15.2834L14.6098 2.69124L13.91 1.92038H12.8655L14.0652 3.26742L12.8655 4.61446H13.8679L14.5546 3.83833Z\" fill=\"#8D9196\"\/><\/symbol>\n<symbol id=\"lh-ic-usps\" viewBox=\"0 0 18.039 11.045\"><path d=\"M18.039 9.55545e-05H2.34337L2.33394 0.0529016C2.33394 0.0529016 11.5609 1.94732 11.7438 1.98032C13.8636 2.35468 13.7985 2.76393 13.7985 2.76393C15.2837 2.75638 15.4666 2.81673 15.7259 3.03267C16.5067 3.6852 15.2375 5.60791 15.2375 5.60791C15.0564 5.74181 1.32968 11.0422 1.32968 11.0422H15.6901L18.039 9.55545e-05ZM9.88332 2.55365C9.46747 2.55082 9.17421 2.55647 9.14121 2.55365H1.80305L0.000101904 11.045C0.000101904 11.045 5.52211 8.33496 6.19727 7.98795C7.5806 7.27696 9.49482 6.33776 11.2629 5.73615C11.5995 5.62205 13.0432 5.17697 13.8834 5.02704C14.2096 4.96858 14.3483 4.91389 14.3435 4.85259C14.3313 4.67815 14.0031 4.66683 13.4487 4.69418C11.756 4.77339 8.51225 6.06525 7.57871 6.55842L6.52542 3.29199H13.2601C13.4864 2.65643 11.1318 2.56402 9.88332 2.55459V2.55365ZM13.4534 3.34008C13.4044 3.34008 13.3629 3.37308 13.3053 3.44946C13.2535 3.51641 13.212 3.56073 13.0781 3.62863C12.8697 3.73141 12.3265 3.78799 12.0719 3.80967C11.8277 3.83042 11.7617 3.85494 11.757 3.94923C11.7551 4.03316 11.7938 4.08125 12.1436 4.08125C12.9498 4.08125 14.402 3.77667 14.8395 3.91623C15.0706 3.98978 14.8848 4.40186 14.6953 4.94218C14.6217 5.15151 14.766 5.13643 14.849 5.04496C14.9329 4.95255 15.3091 4.26324 15.3497 3.91246C15.4082 3.41363 14.98 3.33914 14.3907 3.33914H13.4524L13.4534 3.34008Z\" fill=\"#8D9196\"\/><\/symbol>\n<symbol id=\"lh-ic-autorenew\" viewBox=\"0 0 28.967 28.967\"><path d=\"M6.15641 19.3713C5.71386 18.6069 5.38195 17.8224 5.16067 17.0177C4.9394 16.2131 4.82876 15.3883 4.82876 14.5435C4.82876 11.8479 5.76415 9.55471 7.63494 7.66381C9.50572 5.77291 11.7889 4.82746 14.4844 4.82746H14.6956L12.7645 2.89632L14.4543 1.20658L19.2821 6.03441L14.4543 10.8622L12.7645 9.17251L14.6956 7.24137H14.4844C12.4728 7.24137 10.763 7.95046 9.35485 9.36864C7.94674 10.7868 7.24268 12.5118 7.24268 14.5435C7.24268 15.0665 7.30302 15.5794 7.42372 16.0823C7.54442 16.5852 7.72546 17.0781 7.96685 17.5609L6.15641 19.3713ZM14.5146 27.7597L9.68677 22.9318L14.5146 18.104L16.2043 19.7937L14.2732 21.7249H14.4844C16.496 21.7249 18.2059 21.0158 19.614 19.5976C21.0221 18.1794 21.7262 16.4545 21.7262 14.4228C21.7262 13.8998 21.6658 13.3868 21.5451 12.8839C21.4244 12.381 21.2434 11.8882 21.002 11.4054L22.8124 9.59494C23.255 10.3593 23.5869 11.1439 23.8082 11.9485C24.0295 12.7531 24.1401 13.5779 24.1401 14.4228C24.1401 17.1183 23.2047 19.4115 21.3339 21.3024C19.4631 23.1933 17.18 24.1388 14.4844 24.1388H14.2732L16.2043 26.0699L14.5146 27.7597Z\" fill=\"white\"\/><\/symbol>\n<symbol id=\"lh-ic-check\" viewBox=\"0 0 20 20\"><circle cx=\"10\" cy=\"10\" r=\"9\" fill=\"#15803D\"\/><path d=\"M8.3667 13.7692L4.8103 10.2128L5.52312 9.50003L8.3667 12.3436L14.477 6.23336L15.1898 6.94616L8.3667 13.7692Z\" fill=\"white\"\/><\/symbol>\n<symbol id=\"lh-ic-bordercircle\" viewBox=\"0 0 20 20\"><circle cx=\"10\" cy=\"10\" r=\"8\" stroke=\"#256FEB\" stroke-width=\"4\" fill=\"none\"\/><\/symbol>\n<symbol id=\"lh-ic-caret\" viewBox=\"0 0 11.1646 11.1646\"><path d=\"M9.21707 3.55692C9.66771 3.55692 9.89303 3.09389 9.56757 2.82028L6.36302 0.126281C6.16273 -0.0420936 5.83727 -0.0420936 5.63698 0.126281L2.43243 2.82028C2.10697 3.09389 2.33229 3.55692 2.78293 3.55692L9.21707 3.55692Z\" fill=\"currentColor\"\/><path d=\"M2.78293 7.44308C2.33229 7.44308 2.10697 7.90611 2.43243 8.17972L5.63698 10.8737C5.83727 11.0421 6.16273 11.0421 6.36302 10.8737L9.56757 8.17972C9.89303 7.90611 9.66771 7.44308 9.21707 7.44308H2.78293Z\" fill=\"currentColor\"\/><\/symbol>\n<symbol id=\"lh-ic-scale\" viewBox=\"0 0 16.7469 16.7469\"><path d=\"M4.18714 1.39557C4.18714 1.75354 4.52906 2.09336 4.88493 2.09336H11.8628C12.2208 2.09336 12.5606 1.75145 12.5606 1.39557H13.9562C13.9562 2.55181 13.0191 3.48894 11.8628 3.48894H9.07166L9.07236 4.92778C11.8258 5.27179 13.9562 7.62055 13.9562 10.4668V14.6536C13.9562 15.0387 13.6436 15.3514 13.2584 15.3514H3.48935C3.10417 15.3514 2.79156 15.0387 2.79156 14.6536V10.4668C2.79156 7.61985 4.92261 5.27109 7.67609 4.92778V3.48894H4.88493C3.7266 3.48894 2.79156 2.5539 2.79156 1.39557H4.18714ZM8.37387 6.2801C6.11443 6.2801 4.18714 8.20599 4.18714 10.4668V13.9558H12.5606V10.4668C12.5606 8.20739 10.6333 6.2801 8.37387 6.2801ZM8.37387 7.67567C8.89163 7.67567 9.3759 7.81663 9.79178 8.06225L7.87984 9.97349C7.6077 10.2456 7.6077 10.688 7.87984 10.9602C8.13174 11.2114 8.52809 11.2309 8.80092 11.0181L8.86721 10.9602L10.7792 9.04892C11.0241 9.46481 11.165 9.94907 11.165 10.4668C11.165 12.0089 9.91599 13.258 8.37387 13.258C6.83176 13.258 5.58272 12.0089 5.58272 10.4668C5.58272 8.92472 6.83176 7.67567 8.37387 7.67567Z\" fill=\"currentColor\"\/><\/symbol>\n<symbol id=\"lh-ic-chevron\" viewBox=\"0 0 11.1646 11.1646\"><path d=\"M2.78293 4.13923C2.33229 4.13923 2.10697 4.69001 2.43243 5.01547L5.63698 8.22003C5.83727 8.42031 6.16273 8.42031 6.36302 8.22003L9.56757 5.01547C9.89303 4.69001 9.66771 4.13923 9.21707 4.13923H2.78293Z\" fill=\"currentColor\"\/><\/symbol>\n<symbol id=\"lh-ic-chevron1\" viewBox=\"0 0 14.8862 14.8862\"><path d=\"M4.22601 4.96206C3.77537 4.96206 3.55005 5.52726 3.87552 5.86124L7.08007 9.14971C7.28035 9.35524 7.60581 9.35524 7.8061 9.14971L11.0106 5.86124C11.3361 5.52726 11.1108 4.96206 10.6602 4.96206H4.22601Z\" fill=\"currentColor\"\/><\/symbol>\n<symbol id=\"lh-badge-ups\" viewBox=\"0 0 26.0222 32.1311\"><path d=\"M13.0132 30.9337C13.2774 30.8007 20.1462 27.8077 22.3257 26.0118C24.5713 24.1495 25.7601 21.489 25.7601 18.2964V3.33122L25.562 3.2647C20.0802 0.271659 13.2774 0.471195 12.9472 0.471195C12.683 0.471195 5.88022 0.271659 0.398382 3.2647L0.26629 3.33122V18.3629C0.26629 21.5555 1.45512 24.216 3.70069 26.0783C5.88022 27.8742 12.749 30.8672 13.0132 30.9337Z\" fill=\"#341B14\"\/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.50045 26.2779C5.74602 28.0737 13.0111 31.2663 13.0111 31.2663C13.0111 31.2663 20.2762 28.0737 22.5218 26.2114C24.8994 24.216 26.0222 21.489 26.0222 18.363V2.86565C20.2762 -0.26042 13.0111 0.00562879 13.0111 0.00562879C13.0111 0.00562879 5.74602 -0.26042 0 2.86565V18.4295C0 21.5555 1.12279 24.2825 3.50045 26.2779ZM4.15992 25.4129C2.11249 23.7501 1.05575 21.3557 1.05575 18.4292V9.45004C8.18874 2.79883 17.3031 2.39976 24.9645 3.13139V18.4292C24.9645 21.2892 23.9078 23.7501 21.8603 25.4129C20.0771 26.8762 14.5292 29.4037 13.0101 30.0688C11.4911 29.4037 6.00922 26.9427 4.15992 25.4129Z\" fill=\"#FFB406\"\/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.7969 17.9639C21.7309 17.2323 21.3346 16.8332 20.3439 16.2346C18.4946 15.1704 18.0983 14.2392 18.0323 12.9755C18.0323 11.1132 19.6174 10.049 21.1365 9.98247C22.3914 9.91596 23.25 10.3815 23.6462 10.7141V12.7095C23.1839 12.2439 22.3914 11.7783 21.5988 11.7783C21.0044 11.7783 20.2779 12.1109 20.2779 12.909C20.2779 13.6413 20.8338 13.9817 21.5887 14.4438C21.6564 14.4852 21.7263 14.528 21.7969 14.5718C23.7123 15.7025 24.1086 16.7667 24.0425 18.0969C24.0425 19.5602 22.9858 21.1565 20.7402 21.1565C19.8155 21.1565 18.9569 20.8239 18.2304 20.4249V18.2965C18.8249 18.8286 19.6835 19.2277 20.41 19.2277C21.2686 19.2277 21.7969 18.7621 21.7969 17.9639ZM13.608 21.1567C13.0796 21.1567 12.7494 21.0901 12.5512 21.0236V25.879H10.3056V10.8473C11.1642 10.3152 12.1549 10.0491 13.4098 10.0491C16.1177 10.0491 17.6368 12.111 17.6368 15.5031C17.6368 18.8287 16.1838 21.1567 13.608 21.1567ZM12.5508 11.978C12.5815 11.9677 12.6153 11.9558 12.6515 11.9431C12.8496 11.8735 13.1201 11.7785 13.3434 11.7785C14.6643 11.7785 15.1927 12.8427 15.1927 15.4366C15.1927 17.9641 14.5322 19.1613 13.2113 19.1613C12.8811 19.1613 12.6169 19.0948 12.4848 19.0283V11.978H12.5508ZM9.04987 20.2256C8.19127 20.8242 7.00243 21.1567 5.61546 21.1567C3.36989 21.1567 2.18106 19.893 2.18106 17.4321V10.1822H4.49268V17.5651C4.49268 18.1637 4.62477 19.1614 5.68151 19.1614C6.14383 19.1614 6.47406 19.0949 6.73825 18.8953V10.1822H9.04987V20.2256Z\" fill=\"#FFB406\"\/><\/symbol>\n<symbol id=\"lh-badge-usps\" viewBox=\"0 0 42.7757 32.131\"><path d=\"M37.129 29.4533L42.7757 2.67755H5.72416L0.000127228 29.4533H37.129Z\" fill=\"white\"\/><path d=\"M6.4972 3.76726C6.4972 3.76726 27.0728 8.04827 27.5369 8.12611C32.2553 8.98231 32.1006 9.91635 32.1006 9.91635C35.4268 9.91635 35.8135 10.072 36.4323 10.539C38.2114 12.0179 35.3494 16.299 35.3494 16.299C34.9627 16.6103 4.25399 28.5193 4.25399 28.5193H36.355L41.6149 3.68942H6.57455L6.4972 3.76726Z\" fill=\"#004B87\"\/><path d=\"M30.4789 11.7843C30.0148 12.0179 28.7772 12.1735 28.2357 12.1735C27.6943 12.2514 27.5396 12.2514 27.5396 12.4849C27.5396 12.6406 27.6169 12.7962 28.3904 12.7962C30.1695 12.7962 33.4183 12.0957 34.4239 12.407C34.9653 12.5627 34.5012 13.4968 34.1145 14.7421C33.9597 15.2092 34.2692 15.2092 34.4239 14.9756C34.5786 14.7421 35.4294 13.1854 35.5068 12.407C35.6615 11.3173 34.6559 11.0838 33.3409 11.0838H31.2524C31.1751 11.0838 31.0204 11.1617 30.943 11.3173C30.8657 11.5508 30.7883 11.6287 30.4789 11.7843Z\" fill=\"#004B87\"\/><path d=\"M5.26096 9.37163L1.23867 28.4416C1.23867 28.4416 13.5376 22.3703 15.0846 21.592C18.1787 19.9574 22.4331 17.8558 26.378 16.5326C27.1515 16.2991 30.3229 15.2872 32.2567 14.9759C32.9529 14.8202 33.2623 14.7424 33.2623 14.5867C33.2623 14.1975 32.4888 14.1975 31.2512 14.1975C27.4609 14.3532 20.1899 17.311 18.1787 18.4007L15.8582 11.084H30.8644C31.5606 9.21595 21.9689 9.44946 21.6595 9.44946H5.26096V9.37163Z\" fill=\"#004B87\"\/><\/symbol>\n<symbol id=\"lh-badge-fedex\" viewBox=\"0 0 74.2529 20.6847\"><path d=\"M73.8202 17.7706C73.8202 16.6619 73.0524 15.8697 71.9676 15.8697C70.9611 15.8532 70.1316 16.6599 70.1131 17.6713C70.1131 17.7044 70.1131 17.7375 70.1131 17.7706C70.1131 18.8793 70.8808 19.6716 71.9656 19.6716C72.9659 19.6964 73.7955 18.9 73.8202 17.8947C73.8202 17.8534 73.8202 17.812 73.8202 17.7706ZM71.4942 17.8699V19.1524H71.1114V16.3827H71.9944C72.5851 16.3827 72.9042 16.6185 72.9042 17.1149C72.9207 17.3983 72.7333 17.6527 72.4596 17.721C72.6963 17.7624 72.7766 17.9692 72.8342 18.3457C72.8733 18.5835 72.9124 19.02 73.0112 19.1172H72.5378C72.4205 18.8607 72.439 18.5029 72.3608 18.1864C72.3176 17.9754 72.12 17.8368 71.9079 17.8699H71.4942ZM71.9882 17.5121C72.3814 17.5121 72.4966 17.3156 72.4966 17.117C72.4966 16.8998 72.3628 16.7198 71.9882 16.7198H71.4963V17.5017L71.9882 17.5121ZM69.6829 17.7706C69.6726 16.5027 70.6873 15.4643 71.9491 15.4539C73.2109 15.4436 74.2442 16.4634 74.2545 17.7313C74.2648 18.9993 73.25 20.0377 71.9882 20.048C71.982 20.048 71.9759 20.048 71.9676 20.048C70.7347 20.079 69.7117 19.0986 69.6829 17.8616C69.6829 17.8306 69.6829 17.8017 69.6829 17.7706Z\" fill=\"#FF6600\"\/><path d=\"M61.4754 20.0624L58.6205 16.8376L55.8931 20.0644H50.2224L55.7779 13.6087L50.2224 7.2399H56.1916L58.8695 10.3364L61.5433 7.2399H67.1009L61.6709 13.5674L67.4508 20.0624H61.4754Z\" fill=\"#FF6600\"\/><path d=\"M39.0978 20.0642V-7.92712e-06H50.2129V4.55063H43.832V7.23965H50.2129V11.5834H43.832V15.5135H50.2129V20.0642H39.0978Z\" fill=\"#FF6600\"\/><path d=\"M34.5803 -7.92712e-06V8.27389L34.4136 8.14151C33.3824 6.96248 31.9683 6.61911 30.4636 6.61911C27.3946 6.61911 25.2231 8.61726 24.4203 11.3932C23.4941 8.34836 21.0199 6.61911 17.496 6.61911C14.6329 6.61911 12.2905 7.81676 11.1151 9.92867V7.23965H5.35177V4.55064H11.7327V-7.92712e-06H5.6779e-05V20.0642H5.35177V11.5834L10.615 11.5379C10.4482 12.1792 10.3659 12.8411 10.368 13.5051C10.368 17.6668 13.5214 20.6496 17.5578 20.6496C20.9582 20.6496 23.0927 19.0548 24.2886 16.1362H19.7582C19.1407 17.0049 18.7928 17.2138 17.5763 17.2138C16.154 17.2138 14.8778 15.9293 14.8778 14.44H24.1486C24.5397 17.7537 27.1147 20.6889 30.6386 20.6889C32.2132 20.6496 33.6747 19.8636 34.5783 18.5666V20.0683H39.1066V-7.92712e-06H34.5783H34.5803ZM15.0857 11.6C15.3739 10.3362 16.3639 9.50877 17.5784 9.50877C18.9183 9.50877 19.8446 10.3155 20.0916 11.6H15.0857ZM31.6307 16.8994C29.9202 16.8994 28.8499 15.284 28.8499 13.6064C28.8499 11.8048 29.7761 10.0859 31.6307 10.0859C33.4853 10.0859 34.3292 11.8048 34.3292 13.6064C34.3292 15.3253 33.5059 16.8994 31.6307 16.8994Z\" fill=\"white\"\/><\/symbol>\n<\/defs>\n<\/svg>\n\n<div class=\"lh-stage\"><div class=\"lh-canvas\">\n\n  <div class=\"lh-grid\">\n    <div class=\"lh-tablebg\"><\/div>\n    <h2 class=\"lh-title\">Awaiting Shipment<\/h2>\n    <svg class=\"lh-gear\" viewBox=\"0 0 33.9536 34.4861\"><path d=\"M33.9534 14.5993C31.5071 14.5993 29.5237 12.5849 29.5237 10.1003C29.5237 8.85869 30.0199 7.73394 30.8196 6.92028L27.1397 3.18282C26.3386 3.99648 25.2312 4.49903 24.0087 4.49903C21.5624 4.49903 19.579 2.4846 19.579 0H14.3758C14.3758 2.48601 12.3924 4.50044 9.9461 4.50044C8.72363 4.50044 7.61619 3.99648 6.81507 3.18423L3.13518 6.92169C3.9363 7.73534 4.43111 8.8601 4.43111 10.1017C4.43111 12.5863 2.44772 14.6007 0.00138602 14.6007L0 19.8867C2.44633 19.8867 4.43111 21.9011 4.43111 24.3857C4.43111 25.6273 3.93492 26.752 3.13518 27.5657L6.81507 31.3032C7.61619 30.4895 8.72363 29.9869 9.9461 29.9869C12.3924 29.9869 14.3758 32.0014 14.3758 34.486H19.579C19.579 32 21.5624 29.9855 24.0087 29.9855C25.2312 29.9855 26.3386 30.4881 27.1397 31.3017L30.8196 27.5643C30.0185 26.7506 29.5237 25.6259 29.5237 24.3843C29.5237 21.8997 31.5071 19.8853 33.9534 19.8853V14.5993ZM25.5028 22.2432L16.976 27.2433L8.44919 22.2432V12.2428L16.976 7.24265L25.5028 12.2428V22.2432Z\" fill=\"#00E664\"\/><\/svg>\n    <div class=\"lh-tag lh-tag--cyan\">Over 16oz<\/div>\n    <div class=\"lh-tag lh-tag--green\">Shopify<\/div>\n    <div class=\"lh-thead-bg\"><\/div>\n    <div class=\"lh-thead\"><span>Order #<\/span><span>Mode<\/span><span>Service<\/span><\/div>\n    <div class=\"lh-thead-date\">Order Date<\/div>\n\n    <div class=\"lh-rows\">\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">SH-60286<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-truck\"\/><\/svg>Freight<\/span><span class=\"lh-cell lh-cell-service\"><img loading=\"lazy\" decoding=\"async\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHQAAAB0CAIAAADb+IFwAAAABGdBTUEAALGPC\/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAARGVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAADoAEAAwAAAAEAAQAAoAIABAAAAAEAAAB0oAMABAAAAAEAAAB0AAAAAFgK0L4AAAHLaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA2LjAuMCI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4yMDA8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MjAwPC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiUWbv0AACdpSURBVHgB7ZwJmF1Vle\/PeKe6NSeVuSozJCFAggQNMg+iiIATTsBrny2gYgvazg08GltFAUFatCE2fo2IyEMUhKCGMcxDAgmQeZ5qSGpIDXc4Q\/\/++1aFBCT9ve5cP4t3DzfnnnvOPmuv\/V9rr2nvwo7j2Koc5UHAKQ\/ZClUhUAG3jHpQAbcCbhkRKCPpiuZWwC0jAmUkXdHcCrhlRKCMpCuaWwG3jAiUkXRFcyvglhGBMpKuaG4F3DIiUEbSFc2tgFtGBMpIuqK5FXDLiEAZSVc0twJuGREoI+mK5lbALSMCZSRd0dwKuGVEoIykK5pbAbeMCJSRtLdf2ux0svXPNIqt2LY48Ztvc8\/81klNzJ18zioWoqAYBqEVxrYde9kqK5ON9Q5HNLgNpfSGzpG5fPMEMr3xhnnN9D\/8TvsD1wAJcgY9Czz5LxQ+AtcVpJ4Ze5ALd+zY+erK3WvXehvWFztaw6623p6+qkLkREXrHYdP+tpl9uhmpORGA8X1m+3Q91paoqTnsE0tCiMX0pDjS4eRWmTHkRU5lj0IOjeHI8j7A9eOHQBkYA5AchVZeddzXZt3QuFQDLdu637mxf6HHtr1ypKoqy3s689EXjq0k3bOSibiOPSjYPvCjoZ5xzd8\/JO2FbX\/YeGqa7\/nFe1xX\/zC6HM+FVqOH\/ouQDpSYICkr0DKanvASq\/CeAhg9TjMjv2Ba5TWcm0GGFgh344HClKhsPDKKx3339vx6OPWqjU1xdwIlBpVjnlYROvCOGXvtm0v0WtZQU060VgfWLFX7N\/9+JPZzWurc1H3Q38e+6EPRm4W3Y\/7usI48KsbLd62ERvzAmLG9MShww\/NEkl42B37BVf2VkoaWq7vOjaTNwyidavW\/fo3PQvv91o3Vsd2ynKSjj0QFHodJ1ddPVBTmx41Jt00trZpjJutyqfcMVMm1xx9TIBieunkUUeuf+KR\/oGgZe48x00gpoEXXlz5kx9hHqZ9+R+ys+YgP91FeTEYCBJ5WZFr2w74DsNjv+BqlFZRttZxbcvdvavjnns2\/\/IXyQ1rRsZFz\/P6w7DHtfurqjLTD0vPmTvhsLmJqTPc+kYn5dlVKemfTKUbxY6DVsbO2DPOaJg00wnDxKwpcaypv3LhveEf\/5yI\/PYj5mQPmQOWtGN2oKlm3nABztLo4XjsF1wGCQb4mjgorli+8rrrrIcfagpzsR0GfrI99P2WKVXHzJ\/w3vdmDp7p1o0aHD9ODDsiy2x5JVuNYJjUWJdkOnXEoXhEWddQgI2aP3ftw5MLgTN+9uEod9FGT\/Ouy7seEDuh47pGhYelVWD+oS1vceBNrAjVKXY+eP+ma651N72WBa3Q7Y+TA+Oam84+e9Tp70tMPahoOUDn4InkgviYk7GRxq4Y9ZVD1D+eR8RotI19dWvn+1at4mf15OlFN+lYQW71koENW6rnHp0Y0WQTmzhxYGsKDEe7sF9wASro33j77Tuvu6Gup81JRPnIzyUaq9\/3\/vGf+bvEtOmAE0UBkx7r6MSKKcAghCSKZxyf4FbsFphZLojsSD+xpzGvYcMdo9380j3Xam97\/uILc0uWj7no81O+dDEKH8IDKsxL+51jktPf3gHLQPGXTZpd7Nv077fu+vHPmvraIz\/aFXuFiTOnXPj5xvecEmcyqHwUxQRmfEnDFbZBDLW1XamaIWwiKfwSLQgAhDN42wlZC1nW0AsdQA15ywFdx\/Oj0MqFca\/tFsQUrTij\/5j8YXgQSWIiwYL5ylBAzFEQJIzyW265qe3HP2nqG3CdYrvvFucfN\/PL30rPPASMNPc1XjNmSYeXhZxxPcJDIisdajKUhu0lR\/BVoyFChCRQgJuB5asLGzZmjprjNo3F1NhuVLDpSibcdDZEdjh8C9zAuHVPiMbEBh5qZIUdv\/u\/66765xHdHfiifstzTjl5+jf\/yR43CQwYqtT0QAeecVxECK7jQxvx8R+O1Ip6LfISKzUcbS6T1NWsZgraspyaiqD54gsbr7uhvqvb9\/xu8oNTT5n+7SvssZNRL\/QrVhq1RzMPmArFtm87XmAVBpCm8ms7v3HDyu9et\/W2O918\/oB181ckJAfPMEykJG3xmattO4i6slvWZJx8dzFKHn3CtMsuD8e0hKiTo4AXbxSRsx3oQwKO5d8SCFw2yupeunz1v92x6ra7cz3dB7q3vwY90s9SlKPUFY9jFwo7FtzuPPdcOlEcCO3woEOnfuNrYVNLkfzVlTUgEpWO2\/j5A3x4oEuo4XgxlkgWPW44cs7MC8\/LHDQ9UV97gDv7q5BTIUAKY8UgSbzav\/iJLZ\/7Wjq3I2d199SPm37l1TXvOa1gkgBl+IyflMm4qwMOrtgwmUWgYpvMAkEb5SH8bdHyPCbMXwWRA9iJU0AbYZsT59zutf9xm92zHRXus6qaPnpuzfEnxmFAtIVhJqQn8yL0VWNQPtBH3o4Kxm2hwppFkjgxQjKyfEpkww5Z4FG0ExkDx3g6H11ceGJxIl3MUWWdOW\/8J86Pk2lsrBMSJGFwFSaYVB8dPtDQmgBYIZ2JuZA44iP3oKxLVwpOhuEhpQUzgdXdu\/XO+7JBrx\/05ZP+uPPPd8aMCQjq5WOcoovdIKog1VfBAJt7wAfLxPfR2YgFDIpoApSI0LFylCEH0+gD3mWZCTqelIPI1ul9bWn4\/LOpQpAPbXvu0Y0nnVSQ9qCwqvpZFlM2r1QLUSjZdxk\/gdke88AFMyAiW4uxknz+nw8MOjhid5lMAXCqXI6ZqAqwua8beCJf9conpHv5i1JMXOIVdhFMQWzv0z+mjBdl1eGTl4x937vJnnG86dU30CkRMDcNKYiCk+Fkn5b64SlCoPQUBtsefSjRtzNhux2p6jFnnGXVVLtgRG6quoFNPVf8uk7Ospa+uvGFZZtXb2jf2dHKYk1z89hpU8ccefiMlpEZD3cXBf254PnVW4KCCuwUthBGWuGFQ65FKSYZR1jVwJRrec6EyEdBnZ+ae\/DEpA+6uFUXR\/bymtYXlq5bs75je3u77TujRtVPbxk5Z8akWVPHePBC3ILExRNtjZXWcHSrGMbrtu3MFbV+xFKRG0eTR2czkAYMLU6V\/LFy7rUbOvqUF0Y84xQqGkKXQtIoyBdVpbe9KA4okkZW0nLGjK5t79ydLxSQO+pDq6lj66qpQMPFIDODPIgX2HJjQivLbmvd9diT9XY0QBTUPLn+6CNhH301Y8BoKHUC6YWPrfjpf9z53PItHR20o2LLKMFpqZ+Mp0yoOe2EWReed\/pB4xqXrd5y7oXX9eZcgCu4Pgl1MsQTOpretsXcp8SLnZEtCgE3iKzchPrq397yf2Y012Gnnntt649v+e0jT67d2o5S+OIb14APjb3Rdf7xR0\/8+\/91+jGHTVa8Rm6M4fJARKmQwLO9zt7gkm\/+dPmq7Z5P+SjK+sGC67981OwpGr7Cc7oFdruzUPjUl3+wqT0PAAI3zASKsDFEgR9qXhYpfFANYIp4fSQAqTD+3lVfuOnm+1ev3eKr9hFUZ6MF1146\/5BmcSjLSqZDqc84ZTGjZRagtfqWv5zduDFF3A6Zo+Z7Y8dIMyJSCok6dsK+ovuda377r7\/4U69dtNyUlcnImMACypzMhlG0amPvugWLFi1acsP3vugn\/f68293vRD7yRgBBPpAltcExTjsRsg4COSnPi4E6j\/b0JhiFx5S+8Zd\/vPqme7Z3BE6ixk6lVZi0meakbpkosNoH8nfc\/\/wfn1rxxU+fecmnT6pxfStwNbMcdUNTGCKD395Z2LKLKINfTk2ChRIN2OisHAeKgtbDc2v7QGu7YcNVyTqkBmdsPbOPgpJQ4iETgHVDy0oUc33FaHt3sGUXJksdZXKFftErdUtT+Sf9HDo8VfqisOeVlxP93T4cZrJN849l7UZ0xQ+EUBv\/p79c9KMF9xcT1ZZbheNRjhrmbFQjikIssJ+2\/WwQppdtGvjcZb+64KL3FsGQUTooLLYgcCgeUjSIC9Jf5qdUGDvohAw7BmvfTlT1x4nLr7vz2lvuyzk1VnoEk4VabqzEF6b9gFlCNQ340g2dPdb3r\/l1547t\/\/L1czO+AmLUVqM0z6UWCd\/yPSuRUj3YLZp1OR7TRDLQyAANxvykckE3G4Z5wDM650Sqh8r8a16GZOSJ2EnZrPI5A1pBxAJR\/DDW1Eto0g8duIV9kOW+fsf9fbvXrHQps8aeU9tYO+twvcBrUuqIUGh9R\/fPbvtT3q9G1VhBcIu9h06ted9xR42Z0LKtrfXhZ199aulKyoexnaDX19asvf7Gu\/N9tjVAqbeI3jlhIbZScRW7FwBCXAuvYp9V7LGsWq2uRz1BkPnBT++\/775FgVXtOSmsRYyhC3ITxza2jK73k4n1bZ3rNm6N7TR1nNiLBxzvpl8tHt0y\/tLzT2JYZowmxyR1Bmo5VeO\/YnxhUZaWQxIgP0FqtJeBiov9cY4MCXcEn3nLT1iM0UYJUEhsbdEq9JZW\/eOwGIe9VK\/lZ2WNhQ7e5XVHqw40y\/Q9dLCIY+V7u3Zu3DTKcQfsuHbyFK+mvvQU+RmXHS9ZvmbT9h7LG8GKoh2GExrSt\/zo4jlTBtd1dvadvmzFhr48NhTk6DaMwqJtZ3yCY839MOE6S1Z3ffXqO\/FpbsRow5Sf\/+FVF41rrDbsxa4XrW\/t+uqVCwbsKpeV0Chyiz0zp4264LyzT5o\/o6mhNuE5uzq7F7+w+scLFj318g5lFVahEEQ\/\/Nfb3zVv6rEzWjD8ClFUmESp6BZwUEBgU5AjuDngReqCPWVkYa1vXXXJB3oKfhSnuOV6zp+eWv7bhS+4XjZCsEH\/Ow+f+rEz5ys2dOxUhNvYPW18nRX0Eh96MRsHKPWjUMbCGnEJrH0PuImjrs58e7drp3utvurp060UbyIDKjp8w5bbvasXQ6nIM4EdD22\/KpVNGTosFMSNGf\/4I6btS3awN3NTIqpr6nS8Aq7HCgjXnKq0\/9750yY0VO956\/Kb7slTy\/AhG4Rh75knz77msvMmj6KkAGq8FE4YVf3x9x15\/LtmXXvjveu27vCZqXGh0JtrX99hz2iRrg0qjXGaeDiGCpQIHCxLmss9Y0AgSNuM55x79imMbg+vA7nCvX94AXPhuB6aOqt59D+cczSNjY6J081tPTLxQhYXCHXFfDpUzlb3++itMQuR3dqeZuLGfkC0NKbJYp+GxEzIykST6R4\/otELQ3RAqzG+u6G996Kv3nrBp45\/9xEHj65PyuuZozQGRMrkwUZwLyJAYBJZCRWNyfp45CToNIgHwsDEnrzjeDu6++55YElo1VDhiKP8wc31P7zyf09uxGcOiEicomZUGuGY+swP\/umcPQkMfZS0BatvQJCVw14qqyPqw6zbzB+iEXPoppBUmIGBIhuisiIXgCXhrlMMcRNO7CXwErZL5OCwJ8tzTDQPmoQR3IF\/NzBFQTIpQSTSxHXGwGrMex1w40adu7yAWY3fSnsjR\/MUhZQHxrbRv2vNPXTirCn1z67NWV41TERu+Oizq55+YdW4kVUzp4yeN+eQuXOaD53ZPK4uw1BNdQd10ABFg2gPX08hBt8iNWI5Bw8sk6NhmuW1Fas2r1rfbrl1+NY433PBJ8+a0pghMCeEU9wcW7+578nWDuQPRwyfiwQhmlaYtKknOuGdM2ZOayKmka8yCqy+cffgG8v7oIzC3NgoW3aj5AEFNA+IYbgJOzIoEgmBDV0FUiYz6YlquUNT5BAQLLEixRkRgjvv6xj8Kv3QGdpGc80ju9ciP0jWJ9j5Yh6JTQHAAmTUVJe9+KL3X\/DNW\/sL1eqIwDqdKBSjdW35dds23\/fIxkSVPaW56vijJp\/7wZPnzWyRtgc4CnYqIV51DCn4KBIy8EVKQ3yr2wxXj9du3JnL5YibWYuobqg5Yk4z76MwwIcSEi5ceeNvXl3RpwAAQqAmIgiGuUl63P21S0\/73qXnaDwaMxkG4Snzw6UvBCOgNFRe4QRr6lhD1F4KBQhSXFHjBhhijWHJIXpWsqmWCvf1Ov2RSoQ8IC9CrmilulATlGiIqn6W3jNlJzNEXqeF5\/nJpHmMpBgcUxfhSKofPWNeV7736h\/\/btv2HGUy2WWXluybgXxABPraytyKFS\/f8dtlf3\/+iV+94PQ6L2mMC5waDtEVdc8\/PkwLMxp+SCWs9o5OS4RoGVZlq7K1NTR1mSLMQ03gOJmstjJMfd7FJOCpNBMwII5fjJxcd89uMzlLAzWX6ouDXgIiWJlV+kWezBXI8UMy1TTjGg3nl0ij+sgBU2ZoGApvPNGMPEPpKkPAyIkYHxwDzEk4Im564L6A4wd+3XTG+PSfusbRSUU9BKyqmJW\/8CMnHPOOQ395x2OLHl+xfPP2Qlhkeod4WZeGpNDsWkz29OeuvfH3uf7e73\/lY1gDihBmTWgPi6UhAZCBWn2rq0QKpaVfMRPm4zBPA65jirhxCMfYtgGLwAhrIFUjBVDiwMxgYqiVqqUakBkUAymt7vMTyRUwI8bUGh6MPVBLO4QEDXTX3IQuFkEtZRm4q1Z\/8RCCfDgGG9GatzkbarqpecCh8ZhW\/LbZVxvk+yVKhGLwpham0oDMUZoQ6rBJIw77xgd3XDiwbHXrQ0+\/tGTpyrUb29Zv7Q7R4gSTxmHzXVSs\/fkdD5992ruPP7wZDKUTplMJzbhmOjIqUuJe5\/HjRpitCVjlePeu7s2bdx4xbbR5TUagGNqNte7YBvlWNkYykwpR3NWLr0vGVhbnM25UPT0Ygy6UB3vTsFg2wRYZu0430h\/J0Ex3tAloYY8LjIeUGy0yjV6XBS+94RC7ZASyIEwKrHUJRyXfmCNUXr1LW\/Ue4IYs4BRJH+mokC\/0duk51+KEWQk74UAQFIBJ86cAz6Pq06PnTTxl3kQortnc\/tiSTTff8cizL621kml5Ic\/vzdkPLX5e4CJEB6kiL40KupDUlNgjXN2zWiY0NtZmdvZqlTk30P\/7Bx8\/\/cRZeg14KIu57o3f+dLAACUdph8U3Ktu\/N0Df1qmLDwOMhln9oyDaEsPJTGaoQkEM0rZLrDTLymRwn65Lz2nodwXDMGOgOamRMSn9LpeeuMhcUi9ERzfRk7i05DFOMjo8HbJtmv22Y0jipja3IDFCNp2aEAyPuqLmG9nb+Hb3\/n5yk0Dtkt+RhDS\/5UvnHnKu2aqfuUG0yc0TJ8w8qRjDz3vohuffHEt1YBIwby\/fccOqBhKGrJIgbAI6x7HoFmTyOIZk8YdPmPMn59eH3o1dqb2rgefOfWUo885ebbGzL6TOJjRQsIiu8aLi17e+OILy7VUDAZh7+RJde86YrqJc+W3SvgaBVVHUHcBsNQZjxUOq96PluoeLhfPpQKnKj7c4A1m7CC\/5vcbTnoNh8ZuIXL6CGteIo05B9EB7XdRUCTw6QQZ2lF9Y85TsS9lR4ntWyg\/yo7pKeFb5CX85Rtan3h2k5WoIduy8gPjpy45bv5MjyxbRl0WanydP3F83eLnqMVlNT9ip75GTolDYqQn05lImn97vqTOcVSbdD\/2gWMfemZtRHZrJXYX4q9cuSCX+9Q5p78jTTl08PAJGx54+JWvX\/WL1g4SfCoSBafQ9fEzP9BQxSjI3Yeg1bd6EtA2Zc4gkcBYM1bgTqkV3ypISFz4fUxgiStJQ7f56PW3PLBN0m3sZcKlMsVhZqdlZUsTwWgxsUaIuFynujbTOCLcsS3pxv2rV2IDBK7Mhyp5dUlv9uyWJ17ayGqW8tlk9d0LX5g3d\/JZJ85tqBHpXb3BwieWLVr8kp2qwmwxIObvwQdNNczRnZnfGqisgTTDIC7hahDoCUKyP\/Seeb\/6\/dOLnlrvJKoir3Zrx+7PffNnd9730FmnnTCpuQFNWbOxa+GDjy9+amV7n2enG4jrwoHOow+f+OmPHCcqsptCSdZtaFLTEUrWF1nX\/\/zee0bVRmEicDFvBNkKfQvF\/MFTJ5z\/4ROrJCehqUll9GDI25oR7HuiK230oJBju\/2Be8PP\/\/CHEVRC\/CJKYBdCtmRBqtA9+6AJnzrnNM2FZG3tyEmTrFdfSsZx24b1ozs7kmOahQa94RGc+NyzTr3r90t2Ulh2i7br9\/bm\/\/FbC26dvnjsOCpk0dbWgeWvteaCFHOFnCqk2jK67th3zTZTf9AKGN6FrPSaB2TvQoQbQMGsjOsyye9+6xPnX3T12k0748SI2K8dsFIPPLL+gUfW4A7cmMAddmTQ7UxaUBb6xo+u\/s63zhtVQ0IBHQI\/\/pPSmS7VoUZqpwqRddf9SwE+irKmKM0uAXFg5btPPHrWJz54gtw3AWfJxut1bJ\/4pDdRMbjrexB9VIdaHl0SBvp3P\/CcWyzGcSaiUkiVSju17bhvxxknHfbxc06je8vOVldNnxao\/uM5O3t6l7woAIwCUmqht3fOGvulz7zfcikRUTx2fCebt6qee3XD3Q8uu\/uB1555aXt\/SNiL6FhXCJJ24ZLzT5rcVFUEA+YLdgOOJW\/khD1Ct2GakpcUTHgwLEVs1pypo2+4+ovTmmvjgU6tf8RpK9lIXkNJMPbTTjLlJGt0zSQe2NU8yr\/+ys8cd\/g0rC3RJhQgTdLCFU7PgCzqlNzsqOj6WarDbspz\/JTjZR0\/62Likg36KSMqeehN1cakT1xjgjVNFZ8BDN80i4qKDVgXw1IjATYT43Wq0E07lXQSLgVMChYs6VqJRpvSHfJBgRhwzcxZA9kaVgfcvlznY0+Sl+FEyby1DY46VhBd+ncnX37xh+pTvWGhYyBkocMLUwmrKqOqeYIaXZ76Ydy\/c1xN6l++8dkLzj1JqREsDIodjimr5uP8bivosYtd1JYGH2lYYCCNc+LCyXMm\/mbB1z92+mEZq93Kt6ssSR7j+EGUCKMUQZmV70xE2993\/ORf33TpWccfShBNZZMKmaaBYEKQsE1JJ6+KMx92vUbMVv7cIAijQhQVdUlBUxkYf4rBwhqiNiLmRVbv8jk8tk3pK+hxQ1U2zCH+pbgoSkDEHWjjrIqQUIMUNdMivfDTCvqoMSpWVxaK8VG8FVTNmtnf0pJeubTK84tPP1vctsEdP1UbbzWLpRhpx77sM6e\/Z96sf7\/rz08sXbe9o9jVA+esqIXptNPYkBwzInPC0e\/88FknHjZtDOoKO+ieUJMWWTUp75Cpjf38xQq2vOiOrK3PJBPmuQFXqoYssFfFGc0jbrnmoj8\/vezOexc9+\/Kazq549+4cC+7pKndErT\/7oKkfP\/OEU489vC5JqKlkAfsJl9Is0xFd4osnjqnu68vFqFLJHcpSAvpeZ7xZwR43sppSu16WBK3G6szB4+ucRBoHhfqMbkiUBi8++VANc+zJY7IBmSH+X1IcJKhn0OfEYl\/oh\/3OuJFZ9N8uEBpou3yw+odX5xb8pD72ekO\/8YpvjDzvM3lLJSzlO6YgSnQAzvTSuruwbkv7ttbOvt5eBlZbkxk3ZuSk5lF1CYwcMs6zZsC0lhUzDg7LgIPtohRMbYAJgZOLo6qEA+8mLIJH3hM+UOdUCoqQW3tn7\/otbd2dvfyJUH19pmXsqJaR2VLEpOgATGXmTWwp3TfDZUSR1d6Vo1CPtjG3EYBkLMb3PqvExQLi6FrgpVe0KO7KxV19rFJqEBitGt+pU3mZp8rkI6eQD93OHmy3eNyXIH2XbAfPWDO0Em5YV5tkKsAkrs\/tee6JVRd9dmxnRzH0et9xxKybby7UN2HqvchlvatgO0QxpN0yJEZVNJh9D6aH5pjMlky5WJA8ibW0EsTgAJyX4X2INSNvnggnM6UNQUNeN40u7tMHJTLNYkhxImVUXUh7Xgeh0xOkqzfN5T7vvuEH\/Kj4Z+Ux1sbowy\/6WHpPAabRaZwtxM2lgxOBNXP9Blqv\/yRHx9lJ5PgV5WVkLFEc1cw6LHnUMX1aaHej5cva\/rhQbpgesbxaLMGhGqiMbZMJ4pGKBEMfwQY1+iaAk3LCSGmIFJ\/pSgvBFiUfciTtpCHpNJDA1yAOwlSy4T5BmwFsD3H6M2YGkuCBa6QTmvm2CGpoSE2zVGNSv7rJx1gmc1NtuNhzNm+Y+YI7ZTIINdM\/wqMAXdB2DiNBzTUOncRgqYt9SL1OnyvkpdExNEX7\/Mc3MYCVzEz46DmdtQ2R5yWC3Kbbb482t+Jf6RuGTXVPySfkkYtsO0t5LqsKSiR0qzQ8upVjwe1SLuEClM0IxZ1PddUoKUR4tNehYYkAC37SIxExTzmLR1SBn3qCm2Xy8DLcixfKL\/K8TAkcyFCBRhTMh4FJSuJNwO99NvAgyljaiuzpgzJQCRaw5o7kycANw2ptmDBsvYngEGVeZ2GX8pjki8pSiKe0amTOYsw752dOPqU7zJEXOa++tvn2X1m5AINTxDzyZ2PIQ\/sHgJhoReOmb7G81wea3GSRfIgtcNiDIxzSKa+geEb3DGbAxgM+OvRlpuGguLjBLYKBAm2HACshzH1uKYwzUJqXuScKOgxXfDNI3X3zudR0zxt6z3RghiB84bMk1RJ2JZtm3nojwT301ZsQGDwYKvJhFyM+xraSqamf\/GQ8qsEuxk1WvOOuX3Q9\/gCrp+oX1dZGGDZDIA\/5NXpW\/wZgI18NAC0FSxyJ0dMSs2LaDE6KD4twbM6GAzEiV1ASr24ZNdReSiN9c2I\/hQkt1BfCwYtJk7Ed1N5B2ignrvd1i8lDLXkYRCUDowdvOJsuS7KnL3ZMCIcSjgYd8TGkF4bLkppoJG8kOESZ8WpCkfhicLl2r7jiCtrKnpJcEMc0NTHRuhY\/l3DzVr6nfc2GhrlzkyOalEVhUFXUwj2pvqut0NLakqiEj4SksyICjV598Y9fRqBmkKYZf+Mi1pXmwIPDWrEsUwlfLUfh5+Wo3HDDptU\/+mGhrTV78EHGmkPQ0BSnJZpDV4MdmQ6H+jWCKb1ieClxNHQWBVqULKmhVpobJV\/II0GoRoM96rr0ru7sQ3DPT+7yn2kpy4CvIdgwEQ3jppXjj\/rQR+xTjusiGbJT7qsr1l\/93XjbRggCKEaFlRrWk3VZApYLXYM5yY7yVBNuqXtzDPJjrpm\/ao2yJ8zOitL8ERnJm2cKXAksqG9TAYDozqXPvHLbra\/9YkFhZ3upn8FzibahxstvOrjH2Iz\/edOz12\/oTQOdgVEj0o09p726Ms94Yt5Qg\/\/qKAkCzf2nK9SHkRcqzyDjqkT24IltzyxLtHY0uGHfhm07d+wYecShbrYWpaKJyTtKbJUEIjU0sYRcvebSICN\/gQegVBxBsxIDMigC1tT+KHuxgMID7jFVHC+TslOJ5uNOrJ891\/IVtw+vg\/KOogUOAJHmYqsc4ptibuGj67799eyu7bZbtZNS46nHzPjGt5zxM\/BPinHMWpTcmXkVNeMmQGmng\/AzM0yP3niAPG\/RBu00Fs30DahWsciiQcT+DEjTYiAusOOSeZWn6qkPZny4He4Vl18hn2AcFlqJFrH6QIUiNWlSoq5+y8vLolxvgxMNrF6749VlNS3j\/bHNUlqZRrU2Gq9pQxKHadCCvtRyjwd\/Ex56jQ\/WueQtiOMGceMvVe3A6XtxWcfiRxIj6rxsPaywl1\/yULXHyPFN9P6Wb7hXXHa5USIzreG0NAhUz3HTs2YlRzZ1LF1q9+yq4S\/JN7duffppK85VTxznpqtogV1TzYvDgKwqEWor+N4SXJ5iTFn4UvCq6JKXZI2MiXTsju3Pf\/3L22+\/I05nGucfzbIBNXxwZQV0UMNNb8PlxPwlEGd4yi0EjLa8innjvJ2GM8+eevmVucnT+4KQ\/SAjN7dtu+b6ZV\/9x64nHrVz\/XJkglF6qLSL5Vs7EQBIyVr8JQyk3rLKdITa0zu7B\/NsdiF8yYFfJk6M4n84lMjWNIkuFNiBoG2Qw\/IAF5IoJVIoHGYNY4hbofBLBgvkqttbQX7Z8g03XJ979KEMCa6b6i\/2B7U1de8+tenDZ2Tnzg4y7OjyWV8XCd4nrn9rMIiZ6Q0boqIKDXPdbc8\/Rk9NRxwXZKpdNja2bS20taemHuxUZSBY2tdhVHv44Uv4OjiziTqBBq8EoExYAxT6Sw0It21HO1s333Zr6y9vb2jryLJV1Y56CJ\/qG9OHzRl96mmpI+clmyewq5e33hrYvdFBVbVVceuv71r9vW9TlTjkn68e8d7TZYeV4pfsMVUIfmOU+WOAvd8dNtfywXA+yLy5Knl61Nbgq6VxYvqwcVTLFy8ZMefIbf92c9vzL6SDXA3rRt1t+UULNz7xaDx+fPLQQ9nY2zhtpjN+gl1NwZ8VINx9QHGeP9EjlSO2jXu7uhc9TJG6\/pSTwppa\/OjO9asb2\/MUt\/q2rh9BxGGsjCSklAXWaPJfhat\/w1BLc9+KPdSGwyyOUi4hJY5SZGVt2zoevH\/LPXeFK1akC4VsZLF7AHR6WJRKV+WrqsOa6sSIGrd6dCpZw9Jf9TsOaTjrrCCrZbxtt9668UeXe2G67sJLpn7+AjAMN61Yef3NOKzJl3w2NWmaQrK30bE\/cI3mykQqe9cGREUS\/E0KtZtix47dDz65aeGfcq+9VtW1qzoq8scJlHMoh1PFpsaWowTPhuIgbEumZn3\/+9VnfdApDmz49mWdv7m5qpAITv\/QzBuuC720tkJp9YX1r7RM9nCMCd5aG\/YXmht\/gkVWrMSoZZT52Cn2WfojJjd8clrDB87ctfyl3Y8\/tuvpp\/ytW6OuXezoom0Vu1iVVLMjt8hSXZSnHEwFzsuedty2l56Lil7zaSdZSY99rip+OkktBkp+g8bprbkdZk\/2p7mq7GAofdbtBC9\/m6I7Jf2SmhlTjUnEKvTuHli7pmPd2njjJm\/rlnznNqxrUgunYWrevJYLL3Yaxsies5C3s8tmS\/Eo1nQVXeSIZPGXLITSRWkxbJgBuD929wtuyS4oh1KqQBZmImGFUcofSiZZD7htnnPiZr7AsiuwCv8odPkfjGmPE8ppRGTaiCB1YRXV2bmnpQntcCx5Uu6+XY79gWvWSeRitEqjWiKZ6KBRxIuXqos85JaApomSCr4VaAC+0XvuQYblSsDTziSVDfjwTy3BWLZAcZ+Kj1y\/rYzu\/sAtITaU0TJ2VJYSDchoimMtDRxCawgulbp4yvPS\/5ONv86gpO2peKzGFGVINUyJR9FZSQ7mCWKDHnL6\/yZaMBaXsRsdE5TgY1DiolSA1U0hPigGrXSbxgY3HlEek58Sjkqs+dJOaqrIxL1qU6KHvmoemDSs1I26ehsc+9fcwak6CKnAMB\/GLbyGrveCAYS4jZVmtQLDSsXQWNNBIMlludKyg2yH1pVkJWiOAHiyh\/heBIf15f7A\/R8P7C\/B\/z8mOowIlNWBvK3m+H9DqGUF97\/Bz9vqlQq4ZRRnBdwKuGVEoIykK5pbAbeMCJSRdEVzK+CWEYEykq5obgXcMiJQRtIVza2AW0YEyki6orkVcMuIQBlJVzS3Am4ZESgj6YrmVsAtIwJlJF3R3Aq4ZUSgjKQrmltGcP8T5x8arK9vkokAAAAASUVORK5CYII=\" alt=\"\" width=\"19\" height=\"19\">STG LTL<\/span><span class=\"lh-cell lh-cell-date\">09\/15\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">AZ-4419823<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-package\"\/><\/svg>Package<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-ups\"\/><\/svg>UPS&reg; Next Day Air<\/span><span class=\"lh-cell lh-cell-date\">09\/15\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">EB-A8210<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-package\"\/><\/svg>Package<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-dhl\"\/><\/svg>International Standard<\/span><span class=\"lh-cell lh-cell-date\">09\/14\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">SH-60285<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-truck\"\/><\/svg>Freight<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-fedex\"\/><\/svg>Fed Ex freight<\/span><span class=\"lh-cell lh-cell-date\">09\/13\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">SH-60284<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-truck\"\/><\/svg>Freight<\/span><span class=\"lh-cell lh-cell-service\"><img loading=\"lazy\" decoding=\"async\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMwAAACQCAIAAADLDBMpAAAABGdBTUEAALGPC\/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAARGVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAADoAEAAwAAAAEAAQAAoAIABAAAAAEAAADMoAMABAAAAAEAAACQAAAAAOAwnlAAAAHNaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA2LjAuMCI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT4xPC9leGlmOkNvbG9yU3BhY2U+CiAgICAgICAgIDxleGlmOlBpeGVsWERpbWVuc2lvbj4yMzUzPC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjEyMzI8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KrxiKVAAAHI5JREFUeAHtXQecFEXW7zBp886wgbAkQZeccxYE5ASBDzhQhFMQRA4BJShJ8WRPQaKAAnoeCKLgwXGIkZOMxCOugAKukmVhw+zOTuzu79\/T0Dvb0xuZme2Z7f4tS\/Xrqlfdr\/5b9erVq1ckx3GEeqkS8KcEKH8yV3mrEuAloIJMxYHfJaCCzO8iVitQQaZiwO8SUEHmdxGrFaggUzHgdwmoIPO7iNUKVJCpGPC7BFSQ+V3EagUqyFQM+F0CKsj8LmK1AhVkKgb8LgEVZH4XsVqBCjIVA36XgAoyv4tYrUAFmYoBv0tABZnfRaxWoIJMxYDfJaDxew1qBW4JwMmdddqRJEn8YZfM5R1ZaW0IyE8FWYAakSQIa9rPmUum0SzLUSRuBaAJCfzGBYpIJ9x7L2JfnBvRtGOAXtFv1ZDqRhK\/ydaLMcfd+XCebcMiSh\/m9UyO4HKxtZITFm3RmRLlHgcNTQVZQJuKcdhuzx7JHt9D6g0lqZiz2egeAxJmfkBRdEnyKzOPqvgHtF1oncE06R0uoRrBuEpSMWkwuHZvy\/r3RyXJrNg8KsgC3TT6ag9F\/\/UtBlpZyXa8UhqdZe0CS+qRQL+o7+pTQeY7WZaYU3TnvmGDxrJ2W4lKYKS0WrKWTndm3SlRfuVlUkFWPm1iHDmNat6Jc\/BGjeIvrY749VzGqjc4ji0+s\/JyqCArnzahDeGmyfM5UwKB\/szlLPjjIFgpmEh9mGPnlqwv15XP6z5YrUqZXbpcrpMnT8KeQvImpKC\/8CEURcXGxlavXl2v1xf2Pea923M\/X0FqClpcSZK98RtpziTogjNKlmXDI6NfWahJrJ6PQt6wxpH6cEPtetDy3Ia2wmorN7pSQMYwzKRJk1auXFlukvB1xfhrCQsLq127dp8+fUaPHl2vXj3vGgAKjnVJ\/6pIynJ8T9YboyjMQKmCQw3LMuAiMWcA0RqNafbqyHY9vatQAkUpIIMscnJyevTocezYMSXIxbfvEBMTM2XKlFdffVWn05WQc8aGJXlr36G03r0gJ7Moxbi4hKS4xVv0iTVKyD+Q2RQEMnz22bNnu3XrlpGREUgRBKyu\/v37r127FmNoSWpEn3X7lYFs6jFCW3AwLaQwZ7fS7R+Pn\/sRLYPLQsoEilywNw5UrYXV07hx48WLFxf2NNjp\/\/nPf55++um8vLySfIjtlzPMtctStazwkpgZuA59m7VJifoGPXfu3MLfvByeNGvW7MaNGydOnCiHuv1f5aVLl8xm85\/+9Keiq3LlZN792xjy5u+EphQeDCRNO1KP0cnNdFVrFc0\/wE+VNVwKH5+dnf3oo49ishlgWQSmOsw60aX17du3sOqgc6UvfNn59QbMGQvLUyjd5eSq1IrHmnp81ULzBPyBsoZL4fOhJn\/00Uf4HXBpBKJCGCJmzZpVxKBp\/vpTx7efY\/gry9vAGnLtUubK2WzJ1kbLUkXpyyhuuBQ+oUqVKiaTaceOHaX\/oiAo8ccff9SvX79Jkybe72q9eCZr\/ksU4yR430aPC8Z+h41zuThMJPGDhPDjmXZTUMZ18Qyj1Yc1aa8Qo2MphnyPLw5EcuzYsTCe3bx5UyGSKtU3451tNhs0y127duErvMt++OGHmARg6PR85LJkZy6dzpthdQUtF0CYRqsfMIqKjIF+41lEPg2\/SEM4Y8vThEfKZwgsVYk6WWAl4N\/avv\/++zFjxly5ckVSDZYB\/ve\/\/zVs2FCkAzvpy6Y7tn1MGaSqGGu3GkZOjXv2VTFzcCUK\/CUF16sHxdv26tVr69atGPolb2u329HJeRLN32927Fjv7TTLG8Da9DA+Pckzc3ClVZD5vb1atmw5c+ZM72oOHjwoEm1p53JWz6Wgh0mWbjFbTKxhnPg2vB3FzEGXUEEWiCZ77rnnqlaV2hTOnz8PtwBUz+Tl8qpY1l2p6ZVjWYqOnvCWoWrtQLyl3+pQQeY30XowxnAJy58HgU9ijpltNhMMk7Fqruv4Xt6bAvNH8cduY\/Ms+iHjojoWY7mVsFXgrXJnlyURFscyuWiePLPUMaEkhR8kj8tJJiRFNGojdaAonGeLFi0+\/fRTz+e5ubk5ubmRtiwmN1vfe5h0oIS\/hSnR+MwrJa\/Ck7mi0sENMpKinDfScpZMo2CElGgzfhMzCXOqRhubsr5UzV+5cmXJG2GstOXl6evVq\/z6h5JHIXYb3CCDj56x\/yjnpbOurz4lDWUykZe2PTkCRtHI0TOjW3cvVVEgs1T5Qylz0OtkMHuaxr5OJDfl3EEA\/N02nMOq6dI3ZvDY0lZ07do1SRGtVguvRgkxJG+DHmRoFW20KXbyfDYimnD7jfqxnVwOonpd04R5dOlDVBw9elTyYlFRUdHR0RJiSN6GAsjQMBH1WkaOmsnyFoESrLqUrSVhUNAaoie+rYuTGiOK5QfnpX379kmywaihgkwiE6Xfxjz5F23PwdjX76cXZR12w\/BJUS27lYH\/ihUr7t69KymINSVaslVEkiNUbkOkJ0NzwFxuGjeXqNOAcDp83jpY29G0f9w09K9l4Pztt98uXbrUu2Dnzp29iSFJCbUFcmznz3j1KdICy1kp\/34A0sK8411ONiEpfvFWPfaileaC09jGjRunTZuWlZUlKRcREXH69Ok6depI6CF5G+wmDEmjcBGN2nLz1rpuXoUvsuRZUbck6crJtm1YQlpzvBy5WIbWxE58W5tYfcGCBWfOnJH458iyxZzXarWmpqZi7Ug2Q9euXSsIwvD5IQYy3j4a2bwL0Vy2ZYsi3lk1l8jJJBAQoODF2u1hf5ka1fYxkNu1a4elbln\/sIKFir8bN25c8ZlCJUcpx5RQ+WzJd2Tv\/MK2ZbV0JzdmqnYb3TbfzaZLly7Lly+XlC3DLfg8\/vjjZSgYpEVCTScrQzNY087fnTqYQjdGF+zXEegwrnLcoi2eThDYrT1ixAjJKmSpKoW7IjzJOnToUKpSQZ25ovdkLqvgZnNHijB4PFNU9F\/neSIMLQ1la9myZQ0aNChzq8+ZM6dCIQyCqtAgg90285\/vcGcOkxKfekSqttsMg1+I6iTjZlOpUiV46GN6WAacISjGa6+9VoaCQV2kQoMsZ\/c2+7aPvcO38qpYiy7GEVMK87NAVzRv3rzSNvyECRM++OCDCmKA9RROxQWZ7epF8wev898v8RHCJrO4KsbJ7yCEmKekJOmJEycOGTJEQizsFtaKdevWYdKARfHC8oQwvYIq\/tgudnvWM+ypA6TEdx6qGMtEzfwgplv\/Ylsdrq2w2l+8eFE2Jzws4EOWnJyMOCuAIwZZ2WwVgVhwPlURvtj9jZmfLGRO7PPefIblI\/2fx0eXAGFgk5iYCOUMxghssfSWXHx8\/M6dOyuOxdVbAiKlIg6X5gNf2baskdl85rCTTToYn51emComSk1MwHD\/5ptvireeCey1xEQSJg9PYsVMVziQ2a+nmVfMpuCnKlXFGM4YZ3x5gSasdLuuEd0OA6Isej777DOfGG9lmQcRsWLpZPyBIHP+wh7bLZ1RQhVjmKjpy2J6llSX92xjuIt16tQpLS3NkyikYen473\/\/i\/Uo70cVh1KxerLMT5eyR3dJEcZbxay6fiOjy4QwYAXuh6tXr5YNQGyxWJ5\/\/vlQjR1Zwr+TCgSynMM7bZtWkt6xqB12qmFr0+iZJVfFvIXbs2dPBITypoPy008\/TZ48WfZRBSFWlOHSfutq+pSB1O3rhCSeOcNgc4Dp3c3hdRs\/YJM7nU4oZ998840sn1WrVr3wwguyj0KeWCF6Mpxmmrl8hjs6psQWylvFIsfOeXCEASgwtAJJCNwvC5rp06cjjI\/so5AnVgiQZW5a6Tr0nXfsQtZm1fV5OqbPU75q5ho1amDhSNasj1CxUM4QqdRXdQURn9AHWe7xPdaNyyivJXDCaSeTmxvHziH543J9dj3xxBPotGTZnTp1aurUqbKPQpsY4jqZPf3GnSn\/JzNQsgxriDDN3xRer\/ROtMUhArHHALUffvhBNuPHH3+MID+yj0KVGMo9Gcs4M1fMIhANX6Lsw2bhckWMnukPhAEosGWsWbMGYW9lQQPjLTYKyD4KVWIogyzri9Wu\/V95q2KcPU\/b88+x\/Ub6r1EfeughnBMl69WTmZkJ5Qxn\/PivdqVxVmj06wcXk+XUwZwl0ymoWwWXjzjsyqzdsNKslRpDWbwOS\/5iiG+N4FA\/\/vijdxGsEGAGgCHV+1FIUkJTJ3Nk\/JE+ZRB57RKhKbj7CLF1dAbj2xsRWiwAzYldcb17996\/f793XXDj3rBhAwJgez8KPUoIDpcwfWW+\/zrx+89ShPGqmDPi2emBQRiwApcynHqRkJDgjRt4Z+DoxcJ2ZXrnD2pKCIIs+9\/\/cO7+t4wqZrNqHh0QM3B0IBvskUceee+992T3A9+5cwfR14s4miSQ7+nXukJNJ7OkHjUvepmCE1dBVYxA1Kcaj8TNXqUJj\/KrQL2ZN2rUCAvkR44c8X509epVYUj1fhRKlJDSyZxZd9KnDSbSLkg3gvMBOHWxKZ9ENutULo0HX4zHHnvs8OHD3rWjk9u0adPgwYO9H4UMJXSGS5ZjM1a9yV3+SYowqGJOR\/jIV8oLYcAKvMqgnMm6+QP\/2MVU2EaB0MBZ6IAs+8t1zp2bSZ00QCYf9alz39hB5ewBgWhkS5YskQUNNqTgICnZjQKy+YOOGCI6Wd6FE+YFkymE85REjHI5iWoPxc1Zo4mKKfe2adq06a1bt2R9MX777TfEccGQWu4v6Y8XCAWdzJmTeXvaEPLSWUISYAw+1aTG+NbayFbd\/CG7MvCEL0b37t1lcabRaLZs2fLkk0+Wga3CiwT9cIlzbjPWvMX9fFqKMKhiDkf48InKQRiggCCxUM5kz7pHWP\/x48ejS1M4YsrwekEPsmycc\/vNRkovPd\/KHYCzt7FMATjLIMeSF8Eh6wsXLpTNf\/369ZEjR4besmZwb+5lLGbLZ8tp6GFSqxh\/FLdx4t8LjdAp28iBIiLsCjaXA0xYXJLUif4MljNEX5fQg\/o2uEGGg5JJLHhLmgo+1bQ25qW\/lzbEayAbsuKsjkOqQT9cIuq1BBx8AM6h46Pa9ZTQ1dvykkDwg6yg5HAsDd2me+zwCr0FraBIyv8utEDmcnHxScZJ7wT1ObflDwpfv0EIgUwIwDkhRRKA09cSU\/mVWgKhAzI+AOegsbIBOEstFbWATyUQIiDDqcp0i87GkVOlswCfCktlVjYJhATIEICzUhXjpPlFB+Asm4DUUg8ugeAHGccxBBk1\/k1DjYcfXBwqB39IIOhBxqti\/UdFdxvgD+moPH0igSAHmdNBIQDnqNdUVcwnaPATk+B29XHl5bhyzYaEan6SjsrWJxIIbpD5RAQqE39LIMiHS3+LR+XvCwmoIPOFFFUeRUpABVmR4lEf+kICwe1P5gsJENjBceHCBUR8BTfsWissHqdP6qqYTFTFn0AspyZNmty8eRPxKRA3AHFfKyYU\/PfVak\/GyxZOz8LJ4j45X9x\/rRWknFWdjG840ddeTARpcyrztVWQKbNdQuqtlDJcQu\/Gbn1oRbhwiB\/GL8SOQ6TCli1bIjSm0MFcunQJ0VaxnR\/xmFq0aCEbjwmRmA4dOpSenl63bt1WrVrdvXsXwU7QYgaDwTNOGHYKgT+CNzVu3Bg5Jaxclmwm18zvTyEpbXxVx7XLjkupdGSMvkEL1mHnHHYwJLU6nTEe\/zMOuysrHQmC4+hoIx0WjrgvnN0OAqnVa4zxjl\/POa9epGLiDA1b0fe3H+NoAWemUIrVmBI5l8Oeepy15urqNNBXe8gbYljbsF844bhzSxsbZ2jQShN5b0M8PDUdGbcJ+KFwBB0RCT8Ua+oxJuO2tlayvtYjFKWI9lXES0Cm165dwylX2A0GkGEnzy+\/\/HLy5EnQmzdvjqBL2Hg9Y8aMzz\/\/XNiTiFisOM303XffBYw82wM7s3Hqh7A\/Gxuyn3nmmd9\/\/\/348ePIg\/xfffWVkHnv3r2IcZKamopbnU7Xr18\/xKv25GP+emPO2gX8Xs6wCF2b7s4927nsDI5hIibPd5w97Dq+B5mpxu2qpmzAmqkj7Vz6jOGAGMK6xE5bGtOl3933ZjiP7SGxU69msrZuQ\/t3m0lrLkdp6EZtTFMWGZLqoLjt1\/PpM56mAEyW1T82mLlwkr1wEjy4yNjwoeNNT71EkvmDTPbe7bmfLOSuXOLBRFFkUp3oMbOjO\/YBH4A+\/fXnuOuXeZA1aEWRpAvHk7kcbEJS4sqv9XFVkafcL6WADMFtgCQh6AhCKYly6du3r8PhGDBgwIEDB0Qi1PM9e\/bgNNMdO3aIB7D9+uuvyAawCtnQF65du1Ysgk5RSANzAwcOxIxSuAVzBAcQswkJ0uHQ5GaTjJPA2uiO9RRFA4ysPiy8RWfm8E6O7+QIysp3kLhIbMCzZANtJA4GQOgN4M+Wh+IETg74+ZTzp2M0Ym\/z5wNz3Mn9GQsmJS7YRBsiSJZBKfdOK9K1fS3JsZRwcrQtN+\/DFE2lxJjew9zsicwd63Lfm0GzLPpOQuNur2uXs+eNI+d+FNW2J+qlrLmExUzQGu7EXogR1WGnoL5hK12lygKHcv+d\/+dS\/q8iiZVCENjjip4Jp5Z6Ikx8TwyFeCqiZ\/bs2SLCxDxiQhgQASkE0RQRJj6VJjBQ8huG+R8SEEHvarfpWvfQ10xGd3X\/kYfnhzsnv79QOEJVKO7ecswXRxgYnk6SYRFs6lHLj9\/dq04ohSpomufJMDydomkNZdmy2mXLw531lzOW1W\/RADWg43CwLMc57YiNRTvt5jVvYW\/z\/ZdxvypFk7SG7+00mognRnj2hfdqLKf\/FAQyTwkAXthjPWjQIIyMnoYrhMiPicmPzwMVTeiHMLxu27ZN5IBssvEmdu\/e7RmOOjw8vNi92ohAyyYmMbHxEX0wuhHoJMRavBIc4e7J8un8NmOaS6qDzcYYCkGHWdJx6mB+BncKPFmoZQnVOJebOa1lr6e5rvOnZ5q3rCZzs4AkjqYNz003LdqiH\/YSMA+ccWnncw\/tLBCMDa+q03PxVakGrcOatJfUUo63SgQZbO4HDx48e\/bsggULtm\/fLsaGaNOmDZR60CdOnCiKTBhbd+3aBX1OICJCE5CEbC+++KKYTUh8+eWXIqV79+4YOqH5QScTiZIEug1972GV3\/8u4f1vwpq0Q5w9vr+RbFj3LFMAgjysIiekVH7\/+6hXFrIYcwEOimLu3PQsAVySDzeNf+\/LhBVfU20eJYQN8Q47k5Xusphdpw6QwI3Tbhg4ptIzr4Q3ahP3\/Gxt137Y04C+y358F4FhVGAH6OnDY+asSVz9Q6XXltMYWxVzKUUn8xQIwidh0idQgDYhAUUeQeQwD8AtVH4ch3vu3DmkASYMgvgtZEPPt3jxYsw9cbto0SIcNY85KdLC\/FTMhug6OAYV80o8QuDgffv2yRythWbT6iP7jdRExeIHOVlgCGNf4Rffx4gXw1DV6kQ9NojWGqJ7\/F\/etn9wF07gNdg8QTu8jw0E5O4xUB\/Pu8RFPfls1pFd\/N89dCub1XXjNy7rLglNX6Nj7t7K\/GQRYmHhIWfOxKiKBHM9DcfB3gO9y6Fp2iGydXfwFeeeyKOES4kgS0xMFEWD1R4hjdNxsfgjpDElbN++vQCyrKws6Fji0biwU8DqIWRDhHN0fgLIQAECRG0McQ8FhIFeq1at5OTko0ePCqU8f5M6Ax0R7UkBXAveFn7HcVREJImB0l2Gioh2cSyvJzkdPBIFNgh8BdJ9ewQVHklAPyNA5XUvFmACrCkdQjEgiKSTYXjNDj8aLa\/q4VFeLq+iuS9MTMkYU4lfTigUoN9KBJlnfyCm0ZN5niIDnIkSQh785Qu3kmySUwFFbpKjnCW3Imd3wqNzgnqu4buQwi7S3cF4Ps1vdbGT8+4LxUdiAtjjlfz8qgFFDgOkmzW+loCtDvofEkCteOVnF0mKSCgRZJ6CEXs1dGlXrlxBlyM8Fc\/AguYOHT8yMlKgwwyLbA0aNMAtGkkcH3GLoQqavpANgYAxPgpzCJhOYP4Q6EX\/RksjJu29tr8Pa+AbFH44xr+we\/zv8ZFv9XzgFVUdOkJ0bIA1LqCtfktYekn0cXxPpuHR7LCTterB3ss\/dWdy\/1biL4+\/AyW+HiGOfdDrMQ8QFrCh7Ith8QE7WPMffvhh4fVhaUtJSREmAevWrTt9+rRAF5AhDpEINzdv3jwsM4C+bNky3Jbk64EOKsbIdyQ0zdxIc965gVK2n47xhwQAZLA9RJuK5yPgpph8mIYSmio1CQzWALHDbujSt\/K89Ykp6yunrI9\/85+xk+cnpKyPGzML1d67xMR9gnL+V3pP1qdPn5kzZwpGWpwUiXNiTCYTjpKErVUQIgywSHTp0gX9iICkjRs3wpoPzzBY1yReFb169cJToSDCHcKii2HX06hRbMNoqtd1IBItZSAy0+\/8bYymZrLzwDcUpnKYSoZF0IlJxXIQdPZis3EkoTXG04804Y7vhRnW+tkKc2JSeIuurMWc9fly54VTifM3Idoy+k\/57rLYCgKYQekgq1evHg5SwFlXgkxgwvAUTlJS0lNPPQVK69at27ZtK57GIA6mnpmRxry1Zs2aWGsS6MKKkyRP0beGtj0tm94HpHiz5\/kTztRjJLRDKEx2m6ZJB13lGkUXx9AG0yvf6RQNDd4YzCt\/kf1HZZ3YR+MPKDfTnPKiGfuyrHlkJr9YmbHqjfiX3703tSym1nJ+rPThEuLB8AdkeMsJkkdvJCx7Q8HH8CdR872LGI1GcPOme1E8IVBgHAqr31zf+88s1pSQBbM8rG9C9YY11RAWNXwyBeQVe+VPDgpwvl9OqJrkQQyQte9teHIUC+s\/rw8S1K0rlDkDHRtKOi6excJlPsjQ9Sn1UgrIMNIJYyIEJQ6FgtBwevzWrVtFy5lAhKELp5YOHTpUFGyPHj1WrFghzgBAh\/ovohO2NCHn8OHDYWaDGicWxNlH4CbcCk7YWAtH5GysIPGLSB5TPOTB8GQa+7qm11DG5eRseQh\/zFrzmMjY6MnvRjTtIDDBWXRofv4Hee4XzyfC9IALmh2MFKjC4RCsXzwNRKFe+HqwfDb8IZnGvWEY\/jJD62A5g2ignzF2G9e4Hc6JojEzwLyDZwJWqO6eCsHzV9KlFPdrLEHCcAoVCq0CI5YwPfQUFOxhX3zxBYZLeExAzR8yZAiyeWYQ0jhM\/l\/\/+hfOZMCZpiNGjLh8+bKwoIkOr2vXrmJ+WMU2b96MqSjG2WHDhsHuj8kmqoZbEaYa1iu\/ONMuwArKUXR4i06aMGmYYKAh99ge+8n9XF4OXbV2eMfHBd8K8EdHZDl7mMu47TaAxYY364hlU0wKLWeOsFm3ARsq2hjRrKPLnGk9fYh3D4IXRnIzvXucdWSl284eQY\/EE+u31HtsWrZePJv347dYayIN4fqm7SM79hGiy8A+bDm5n8izgBGdUC2i\/j0bofilSkgoBWRKkMWDvQPQxQ9Y9\/6T8ipA5k2w92xe0nwhea+CLCSbVVkfpRSdTFlSUd\/GpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CSggkxOKirNpxJQQeZTcarM5CTw\/6QcRPhDrCsEAAAAAElFTkSuQmCC\" alt=\"\" width=\"29\" height=\"20\">Roadrunner Transport<\/span><span class=\"lh-cell lh-cell-date\">09\/12\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">EB-A8209<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-package\"\/><\/svg>Package<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-fedex\"\/><\/svg>FedEx Express Saver<\/span><span class=\"lh-cell lh-cell-date\">09\/12\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">SH-60283<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-package\"\/><\/svg>Package<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-usps\"\/><\/svg>USPS Parcel Select Ground<\/span><span class=\"lh-cell lh-cell-date\">09\/12\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">AZ-4419822<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-package\"\/><\/svg>Package<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-usps\"\/><\/svg>USPS Priority Mail<\/span><span class=\"lh-cell lh-cell-date\">09\/10\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n      <div class=\"lh-row\"><span class=\"lh-cell lh-cell-order\">AZ-4419821<\/span><span class=\"lh-cell lh-cell-mode\"><svg><use href=\"#lh-ic-package\"\/><\/svg>Package<\/span><span class=\"lh-cell lh-cell-service\"><svg><use href=\"#lh-ic-ups\"\/><\/svg>UPS&reg; Ground<\/span><span class=\"lh-cell lh-cell-date\">09\/10\/2026<\/span><span class=\"lh-cell lh-cell-status\">Awaiting Shipment<\/span><\/div>\n    <\/div>\n    <div class=\"lh-fade\"><\/div>\n  <\/div>\n\n  <button class=\"lh-sync\" type=\"button\" tabindex=\"-1\" aria-hidden=\"true\">\n    <span>Sync Inventory<\/span>\n    <svg class=\"lh-spin\"><use href=\"#lh-ic-autorenew\"\/><\/svg>\n  <\/button>\n\n  <div class=\"lh-shadow\"><\/div>\n\n  <div class=\"lh-card lh-card--freight\">\n    <div class=\"lh-tabs\"><div class=\"lh-tab\">Package<\/div><div class=\"lh-tab active\">Freight<\/div><\/div>\n    <div class=\"lh-card-title\">Freight booking summary<\/div>\n    <div class=\"lh-steps\">\n      <div class=\"lh-step\"><svg><use href=\"#lh-ic-check\"\/><\/svg><span class=\"lh-step-title\">Ship From<\/span><\/div>\n      <div class=\"lh-step\"><svg><use href=\"#lh-ic-check\"\/><\/svg><span class=\"lh-step-title\">Ship To<\/span><\/div>\n      <div class=\"lh-step\"><svg><use href=\"#lh-ic-bordercircle\"\/><\/svg>\n        <div><div class=\"lh-step-title\">Handling Units<\/div><div class=\"lh-step-sub\">Unit 1 - Pallet<br>48&times;48&times;48 in &bull; 200 lbs<br>Electronics &bull; 200 lbs &bull; Class 400<\/div><\/div>\n      <\/div>\n    <\/div>\n    <div class=\"lh-arrival\"><span>Estimated Arrival<\/span><span>Fri 09\/28\/26<\/span><\/div>\n  <\/div>\n\n  <div class=\"lh-card lh-card--package\">\n    <div class=\"lh-tabs\"><div class=\"lh-tab active\">Package<\/div><div class=\"lh-tab\">Freight<\/div><\/div>\n    <div class=\"lh-field\"><label>Ship From<\/label><div class=\"lh-select\"><span>Austin Warehouse<\/span><svg><use href=\"#lh-ic-chevron\"\/><\/svg><\/div><\/div>\n    <div class=\"lh-field\">\n      <label>Weight<\/label>\n      <div class=\"lh-weight-row\">\n        <div class=\"lh-stepper\"><span class=\"u\">lbs<\/span><span class=\"v\">200<svg><use href=\"#lh-ic-caret\"\/><\/svg><\/span><\/div>\n        <div class=\"lh-stepper\"><span class=\"u\">oz<\/span><span class=\"v\">0<svg><use href=\"#lh-ic-caret\"\/><\/svg><\/span><\/div>\n        <div class=\"lh-scale\"><span class=\"lbl\"><svg><use href=\"#lh-ic-scale\"\/><\/svg>Scale<\/span><span class=\"chev\"><svg><use href=\"#lh-ic-chevron\"\/><\/svg><\/span><\/div>\n      <\/div>\n    <\/div>\n    <div class=\"lh-field\"><label>Service<\/label><div class=\"lh-select\"><span>UPS Ground<\/span><svg><use href=\"#lh-ic-chevron1\"\/><\/svg><\/div><\/div>\n    <div class=\"lh-field\">\n      <div class=\"lh-pkgtype-label\"><label>Package Type<\/label><span class=\"lh-ghost-plus\">+ Add<\/span><\/div>\n      <div class=\"lh-select\"><span>Select package<\/span><svg><use href=\"#lh-ic-chevron1\"\/><\/svg><\/div>\n    <\/div>\n    <div class=\"lh-price-row\">\n      <span class=\"lh-savings\">81% Savings<\/span>\n    <\/div>\n    <div class=\"lh-arrival\"><span>Estimated Arrival<\/span><span>Wed 09\/23\/26 before 5:00 PM<\/span><\/div>\n  <\/div>\n\n  <div class=\"lh-badges\">\n    <div class=\"lh-badge-row\">\n      <div class=\"lh-badge lh-badge--ups\">\n        <span class=\"lh-logo\"><svg class=\"ups-mark\"><use href=\"#lh-badge-ups\"\/><\/svg><\/span>\n        <span class=\"lh-upto\">UP TO<\/span>\n        <span class=\"lh-pct\"><b>85<\/b><span class=\"lh-pctwrap\"><span class=\"sym\">%<\/span><span class=\"off\">OFF<\/span><\/span><\/span>\n        <span class=\"lh-caption\">DAILY RATES*<\/span>\n      <\/div>\n      <div class=\"lh-badge lh-badge--usps\">\n        <span class=\"lh-logo\"><svg class=\"usps-mark\"><use href=\"#lh-badge-usps\"\/><\/svg><\/span>\n        <span class=\"lh-upto\">UP TO<\/span>\n        <span class=\"lh-pct\"><b>87<\/b><span class=\"lh-pctwrap\"><span class=\"sym\">%<\/span><span class=\"off\">OFF<\/span><\/span><\/span>\n        <span class=\"lh-caption\">RETAIL PRICES*<\/span>\n      <\/div>\n    <\/div>\n    <div class=\"lh-badge-row\">\n      <div class=\"lh-badge lh-badge--fedex\">\n        <span class=\"lh-logo\"><svg class=\"fedex-mark\"><use href=\"#lh-badge-fedex\"\/><\/svg><\/span>\n        <span class=\"lh-upto\">UP TO<\/span>\n        <span class=\"lh-pct\"><b>90<\/b><span class=\"lh-pctwrap\"><span class=\"sym\">%<\/span><span class=\"off\">OFF<\/span><\/span><\/span>\n        <span class=\"lh-caption\">STANDARD LIST RATES&dagger;<\/span>\n      <\/div>\n      <div class=\"lh-badge lh-badge--dhl\">\n        <span class=\"lh-logo\">\n          <svg class=\"dhl-mark\" viewBox=\"0 0 82 22\">\n            <g transform=\"translate(0,7.71)\"><path d=\"M0 1.52762H11.0865L10.481 2.35081H0V1.52762Z\" fill=\"#D40511\"\/><path d=\"M0 4.39375e-05H12.2128L11.6062 0.822106H0V4.39375e-05Z\" fill=\"#D40511\"\/><path d=\"M0 3.05603H9.96089L9.35804 3.87358H0V3.05603Z\" fill=\"#D40511\"\/><\/g>\n            <g transform=\"translate(69.81,7.71)\"><path d=\"M12.1655 2.35107H1.12226L1.7275 1.52842H12.1655V2.35107Z\" fill=\"#D40511\"\/><path d=\"M12.1662 3.87355L0 3.87468L0.602684 3.056H12.1662V3.87355Z\" fill=\"#D40511\"\/><path d=\"M2.85329 1.34199e-05H12.1659V0.822619L2.24747 0.823204L2.85329 1.34199e-05Z\" fill=\"#D40511\"\/><\/g>\n            <g transform=\"translate(10.74,4.44)\"><path d=\"M0.000121642 7.13969L5.2611 0H11.7895C12.5111 0 12.5017 0.273659 12.149 0.750995C11.7909 1.23564 11.1814 2.06903 10.8167 2.56103C10.6315 2.81096 10.2967 3.26631 11.406 3.26631H20.152C19.4246 4.2616 17.0653 7.13969 12.8288 7.13969H0.000121642Z\" fill=\"#D40511\"\/><path d=\"M30.1279 3.26549L27.2752 7.13945H19.7496C19.7496 7.13945 22.601 3.26608 22.6035 3.26608L30.1279 3.26549Z\" fill=\"#D40511\"\/><path d=\"M41.013 3.26591L38.1588 7.13928H30.636C30.636 7.13928 33.4876 3.26591 33.4902 3.26591H41.013Z\" fill=\"#D40511\"\/><path d=\"M43.458 3.26591C43.4583 3.26591 42.9084 4.0169 42.6412 4.37742C41.6962 5.65313 42.5314 7.13928 45.6155 7.13928H57.6973L60.551 3.26591H43.458Z\" fill=\"#D40511\"\/><\/g>\n            <g transform=\"translate(11.8,0)\"><path d=\"M2.61924 0.000472223L0 3.55507H14.275C14.9965 3.55507 14.987 3.82873 14.6344 4.30606C14.2763 4.79017 13.6768 5.63312 13.3121 6.12512C13.1269 6.3745 12.7921 6.82982 13.9014 6.82982H19.7389C19.7389 6.82982 20.6798 5.55073 21.4685 4.48154C22.5416 3.02697 21.5616 0.000472223 17.7256 0.000472223H2.61924Z\" fill=\"#D40511\"\/><path d=\"M40.5972 6.82941H22.1905L27.2238 5.74579e-05H34.7469L31.8625 3.9158H35.2202L38.107 5.74579e-05H45.629L40.5972 6.82941Z\" fill=\"#D40511\"\/><path d=\"M56.0495 5.74579e-05L51.0171 6.82941H43.0452C43.0452 6.82941 48.0793 5.74579e-05 48.0818 5.74579e-05H56.0495Z\" fill=\"#D40511\"\/><\/g>\n            <g transform=\"translate(26.7,14.26)\"><path d=\"M4.30543e-05 5.42438V7.74138e-06H3.62036V1.06017H1.23423V2.16973H3.3735V3.18886H1.23423V4.36413H3.70251V5.4243L4.30543e-05 5.42438Z\" fill=\"#D40511\"\/><path d=\"M4.15106 5.42396L5.46748 3.33647L4.24158 1.23248H5.54979L6.2327 2.52272H6.36433L7.04723 1.23248H8.29798L7.07195 3.33647L8.38849 5.42396H7.08015L6.30673 4.11721H6.1751L5.40168 5.42396H4.15106Z\" fill=\"#D40511\"\/><path d=\"M8.9686 6.98568V1.23267H10.0959V1.95588C10.2112 1.70395 10.377 1.50662 10.5937 1.36415C10.8103 1.22168 11.0586 1.15044 11.3383 1.15044C11.81 1.15044 12.1789 1.33001 12.4449 1.68874C12.711 2.04771 12.844 2.53946 12.844 3.16407V3.49288C12.844 4.11749 12.711 4.60936 12.4449 4.96804C12.1789 5.32702 11.81 5.50646 11.3383 5.50646C10.7952 5.50646 10.4031 5.2544 10.1618 4.75025V6.98572L8.9686 6.98568ZM10.8857 2.15308C10.5841 2.15308 10.3428 2.28185 10.1617 2.53942V4.12559C10.3427 4.37765 10.5841 4.50362 10.8857 4.50362C11.1326 4.50362 11.3218 4.41463 11.4536 4.2366C11.5852 4.05858 11.651 3.80243 11.651 3.4681V3.18868C11.651 2.85452 11.5852 2.59837 11.4536 2.42018C11.3218 2.24215 11.1326 2.15308 10.8857 2.15308Z\" fill=\"#D40511\"\/><path d=\"M13.7489 5.42439V1.23286H14.8764V2.27652C14.9363 2.09031 15.0176 1.91358 15.1187 1.74642C15.2204 1.57942 15.352 1.4423 15.5141 1.33551C15.6757 1.2286 15.8773 1.17528 16.1185 1.17528C16.1682 1.17528 16.2134 1.17671 16.2547 1.17938C16.2953 1.18222 16.3462 1.18899 16.4066 1.19985V2.30121C16.3626 2.29586 16.3146 2.29177 16.2626 2.28893C16.2106 2.28626 16.1598 2.28484 16.1106 2.28484C15.8084 2.28484 15.5616 2.34224 15.3701 2.45734C15.178 2.57245 15.0351 2.69574 14.9419 2.82718V5.42431L13.7489 5.42439Z\" fill=\"#D40511\"\/><path d=\"M18.8958 5.52294C18.2649 5.52294 17.7616 5.34492 17.386 4.98875C17.0101 4.63257 16.8222 4.13393 16.8222 3.49298V3.16417C16.8222 2.53421 16.9965 2.03824 17.3447 1.6766C17.693 1.31495 18.1578 1.13408 18.7394 1.13408C19.3262 1.13408 19.7804 1.31491 20.1012 1.6766C20.4221 2.03829 20.5825 2.5396 20.5825 3.18055V3.69018H18.0073C18.0731 4.27656 18.3993 4.56953 18.9862 4.56953C19.1783 4.56953 19.3551 4.54216 19.5169 4.48743C19.6787 4.4327 19.8392 4.35315 19.9985 4.24903L20.4837 4.99693C20.2753 5.15591 20.038 5.28329 19.772 5.37918C19.5059 5.47494 19.2138 5.52294 18.8958 5.52294ZM18.7148 2.0875C18.479 2.0875 18.3033 2.16296 18.1881 2.31349C18.0731 2.46428 18.0073 2.67656 17.9907 2.95051H19.439C19.4223 2.67656 19.3565 2.46428 19.2412 2.31349C19.1263 2.163 18.9506 2.0875 18.7148 2.0875Z\" fill=\"#D40511\"\/><path d=\"M22.7071 5.52294C22.3671 5.52294 22.0655 5.47908 21.8022 5.39146C21.539 5.30385 21.2921 5.16422 21.0617 4.97224L21.539 4.208C21.8898 4.47092 22.2739 4.60241 22.6907 4.60241C23.124 4.60241 23.3409 4.47377 23.3409 4.21619C23.3409 4.03537 23.1898 3.91208 22.8882 3.84636L22.4357 3.74776C22.0573 3.66553 21.7678 3.51345 21.5678 3.29156C21.3673 3.06967 21.2673 2.79166 21.2673 2.45734C21.2673 2.04109 21.4167 1.71637 21.7158 1.48349C22.0146 1.25061 22.4275 1.13408 22.954 1.13408C23.5739 1.13408 24.1088 1.29586 24.5584 1.61903L24.106 2.38343C23.8043 2.16438 23.4615 2.05462 23.0774 2.05462C22.6825 2.05462 22.4851 2.17524 22.4851 2.41631C22.4851 2.61351 22.636 2.745 22.9376 2.81084L23.3985 2.90944C24.1771 3.07928 24.5666 3.49582 24.5666 4.15866C24.5666 4.59158 24.4034 4.92716 24.0772 5.16552C23.7507 5.40375 23.2941 5.52294 22.7071 5.52294Z\" fill=\"#D40511\"\/><path d=\"M26.7088 5.52294C26.3687 5.52294 26.0671 5.47908 25.8039 5.39146C25.5406 5.30385 25.2938 5.16422 25.0633 4.97224L25.5407 4.208C25.8914 4.47092 26.2756 4.60241 26.6924 4.60241C27.1256 4.60241 27.3426 4.47377 27.3426 4.21619C27.3426 4.03537 27.1914 3.91208 26.8898 3.84636L26.4374 3.74776C26.0589 3.66553 25.7694 3.51345 25.5695 3.29156C25.369 3.06967 25.269 2.79166 25.269 2.45734C25.269 2.04109 25.4184 1.71637 25.7175 1.48349C26.0163 1.25061 26.4292 1.13408 26.9556 1.13408C27.5755 1.13408 28.1105 1.29586 28.5601 1.61903L28.1077 2.38343C27.806 2.16438 27.4631 2.05462 27.0791 2.05462C26.6842 2.05462 26.4868 2.17524 26.4868 2.41631C26.4868 2.61351 26.6376 2.745 26.9392 2.81084L27.4002 2.90944C28.1788 3.07928 28.5683 3.49582 28.5683 4.15866C28.5683 4.59158 28.405 4.92716 28.0788 5.16552C27.7523 5.40375 27.2957 5.52294 26.7088 5.52294Z\" fill=\"#D40511\"\/><\/g>\n          <\/svg>\n        <\/span>\n        <span class=\"lh-upto\">UP TO<\/span>\n        <span class=\"lh-pct\"><b>81<\/b><span class=\"lh-pctwrap\"><span class=\"sym\">%<\/span><span class=\"off\">OFF<\/span><\/span><\/span>\n        <span class=\"lh-caption\">EXPRESS WORLDWIDE*<\/span>\n      <\/div>\n    <\/div>\n  <\/div>\n\n  <div class=\"lh-click-ring lh-click-ring--1\"><\/div>\n  <div class=\"lh-click-ring lh-click-ring--2\"><\/div>\n  <svg class=\"lh-mouse\" viewBox=\"0 0 19 22\"><path d=\"M1 1 L1 16.5 L5 13 L8 20 L11 18.7 L8 12 L15.5 12 Z\" fill=\"#000\" stroke=\"#fff\" stroke-width=\"1.1\" stroke-linejoin=\"round\"\/><\/svg>\n\n<\/div><\/div>\n<\/div>\n\n<\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      \n      \n    <\/div>\n  <\/div>\n\n  \n  \n<\/div>\n<\/div><\/section>\n\n<section class=\"block block-hero padding-top--md US \"><div class=\"content--full\">\n<div id=\"hero-block-block_7af06594eaedd2fff6b2a0b98115f25b\" class=\"hero-block ltl-hero-3 relative\">\n  <div class=\"container\">\n    <div class=\"hero items-start\">\n      <div class=\"  hero-content \">\n\n        \n                  <p class=\"eyebrow\"><img loading=\"lazy\" decoding=\"async\" width=\"221\" height=\"42\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/02\/station-capterra.svg\" alt=\"\" class=\"alignnone size-full wp-image-69925\" \/><\/p>\n        \n                  <h1 class=\"xl\">Your business is growing. We keep it moving.<\/h1>\n        \n                            <div class=\"lead max-w-[64rem]\"><p class=\"p1\">Ship faster, save more, and scale with parcel and freight in one unified workflow.<\/p>\n<\/div>\n        \n                  <div class=\"btn-group\">\n                          <a href=\"https:\/\/www.shipstation.com\/start-a-free-trial\/\" target=\"\" class=\"btn\">\n                Start Shipping Now              <\/a>\n            \n                          <a href=\"\/contact-us\" target=\"\" class=\"btn outline\">\n                Talk to an Expert              <\/a>\n                      <\/div>\n        \n                  <div class=\"text-xs max-w-[64rem]\"><style>     \/* CSS *\/     .features {     max-width: 540px;     }      .feature-row {     list-style: none;     margin: 0;     padding: 0;     display: flex;     justify-content: flex-start;     flex-wrap: wrap; \/* allow stacking *\/     gap: 16px;     }      .feature {     display: flex;     align-items: center;     gap: 10px;     white-space: nowrap; \/* prevent text wrapping if you want tight spacing *\/     }      \/* Checkmark image *\/     .checkmark {     width: 20px;     height: 20px;     flex: 0 0 20px;     display: block;     }      \/* Text *\/     .feature span {     font-size: 16px;     line-height: 1.4;     color: #111827;     }     .hero-block .container .hero .hero-content ul {         padding-left: 0 !important;     }      \/* Stack at 992px and below *\/     @media (max-width: 992px) {       .feature-row {         flex-direction: column;         align-items: flex-start;     }     }  <\/style> <section class=\"features\">   <ul class=\"feature-row\">     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\" \/>       <span>No credit card required<\/span>     <\/li>     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\" \/>       <span>Cancel anytime<\/span>     <\/li>     <li class=\"feature\">       <img decoding=\"async\" class=\"checkmark\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/black-check-outline.svg\" alt=\"\" \/>       <span>Set up in minutes<\/span>     <\/li>   <\/ul> <\/section><\/div>\n        \n        \n      <\/div>\n\n      \n                        <div class=\"  hero-media\" style=\"aspect-ratio: 948 \/ 711;\">\n            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/08\/desktop-hero-img-LTL-3.webp\" srcset=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/08\/desktop-hero-img-LTL-3.webp 948w, https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/08\/desktop-hero-img-LTL-3-768x576.webp 768w\" sizes=\"(max-width: 948px) 100vw, 948px\" loading=\"eager\" fetchpriority=\"high\" style=\"width: 100%; height: 100%; object-fit: cover;\" class=\"hero-image\" alt=\"ShipStation ships parcel and freight\" width=\"948\" height=\"711\">          <\/div>\n        \n              \n    <\/div>\n  <\/div>\n\n  \n  \n<\/div>\n<\/div><\/section>\n\n\n<section class=\"wp-block-shipstation-cards-v2 block not-prose split-gradient\" id=\"block-cards-6ab76dd86ae80\">\n            <div class=\" pb-8\">\n        <div class=\"container\">\n                        <div class=\"content content-align-center items-center\">\n                                \n                                    <h2>Why global brands choose ShipStation<\/h2>\n                                \n                                \n                                \n                            <\/div>\n                        \n                                                <!-- Grid Mode -->\n                    <div class=\"cards icon-top columns-3 layout-grid\">\n                                                                                <div class=\"card card-icon card-shadow  bg-white\">\n                                \n        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/08\/ShipStation_BrightGreenDeepIndigo_RGB_Pallet02-1.svg\" alt=\"Greenblue Box.\" class=\"icon\" loading=\"eager\" \/>\n    \n\n\n\n\n\n<div class=\"card-content h-full\">\n        <div class=\"card-text\">\n                    <!-- Standard heading\/eyebrow for all other card types -->\n            \n                                                <h3 class=\"h5\">Simplify Fulfillment<\/h3>\n                                            \n                    <div class=\"body\">Manage inventory, warehouse workflows, and shipping across parcel and freight\u2014all in one place.<\/div>\n        \n            <\/div>\n\n            <div class=\"card-cta\">\n                            <a class=\"link-btn no-underline\" \n                   href=\"\/fulfillment\/\" \n                   target=\"\">\n                    Start Shipping                <\/a>\n                    <\/div>\n    <\/div>\n                            <\/div>\n                                                                                                            <div class=\"card card-icon card-shadow  bg-white\">\n                                \n        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/02\/ShipStation_GreenBlue_RGB_Money01.svg\" alt=\"Greenblue Money01.\" class=\"icon\" loading=\"eager\" \/>\n    \n\n\n\n\n\n<div class=\"card-content h-full\">\n        <div class=\"card-text\">\n                    <!-- Standard heading\/eyebrow for all other card types -->\n            \n                                                <h3 class=\"h5\">Cut Costs<\/h3>\n                                            \n                    <div class=\"body\">Save up to 90%* with automated rate shopping across 200+ parcel carriers. Plus, compare rates from 50+ LTL carriers for cost savings.<\/div>\n        \n            <\/div>\n\n            <div class=\"card-cta\">\n                            <a class=\"link-btn no-underline\" \n                   href=\"\/fulfillment\/shipping\/rate-shopper\/\" \n                   target=\"\">\n                    Save More                <\/a>\n                    <\/div>\n    <\/div>\n                            <\/div>\n                                                                                                            <div class=\"card card-icon card-shadow  bg-white\">\n                                \n        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/02\/ShipStation_GreenBlue_RGB_Integrations.svg\" alt=\"Greenblue Integrations.\" class=\"icon\" loading=\"eager\" \/>\n    \n\n\n\n\n\n<div class=\"card-content h-full\">\n        <div class=\"card-text\">\n                    <!-- Standard heading\/eyebrow for all other card types -->\n            \n                                                <h3 class=\"h5\">Automate and Scale<\/h3>\n                                            \n                    <div class=\"body\">Automate repetitive workflows, reduce errors, and use APIs and webhooks to build shipping into your existing systems.<\/div>\n        \n            <\/div>\n\n            <div class=\"card-cta\">\n                            <a class=\"link-btn no-underline\" \n                   href=\"\/fulfillment\/\" \n                   target=\"\">\n                    Get Efficient                <\/a>\n                    <\/div>\n    <\/div>\n                            <\/div>\n                                                                        <\/div>\n                            \n                    <\/div>\n    <\/div>\n<\/section>\n\n\n\n<section class=\"wp-block-shipstation-logo-marquee block not-prose padding-bottom--md logo-bar-block\">\n    <div class=\"bg-cobalt-lightest background--full content-theme--light \">\n        <div>\n            <div class=\"container\">\n                    <div class=\"content content-align-center items-center\">\n                                            <p class=\"eyebrow\">YOU&#039;RE IN GOOD COMPANY<\/p>\n                                        \n                                        \n                                        \n                                        \n                                    <\/div>\n                    <div class=\"logo-marquee\">\n                <div class=\"fade-edges \">\n                    <div class=\"slider\">\n                        <ul class=\"animate-infinite-scroll\">\n                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-salvationarmy-fullcolor-2x.png\" \n                                             alt=\"\" \n                                             width=\"121\" \n                                             height=\"141\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/cotopaxi-logo.svg\" \n                                             alt=\"cotopaxi logo\" \n                                             width=\"120\" \n                                             height=\"71\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-buildabear-fullcolor-2x.png\" \n                                             alt=\"\" \n                                             width=\"271\" \n                                             height=\"140\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-therealreal-fullcolor-2x.png\" \n                                             alt=\"\" \n                                             width=\"241\" \n                                             height=\"141\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-hp-2x.png\" \n                                             alt=\"\" \n                                             width=\"121\" \n                                             height=\"140\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-ballerinafarm-fullcolor-2x.png\" \n                                             alt=\"\" \n                                             width=\"316\" \n                                             height=\"141\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                                                                <li>\n                                        <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2023\/10\/logo-Shopify-tran.svg\" \n                                             alt=\"src=&quot;\/wp-content\/uploads\/2023\/10\/logo-Shopify-tran.svg&quot;\" \n                                             width=\"396\" \n                                             height=\"114\" \n                                             loading=\"lazy\" \/>\n                                    <\/li>\n                                                                                    <\/ul>\n                        \n                                                    <ul aria-hidden=\"true\" class=\"animate-infinite-scroll\">\n                                                                                                            <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-salvationarmy-fullcolor-2x.png\" \n                                                 alt=\"\" \n                                                 width=\"121\" \n                                                 height=\"141\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                                                                <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/cotopaxi-logo.svg\" \n                                                 alt=\"cotopaxi logo\" \n                                                 width=\"120\" \n                                                 height=\"71\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                                                                <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-buildabear-fullcolor-2x.png\" \n                                                 alt=\"\" \n                                                 width=\"271\" \n                                                 height=\"140\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                                                                <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-therealreal-fullcolor-2x.png\" \n                                                 alt=\"\" \n                                                 width=\"241\" \n                                                 height=\"141\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                                                                <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-hp-2x.png\" \n                                                 alt=\"\" \n                                                 width=\"121\" \n                                                 height=\"140\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                                                                <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/06\/logo-ballerinafarm-fullcolor-2x.png\" \n                                                 alt=\"\" \n                                                 width=\"316\" \n                                                 height=\"141\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                                                                <li>\n                                            <img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2023\/10\/logo-Shopify-tran.svg\" \n                                                 alt=\"src=&quot;\/wp-content\/uploads\/2023\/10\/logo-Shopify-tran.svg&quot;\" \n                                                 width=\"396\" \n                                                 height=\"114\" \n                                                 loading=\"lazy\" \/>\n                                        <\/li>\n                                                                                                <\/ul>\n                                            <\/div>\n                <\/div>\n            <\/div> <!-- Close logo-marquee -->\n            <\/div> <!-- Close container -->\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<section class=\"wp-block-shipstation-content-row block not-prose columns-2 align-center gap-lg\">\n    <div class=\"\">\n        <div class=\"container not-prose\">\n\n                        <div class=\"content-row__columns content-row__columns--has-bg bg-deep-indigo\">\n                                    <div class=\"content-row__column content-row__column--image\">\n                                                        <div class=\"content-row__image-wrapper content-row__image-wrapper--contain\">\n                                                                            <img decoding=\"async\" class=\"content-row__image\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/09\/configure-label-api.webp\" alt=\"Configure label via API\" width=\"649\" height=\"458\" loading=\"lazy\">\n                                                                    <\/div>\n                            \n                                            <\/div>\n                                    <div class=\"content-row__column content-row__column--text\">\n                                                    <div class=\"content-row__text text-align-left\">\n                                                                    <p class=\"eyebrow eyebrow--accent\">CUSTOMIZED FULFILLMENT<\/p>\n                                \n                                                                    <h2>Get unmatched global coverage when you sync with API<\/h2>\n                                \n                                \n                                                                                                    <div class=\"content-row__cta-wrapper\">\n                                        <a href=\"\/fulfillment\/api\" class=\"btn outline\">Learn More<\/a>\n                                                                            <\/div>\n                                                            <\/div>\n                                            <\/div>\n                            <\/div>\n\n\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<section class=\"wp-block-shipstation-content-row block not-prose padding-top--md padding-bottom--md columns-3 align-center gap-xl ratio-20-60-20\">\n    <div class=\"\">\n        <div class=\"container not-prose\">\n\n                        <div class=\"content-row__columns\">\n                                    <div class=\"content-row__column content-row__column--image\">\n                                                        <div class=\"content-row__image-wrapper content-row__image-wrapper--contain\">\n                                                                            <img decoding=\"async\" class=\"content-row__image content-row__image--desktop\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/04\/image_integrations_left_3x-1-324x1024.webp\" alt=\"Partner logos.\" width=\"577\" height=\"1821\" loading=\"lazy\">\n                                        <img decoding=\"async\" class=\"content-row__image content-row__image--mobile\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/integrations-mobile-top-2x.webp\" alt=\"Partner logos.\" width=\"686\" height=\"316\" loading=\"lazy\">\n                                                                    <\/div>\n                            \n                                            <\/div>\n                                    <div class=\"content-row__column content-row__column--text\">\n                                                    <div class=\"content-row__text text-align-center\">\n                                \n                                                                    <h2>Connect to your favorite partners and platforms<\/h2>\n                                \n                                                                    <div class=\"content-row__body\">Access 400+ integrations, including 200+ global parcel carriers and 50+ LTL carriers\u2014like UPS\u00ae, USPS\u00ae, DHL Express, and GlobalPost\u2122. Plus, save 10 hours a month when you centralize order management, international shipping, and freight in one platform.<\/div>\n                                \n                                                                                                    <div class=\"content-row__cta-wrapper\">\n                                        <a href=\"\/partners\/\" class=\"btn\">Find My Integration<\/a>\n                                                                            <\/div>\n                                                            <\/div>\n                                            <\/div>\n                                    <div class=\"content-row__column content-row__column--image\">\n                                                        <div class=\"content-row__image-wrapper content-row__image-wrapper--contain\">\n                                                                            <img decoding=\"async\" class=\"content-row__image\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/04\/image_integrations_right_3x-1-324x1024.webp\" alt=\"Partner logos.\" width=\"577\" height=\"1821\" loading=\"lazy\">\n                                                                    <\/div>\n                            \n                                            <\/div>\n                            <\/div>\n\n\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<section class=\"wp-block-shipstation-content-row block not-prose columns-2 align-center gap-lg\">\n    <div class=\"\">\n        <div class=\"container not-prose\">\n\n                        <div class=\"content-row__columns content-row__columns--has-bg bg-marigold\">\n                                    <div class=\"content-row__column content-row__column--image\">\n                                                        <div class=\"content-row__image-wrapper content-row__image-wrapper--contain\">\n                                                                            <img decoding=\"async\" class=\"content-row__image\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/02\/image_asset_4_3_ss_3x-1-1024x768.webp\" alt=\"Ecommerce shipping illustration.\" width=\"1557\" height=\"1167\" loading=\"lazy\">\n                                                                    <\/div>\n                            \n                                            <\/div>\n                                    <div class=\"content-row__column content-row__column--text\">\n                                                    <div class=\"content-row__text text-align-left\">\n                                                                    <p class=\"eyebrow\">save time<\/p>\n                                \n                                                                    <h2>Reduce human error and create 15x more labels per hour<\/h2>\n                                \n                                \n                                                                                                    <div class=\"content-row__cta-wrapper\">\n                                        <a href=\"\/fulfillment\/automation\" class=\"btn outline\">Start Automating<\/a>\n                                                                            <\/div>\n                                                            <\/div>\n                                            <\/div>\n                            <\/div>\n\n\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/swiper@11\/swiper-bundle.min.css\" media=\"print\" onload=\"this.media='all'\" \/>\n<noscript><link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/swiper@11\/swiper-bundle.min.css\" \/><\/noscript>\n<script defer src=\"https:\/\/cdn.jsdelivr.net\/npm\/swiper@11\/swiper-bundle.min.js\"><\/script>\n\n<div class=\"wp-block-shipstation-stories-slider block not-prose\">\n        \n    <div class=\"container \">\n        <div id=\"stories-slider-6ab76dd86d735\" class=\"stories-slider__wrapper\">\n            <!-- Swiper Container -->\n            <div id=\"stories-slider-6ab76dd86d735_swiper\" class=\"stories-slider__slider swiper\">\n                <div class=\"swiper-wrapper\">\n                                            <div class=\"stories-slider__slide swiper-slide\">\n                                                            <img decoding=\"async\"\n                                    class=\"stories-slider__slide-image\"\n                                    src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/05\/spiceology-product-shot-1.webp\"\n                                    alt=\"spiceology shipstation product shot thumbnail\"\n                                    loading=\"lazy\"\n                                >\n                            \n                            \n                                                    <\/div>\n                                            <div class=\"stories-slider__slide swiper-slide\">\n                                                            <img decoding=\"async\"\n                                    class=\"stories-slider__slide-image\"\n                                    src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/05\/ShipStation00008-scaled-1.webp\"\n                                    alt=\"green gridiron shipstation thumbnail\"\n                                    loading=\"lazy\"\n                                >\n                            \n                            \n                                                    <\/div>\n                                            <div class=\"stories-slider__slide swiper-slide\">\n                                                            <img decoding=\"async\"\n                                    class=\"stories-slider__slide-image\"\n                                    src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/06\/QA-scaled-1.webp\"\n                                    alt=\"\"\n                                    loading=\"lazy\"\n                                >\n                            \n                            \n                                                    <\/div>\n                                    <\/div>\n\n                <!-- Navigation Controls -->\n                <div class=\"stories-slider__controls\">\n                    <div class=\"btn-swiper btn-swiper--left js-prev\" aria-label=\"Previous slide\"><\/div>\n                    <div class=\"btn-swiper btn-swiper--right js-next\" aria-label=\"Next slide\"><\/div>\n                <\/div>\n            <\/div>\n\n            <!-- Slide Info Sections -->\n                            <div\n                    class=\"stories-slider__info js-info active\"\n                    data-index=\"0\"\n                >\n                    \n                                            <h3>How Spiceology Ships 3x More Orders During Peak\u2014With Half the Team<\/h3>\n                    \n                                            <p>&quot;There is nothing that has to do with shipping that ShipStation hasn&#039;t improved for us.&quot;<\/p>\n                    \n                                            <span class=\"caption\">Ned Woodward, Director of Logistics and Fulfillment<\/span>\n                    \n                                            <a\n                            class=\"link-btn no-underline\"\n                            href=\"https:\/\/www.shipstation.com\/stories\/spiceology\/\"\n                            target=\"_self\"\n                                                    >\n                            Read Their Story                        <\/a>\n                                    <\/div>\n                            <div\n                    class=\"stories-slider__info js-info\"\n                    data-index=\"1\"\n                >\n                    \n                                            <h3>How Green Gridiron Scaled from $1M to $10M+ with ShipStation<\/h3>\n                    \n                                            <p>&quot;We&#039;ve been using ShipStation as we&#039;ve grown from sub-$1 million per year in revenue to over $10 million per year.&quot;<\/p>\n                    \n                                            <span class=\"caption\">Steve Adams, Vice President, Green Gridiron<\/span>\n                    \n                                            <a\n                            class=\"link-btn no-underline\"\n                            href=\"https:\/\/www.shipstation.com\/stories\/green-gridiron\/\"\n                            target=\"_self\"\n                                                    >\n                            Read Their Story                        <\/a>\n                                    <\/div>\n                            <div\n                    class=\"stories-slider__info js-info\"\n                    data-index=\"2\"\n                >\n                    \n                                            <h3>From Custom T-Shirt Shop to High-Volume Fulfillment Machine with ShipStation API<\/h3>\n                    \n                                            <p>&quot;If you need a dependable, high-volume shipping API that reduces labor and errors while supporting long-term growth, ShipStation is the clear choice.&quot;<\/p>\n                    \n                                            <span class=\"caption\">Mike Nemeroff, CEO<\/span>\n                    \n                                            <a\n                            class=\"link-btn no-underline\"\n                            href=\"https:\/\/www.shipstation.com\/stories\/rush-order-tees\/\"\n                            target=\"_self\"\n                                                    >\n                            Read Their Story                        <\/a>\n                                    <\/div>\n                    <\/div>\n    <\/div>\n<\/div>\n\n\n<section class=\"block block-feature-text padding-top--lg padding-bottom--sm US \"><div class=\"content--lg\">\n<div id=\"feature-text-block-block_730acc5d201d10e37d316418762de9ed\" class=\"feature-text-block pb-6\">\n\t<div class=\"container\">\n\t\t<div class=\"content content-align-center\">\n\t\t\t\t\t\t\t\t\t\t<h2 class=\"\">Delivering for customers around the world<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t<div class=\"acf-innerblocks-container\">\n\n<style>\n\/* Wrapper (optional container) *\/\n.stats {\nwidth: 100%;\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 16px;\nmargin-top: 24px;\n}\n\n\/* The pill *\/\n.stats-grid {\n  list-style: none;\n  margin: 0;\n  padding: 28px 32px;\n  display: grid;\n  grid-template-columns: repeat(4, 1fr);\n  gap: 24px;\n  background: #5C50FF;           \/* soft green pill background *\/\n  border-radius: 24px;            \/* curved ends *\/\n}\n\n\/* Each metric *\/\n.stat {\n  text-align: center;\n}\n\n\/* Big number *\/\n.stat-value {\n  font-weight: 600;\n  color: #ffffff;                 \/* deep green *\/\n  \/* Scale nicely from mobile to desktop *\/\n  font-size: clamp(28px, 12vw, 70px);\n  line-height: 1.1;\n}\n\n\/* Label *\/\n.stat-label {\n  margin-top: 8px;\n  color: #ffffff;\n  opacity: 0.9;\n  font-size: clamp(14px, 2.2vw, 18px);\n  font-weight:500;\n}\n\n\/* Stack below 992px *\/\n@media (max-width: 992px) {\n  .stats-grid {\n    grid-template-columns: 1fr;   \/* one per row *\/\n    padding: 24px;\n    gap: 16px;\n  }\n}\n<\/style>\n<section class=\"stats\">\n  <ul class=\"stats-grid\">\n    <li class=\"stat\">\n      <div class=\"stat-value\">1.3M<\/div>\n      <div class=\"stat-label\">Customers served<\/div>\n    <\/li>\n    <li class=\"stat\">\n      <div class=\"stat-value\">1.5T<\/div>\n      <div class=\"stat-label\">Packages shipped<\/div>\n    <\/li>\n    <li class=\"stat\">\n      <div class=\"stat-value\">195<\/div>\n      <div class=\"stat-label\">Countries shipped to<\/div>\n    <\/li>\n    <li class=\"stat\">\n      <div class=\"stat-value\">$5T<\/div>\n      <div class=\"stat-label\">Customer revenue<\/div>\n    <\/li>\n  <\/ul>\n<\/section>\n\n<\/div>\n\t<\/div>\n<\/div>\n<\/div><\/section>\n\n\n<section class=\"wp-block-shipstation-content-row block not-prose padding-top--lg padding-bottom--md columns-2 align-center gap-xl\">\n    <div class=\"content--lg\">\n        <div class=\"container not-prose\">\n\n                        <div class=\"content-row__columns\">\n                                    <div class=\"content-row__column content-row__column--text\">\n                                                    <div class=\"content-row__text text-align-left\">\n                                \n                                                                    <h2>Dedicated support at every step<\/h2>\n                                \n                                                                    <div class=\"content-row__body\">From setup to scaling, we help you build a shipping workflow that grows with your business. Get 1-on-1 onboarding, join live or on-demand webinars, or work with a certified implementation partner for hands-on setup. Every plan is backed by live chat, phone, and email support, plus a 24\/7 Help Center\u2014part of why customers give us a 96% CSAT score.<\/div>\n                                \n                                                                                                    <div class=\"content-row__cta-wrapper\">\n                                        <a href=\"https:\/\/www.shipstation.com\/start-a-free-trial\/\" class=\"btn\">Get Started<\/a>\n                                                                            <\/div>\n                                                            <\/div>\n                                            <\/div>\n                                    <div class=\"content-row__column content-row__column--image\">\n                                                        <div class=\"content-row__image-wrapper content-row__image-wrapper--cover\">\n                                                                            <img decoding=\"async\" class=\"content-row__image\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/02\/img_4_3_support_3x-1024x768.webp\" alt=\"ShipStation customer support.\" width=\"1557\" height=\"1168\" loading=\"lazy\">\n                                                                    <\/div>\n                            \n                                            <\/div>\n                            <\/div>\n\n\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<style>\n.image-grid {\n  display: grid;\n  grid-template-columns: repeat(3, 1fr); \/* 3 columns *\/\n  gap: 40px;\n  margin-bottom: 40px;\n}\n\n.grid-item {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n}\n\n.grid-item img {\n  width:auto;\n  height: 100%;\n  max-height: 120px;\n}\n\n\/* Breakpoint: 2 columns below 992px *\/\n@media (max-width: 992px) {\n  .image-grid {\n    grid-template-columns: repeat(2, 1fr);\n  }\n}\n<\/style>\n\n<style>\n\n.form-long-block .container .form-columns .content ul li {\nline-height: 1.3 !important;\n}\n\n.register-form .container {\npadding-left: 0;\npadding-right: 0;\n}\n\n@media screen and (max-width:768px) {\n\n.form-columns {\nflex-flow: column-reverse !important;\n}\n}\n\n#registration-form .form-layout {\n\tflex-direction: column !important;\n\tmax-height: unset !important;\n}\n\n#registration-form .form-layout.form-names {\n\tflex-direction: row !important;\n\tmax-height: 90px !important;\n\tgap: 16px !important;\n}\n\n#registration-form .row:first-child {\n\tmargin-right: 0 !important;\n}\n#registration-form h3.form-title,\nh3, .h3, .prose h3 {\nfont-size: 24px !important;\n}\n.form-long-block{\n  max-width:1273px !important;\n}\n.form-long-block .container .form-columns .form .form-content {\npadding-top: 2rem !important;\n}\n\n#registration-form input {\nheight: 40px !important;\n}\n\n.signup-form-container #signup .btn,\n.signup-form-container #signup #save-button {\n  height: 56px;\n  font-weight: 700;\n  margin-bottom: 16px;\n  border-radius: 5px;\n  border: none !important;\n  width: 100%;\n}\n\n\n#registration-form .disclaimer_text,\n#registration-form .terms {\nfont-size: 12px !important;\n}\n\n@media screen and (max-width: 768px) {\n    .block-form-long .form-columns {\n        flex-flow: column !important;\n    }\n}\n@media (min-width: 1280px) {\n    .block .background--sky-blue, .hero .background--sky-blue {\n        padding-top: 100px !important;\n        padding-bottom: 100px !important;\n    }\n}\n<\/style>\n\n\n<section class=\"block block-form-long padding-top--md US \"><div class=\"bg-cobalt-lightest background--full content--lg\">\n<div id=\"form-long-block-block_012637364362f00764a039d19bf14b93\" class=\"form-long-block relative overflow-hidden\">\n\t<div class=\"container\">\n\t\t<div class=\"form-columns\">\n\t\t\t<div class=\"content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>Try us free<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"lead max-w-[64rem]\"><p class=\"h5\">What you can look forward to in your 30-day free trial:<\/p>\n<ul style=\"list-style: none; padding: 0; margin-top: 24px;\">\n<li style=\"display: flex; align-items: center; margin-bottom: 16px;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-70021 \" role=\"img\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/check-dark-green-fill.webp\" alt=\"check-dark-green\" width=\"30\" height=\"30\" \/> \u00a0 \u00a0Get instant access to all of our features<\/li>\n<li style=\"display: flex; align-items: center; margin-bottom: 16px;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-70021 \" role=\"img\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/check-dark-green-fill.webp\" alt=\"check-dark-green\" width=\"30\" height=\"30\" \/> \u00a0 \u00a0Connect to over 400 integrations<\/li>\n<li style=\"display: flex; align-items: center; margin-bottom: 16px;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-70021 \" role=\"img\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/check-dark-green-fill.webp\" alt=\"check-dark-green\" width=\"30\" height=\"30\" \/> \u00a0 \u00a0See how much our rates can save you on shipping<\/li>\n<\/ul>\n<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"text-xs max-w-[64rem]\"><p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<section class=\"image-grid\">\n<div class=\"grid-item\"><img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/04\/Shipping_BestEstimatedROI_Mid-Market_Roi.svg\" alt=\"Award 1\" \/><\/div>\n<div class=\"grid-item\"><img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/04\/Shipping_MomentumLeader_Leader.svg\" alt=\"Award 2\" \/><\/div>\n<div class=\"grid-item\"><img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/04\/DropShipping_HighestUserAdoption_Adoption.svg\" alt=\"Award 3\" \/><\/div>\n<div class=\"grid-item\"><img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/04\/E-Commerce_Leader_Leader.svg\" alt=\"Award 5\" \/><\/div>\n<div class=\"grid-item\"><img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2026\/03\/Shipping_EasiestSetup_Mid-Market_EaseOfSetup.svg\" alt=\"Award 4\" \/><\/div>\n<div class=\"grid-item\"><img decoding=\"async\" src=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/g2-fall-2025-users-love-us.svg\" alt=\"Award 6\" \/><\/div>\n<\/section>\n<\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t<div class=\"form\">\n\t\t\t\t<div class=\"form-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"acf-innerblocks-container\">\n<p><script src=\"https:\/\/cdn.jsdelivr.net\/npm\/vue@2.6.12\" defer><\/script>\n<!-- reCAPTCHA will be lazy-loaded via recaptcha-loader.js (see below) -->\n\n\n<div class=\"signup-form-container\"\n    style=\"--backgroundColor: #FFFFFF; --textColor: #2F3657; --headingColor: #2E3657;\">\n    <div id=\"signup_form\" v-if=\"content\">\n        <section id=\"signup\">\n            <h3 class=\"form-title\">Create your ShipStation account<\/h3>\n            <div class=\"register-form\">\n                <form class=\"container\" id=\"registration-form\" method=\"POST\" v-on:submit.prevent>\n                    <fieldset>\n                        <div v-if=\"ssoOnboarding\">\n                                                    <\/div>\n                        <div>\n                            <div class=\"row custom-select\" v-show=\"showField('country')\">\n    <label for=\"country\" class=\"sr-only\">\n        <span>Country<\/span>\n        <em>*<\/em>\n    <\/label>\n    <!-- @change marks the field as user-touched so the async geo result can't overwrite a\n         selection the visitor already made. See onCountryChange() in forms\/signup.php. -->\n    <select id=\"country\" v-model=\"country\" name=\"countryCode\" class=\"default\" required @change=\"onCountryChange\">\n        <option value=\"\" disabled selected>Select your shipping origin country<\/option>\n        <option value=\"US\">United States<\/option>\n        <option value=\"CA\">Canada<\/option>\n        <option value=\"AU\">Australia<\/option>\n        <option value=\"NZ\">New Zealand<\/option>\n        <option value=\"GB\">United Kingdom<\/option>\n        <option value=\"FR\">France<\/option>\n        <option value=\"DE\">Germany<\/option>\n        <option value=\"Other\">Other<\/option>\n    <\/select>\n<\/div><div ref=\"name\" class=\"form-layout container form-names\">\n    <div v-show=\"showField('firstName')\" class=\"row error-container\">\n        <label for=\"reg-fname\"><span>First Name<\/span> <em>*<\/em><\/label>\n        <input v-model=\"firstName\" id=\"reg-fname\" class=\"required\" name=\"firstName\" size=\"24\" maxlength=\"22\" type=\"text\" placeholder=\"\" required \/>\n    <\/div>\n    <div v-show=\"showField('lastName')\" class=\"row error-container\">\n        <label for=\"reg-lname\"><span>Last Name<\/span> <em>*<\/em><\/label>\n        <input v-model=\"lastName\" id=\"reg-lname\" class=\"required\" name=\"lastName\" size=\"24\" maxlength=\"22\" type=\"text\" placeholder=\"\" required \/>\n    <\/div>\n<\/div><div ref=\"company\" class=\"row error-container container\" v-show=\"showField('company')\">\n    <label for=\"reg-compname\"><span>Company<\/span><em v-if=\"companyRequired.includes(country)\"> *<\/em><\/label>\n    <input v-model=\"company\" id=\"reg-compname\" maxlength=\"50\" name=\"companyName\" type=\"text\" \/>\n<\/div>                            <div class=\"form-layout container\">\n                                <div class=\"row error-container\" v-show=\"showField('email')\">\n    <label for=\"email\"><span>Email<\/span> <em>*<\/em><\/label>\n    <input v-model=\"email\" id=\"email\" class=\"required\" spellcheck=\"false\" maxlength=\"255\" name=\"email\" type=\"email\" placeholder=\"\" required \/>\n<\/div><div class=\"row relative password-container\">\n    <label for=\"password\"><span>Password<\/span> <em>*<\/em><\/label>\n    <input\n        id=\"password\"\n        class=\"required pr-12\"\n        name=\"password\"\n        :type=\"showPassword ? 'text' : 'password'\"\n        v-model=\"password\"\n        required\n    >\n    <button\n      type=\"button\"\n      @click=\"toggleShowPassword\"\n      aria-label=\"Show \/ Hide password\"\n      class=\"toggle-password\"\n      :class=\"{ 'toggle-password--empty': password.length === 0 }\"\n    >\n      <!-- Conditionally render SVG icons based on showPassword state -->\n      <template v-if=\"showPassword\">\n        <!-- EyeSlashIcon -->\n        <svg\n            width=\"18\"\n            height=\"15\"\n            viewBox=\"0 0 18 15\"\n            fill=\"none\"\n            xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n            aria-hidden=\"true\"\n            focusable=\"false\"\n        >\n            <path\n            d=\"M8.99991 11.25C6.86664 11.25 5.13977 9.59883 4.98086 7.50633L2.03056 5.22625C1.64272 5.71281 1.28581 6.22721 0.997811 6.78971C0.933473 6.91698 0.899952 7.05759 0.899952 7.20019C0.899952 7.3428 0.933473 7.48341 0.997811 7.61068C2.52303 10.5866 5.54252 12.6 8.99991 12.6C9.75675 12.6 10.4869 12.4875 11.1906 12.3058L9.73116 11.1766C9.49014 11.2232 9.24538 11.2478 8.99991 11.25ZM17.8261 12.8841L14.7169 10.4811C15.6613 9.68514 16.4381 8.70932 17.002 7.61039C17.0664 7.48313 17.0999 7.34252 17.0999 7.19991C17.0999 7.0573 17.0664 6.9167 17.002 6.78943C15.4768 3.81353 12.4573 1.80007 8.99991 1.80007C7.5519 1.80182 6.12741 2.16636 4.85655 2.86038L1.2785 0.0948548C1.23184 0.0585476 1.17848 0.0317904 1.12148 0.0161121C1.06448 0.000433765 1.00494 -0.00385832 0.946279 0.00348108C0.887616 0.0108205 0.830974 0.0296475 0.77959 0.0588864C0.728206 0.0881252 0.683088 0.127203 0.646812 0.173886L0.0947201 0.884602C0.0214824 0.978816 -0.0113349 1.09826 0.00348583 1.21667C0.0183066 1.33508 0.0795517 1.44275 0.173751 1.51601L16.7213 14.3052C16.768 14.3416 16.8213 14.3683 16.8783 14.384C16.9353 14.3997 16.9949 14.404 17.0535 14.3966C17.1122 14.3893 17.1688 14.3705 17.2202 14.3412C17.2716 14.312 17.3167 14.2729 17.353 14.2262L17.9054 13.5155C17.9786 13.4213 18.0114 13.3018 17.9965 13.1834C17.9816 13.065 17.9203 12.9573 17.8261 12.8841ZM12.659 8.89036L11.5537 8.03592C11.6467 7.7669 11.6961 7.4847 11.6999 7.20005C11.7054 6.78331 11.6131 6.3711 11.4303 5.99651C11.2476 5.62193 10.9796 5.29542 10.6478 5.04321C10.316 4.79101 9.92967 4.62013 9.51985 4.54431C9.11003 4.46849 8.68814 4.48984 8.28807 4.60665C8.45767 4.83646 8.54941 5.11444 8.54991 5.40006C8.54572 5.4951 8.53119 5.5894 8.5066 5.68131L6.43633 4.08128C7.15547 3.48031 8.06271 3.15076 8.99991 3.15006C9.53185 3.14977 10.0586 3.25432 10.5501 3.45775C11.0416 3.66117 11.4882 3.95948 11.8643 4.33562C12.2405 4.71175 12.5388 5.15834 12.7422 5.64984C12.9456 6.14134 13.0502 6.66812 13.0499 7.20005C13.0499 7.80839 12.9011 8.37539 12.659 8.89064V8.89036Z\"\n            fill=\"#637381\"\n            \/>\n        <\/svg>\n      <\/template>\n      <template v-else>\n        <!-- EyeIcon -->\n        <svg\n            width=\"18\"\n            height=\"12\"\n            viewBox=\"0 0 18 12\"\n            fill=\"none\"\n            xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n            aria-hidden=\"true\"\n            focusable=\"false\"\n        >\n            <path\n            d=\"M8.99998 2.5C8.66877 2.50518 8.34001 2.5578 8.02373 2.65625C8.17003 2.91354 8.24793 3.20403 8.24998 3.5C8.24998 3.72981 8.20472 3.95738 8.11677 4.1697C8.02882 4.38202 7.89992 4.57493 7.73742 4.73744C7.57492 4.89994 7.382 5.02884 7.16968 5.11679C6.95736 5.20474 6.7298 5.25 6.49998 5.25C6.20402 5.24795 5.91352 5.17005 5.65623 5.02375C5.45324 5.72775 5.4769 6.47777 5.72386 7.16757C5.97081 7.85738 6.42855 8.452 7.03222 8.8672C7.6359 9.28241 8.35491 9.49715 9.08741 9.48101C9.81991 9.46487 10.5288 9.21867 11.1136 8.77728C11.6984 8.33589 12.1295 7.72169 12.3458 7.02168C12.5621 6.32167 12.5527 5.57133 12.3189 4.87696C12.0852 4.18258 11.6388 3.57937 11.0431 3.15277C10.4475 2.72616 9.73266 2.49779 8.99998 2.5ZM17.8912 5.54375C16.1965 2.23719 12.8415 0 8.99998 0C5.15842 0 1.80248 2.23875 0.108733 5.54406C0.037246 5.68547 0 5.8417 0 6.00016C0 6.15861 0.037246 6.31484 0.108733 6.45625C1.80342 9.76281 5.15842 12 8.99998 12C12.8415 12 16.1975 9.76125 17.8912 6.45594C17.9627 6.31453 18 6.1583 18 5.99984C18 5.84139 17.9627 5.68516 17.8912 5.54375ZM8.99998 10.5C5.91717 10.5 3.09092 8.78125 1.56467 6C3.09092 3.21875 5.91686 1.5 8.99998 1.5C12.0831 1.5 14.909 3.21875 16.4353 6C14.9094 8.78125 12.0831 10.5 8.99998 10.5Z\"\n            fill=\"#637381\"\n            \/>\n        <\/svg>\n      <\/template>\n    <\/button>\n<\/input>\n<\/div>\n                            <\/div>\n                            <div class=\"form-layout container\">\n                                <div ref=\"phone\" class=\"row error-container\" v-show=\"showField('phone')\">\n    <label for=\"phone\"><span>Phone<\/span><sup class=\"consent-marker\">&dagger;<\/sup><em v-if=\"phoneNumberRequired.includes(country)\"> *<\/em><\/label>\n    <input v-model=\"phone\" @input=\"restrictToNumbers\" id=\"phone\" name=\"phone\" type=\"tel\" placeholder=\"\" inputmode=\"tel\" \/>\n<\/div>\n<div class=\"row\" v-show=\"showField('coupon')\">\n    <label for=\"coupon\">\n        <span>\n            Offer Code        <\/span>\n    <\/label>\n    <input id=\"coupon\" name=\"coupon\" size=\"24\" type=\"text\"\n        placeholder=\"\" \/>\n<\/div>\n                            <\/div>\n                            <div class=\"container\">\n                                <div ref=\"shipmentVolume\" class=\"row custom-select\" v-show=\"showField('shipmentVolume')\">\n    <label for=\"shipment_volume\"><span>Select your current number of parcel shipments per month<\/span> <em>*<\/em><\/label>\n    <select v-model=\"shipmentVolume\" id=\"shipment_volume\" name=\"shipment_volume\" class=\"default\" required=\"required\">\n        <option value=\"default\" disabled>Select an option<\/option>\n        <option value=\"1\">I only need to ship one package<\/option>\n        <option value=\"50\">50 shipments or less, I'm just getting started<\/option>\n        <option value=\"500\">51-500 shipments<\/option>\n        <option value=\"1000\">501-1,000 shipments<\/option>\n        <option value=\"2000\">1,001-2,000 shipments<\/option>\n        <option value=\"5000\">2,001-5,000 shipments<\/option>\n        <option value=\"7500\">5,001-7,500 shipments<\/option>\n        <option value=\"7501\">7,501+ shipments<\/option>\n        <option value=\"0\">I don't plan to ship anything<\/option>\n    <\/select>\n<\/div>                                <div id=\"ships-freight-div\" class=\"row ss-registration-field--hidden\" data-ships-freight-enabled=\"0\">\n                                    <label for=\"ships_freight\"><span>Select your current number of LTL shipments per month<\/span> <em>*<\/em><\/label>\n                                                                        <select id=\"ships_freight\" name=\"ships_freight\">\n                                                                                <option value=\"null\">Please select an option<\/option>\n                                        <option value=\"0\">0 shipments<\/option>\n                                        <option value=\"5\">1-20 shipments<\/option>\n                                        <option value=\"10\">21-40 shipments<\/option>\n                                        <option value=\"11\">41+ shipments<\/option>\n                                    <\/select>\n                                <\/div>\n                                <div ref=\"hdyhau\" class=\"row custom-select\" v-show=\"showField('howDidYouHearAboutUs')\">\n    <label for=\"howdidyouhearaboutus\"><span>How did you hear about us?<\/span><\/label>\n    <select v-model=\"selectHowDidYouHearAboutUs\" id=\"howdidyouhearaboutus\" name=\"answers[0]\" class=\"default\" ref=\"referral_source\">\n        <option value=\"\" disabled selected>Please select...<\/option>\n                    <option value=\"Event \/ Tradeshow\">Event \/ Tradeshow<\/option>\n                    <option value=\"Social Media Ad (Facebook, LinkedIn, etc.)\">Social Media Ad (Facebook, LinkedIn, etc.)<\/option>\n                    <option value=\"Banner Ad\">Banner Ad<\/option>\n                    <option value=\"Shopping Cart (Shopify, eBay, etc.)\">Shopping Cart (Shopify, eBay, etc.)<\/option>\n                    <option value=\"Radio \/ Streaming Audio \/ SiriusXM\">Radio \/ Streaming Audio \/ SiriusXM<\/option>\n                    <option value=\"Recommended by Friend\">Recommended by Friend<\/option>\n                    <option value=\"Search engine (Google, Bing, etc.)\">Search engine (Google, Bing, etc.)<\/option>\n                    <option value=\"Podcast \/ Youtube\">Podcast \/ Youtube<\/option>\n                    <option value=\"Received Mailer\">Received Mailer<\/option>\n                    <option value=\"Influencer (Instagram\/TikTok)\">Influencer (Instagram\/TikTok)<\/option>\n                    <option value=\"TV Commercial\">TV Commercial<\/option>\n                <option id=\"howdidyouhearaboutus_other\" value=\"Other\">Other (Please specify below)<\/option>\n    <\/select>\n    <input name=\"questions[0]\" type=\"hidden\" value=\"How did you hear about us?\">\n<\/div>\n<div id=\"howdidyouhearaboutus_other_container\" class=\"row\" style=\"display:none;\" v-show=\"selectHowDidYouHearAboutUs === 'Other' &#038;&#038; showField('howDidYouHearAboutUs')\">\n    <input v-model=\"howDidYouHearAboutUs\" name=\"howdidyouhearaboutus_textfield\" type=\"text\" value=\"\" placeholder=\"Please let us know how did you hear about us...\">\n<\/div><div class=\"row optin-consent-field\" style=\"display:none;\">\n    <label>\n        <input id=\"optin_consent\" name=\"optin_consent\" type=\"checkbox\" checked \/> I consent to receive personalised marketing communications    <\/label>\n<\/div><div class=\"row\" id=\"reg-submit\">\n    <input id=\"save-button\" class=\"btn translate\" name=\"saveForm\" type=\"submit\" value=\"Get Started\" \/>\n    \n    <div class=\"row\">\n    <div class=\"terms\">\n        By clicking &#039;Get Started&#039;, you agree to our        <a id=\"sstos\" :href=\"content[country].privacy.tosURL || '\/terms-of-service'\" target=\"_blank\">\n            Terms        <\/a>\n        &amp;        <a id=\"sspp\" :href=\"content[country].privacy.privacyURL || '\/privacy-policy'\" target=\"_blank\">\n            Privacy Policy        <\/a>\n        and        <a id=\"sscarriers\" href=\"\/carriers-terms-of-service\/\" target=\"_blank\">\n            Carriers&#039; Terms        <\/a>.\n    <\/div>\n\n                <div class=\"terms phone-consent\">\n            \u2020 By providing your phone number, you agree that ShipStation may contact you by call or text, including using AI or automated technology, for onboarding and support. Phone number is optional.        <\/div>\n    \n    <div id=\"recaptcha-legal\" style=\"display:none;\">\n        This site is protected by reCAPTCHA and the Google\n        <a href=\"https:\/\/policies.google.com\/privacy\">Privacy Policy<\/a> and\n        <a href=\"https:\/\/policies.google.com\/terms\">Terms of Service apply.<\/a>\n    <\/div>\n<\/div>    \n            <span class=\"disclaimer_text\">No commitment. No credit card needed. By providing a telephone number and submitting this form you are consenting to be contacted by SMS text message. Message and data rates may apply. You can reply STOP to opt-out of further messaging.<\/span>\n    <\/div>\n                            <\/div>\n                        <\/div>\n\n                        <div class=\"phone-support\">\n                            <span v-if=\"country !== 'US' &#038;&#038; country !== 'CA'\">\n                                Questions? Contact our sales team at                            <\/span>\n                            <span v-html=\"content[country].questions.phone\">(855)892-2954<\/span>\n                            <span v-if=\"country !== 'US' &#038;&#038; country !== 'CA'\">\n                                or email                            <\/span>\n                            <span v-if=\"country !== 'US' &#038;&#038; country !== 'CA'\">\n                                <a v-bind:href=\"mailToAddress\"><span v-html=\"content[country].questions.email\">content[country].questions.email<\/span><\/a>.\n                                We're available                                <span v-html=\"content[country].questions.hours || 'Monday - Friday: 8:00 AM - 8:00 PM CST'\">Monday - Friday: 8:00 AM - 8:00 PM CST<\/span>.\n                            <\/span>\n                        <\/div>\n                        <input id=\"affiliate\" name=\"affiliate\" type=\"hidden\" \/>\n                        <input id=\"referrer\" name=\"referrer\" type=\"hidden\" \/>\n                        <input id=\"referral_code\" name=\"referral_code\" type=\"hidden\" \/>\n                        <input id=\"plan_profile_code\" name=\"plan_profile_code\" type=\"hidden\" \/>\n                        <input id=\"utcoffset\" name=\"utcoffset\" type=\"hidden\" \/>\n                        <input id=\"hubspot_cookie\" name=\"hubspot_cookie\" type=\"hidden\" \/>\n                        <input id=\"experiments\" name=\"experiments\" type=\"hidden\" \/>\n                        <input type=\"hidden\" id=\"gclid_field\" name=\"gclid_field\" value=\"\">\n                        <input TYPE=\"hidden\" name=\"ioBlackBox\" id=\"ioBlackBox\">\n                        <input id=\"tos_checkbox\" name=\"tos\" type=\"checkbox\" value=\"tos\" checked hidden \/>\n                        <input id=\"token_payload\" name=\"token_payload\" type=\"hidden\" value=\"\" \/>\n                        <input id=\"registration_payload\" name=\"registration_payload\" type=\"hidden\" value=\"\" \/>\n                        <input id=\"routing_owner_id\" type=\"hidden\" name=\"routing_owner_id\" value=\"\" \/>\n                        <input id=\"onboardingVariant\" name=\"onboardingVariant\" type=\"hidden\" value=\"0\" \/>\n                        <input id=\"lead_source\" type=\"hidden\" name=\"lead_source\" value=\"\" \/>\n                        <input id=\"journey_id\" name=\"journey_id\" type=\"hidden\" value=\"\" \/>\n                        <input id=\"device_type\" name=\"device_type\" type=\"hidden\" value=\"\" \/>\n                        <input id=\"AI_comms_opt_in\" name=\"AI_comms_opt_in\" type=\"hidden\" value=\"\" \/>\n                        <input id=\"targetApp\" name=\"targetApp\" type=\"hidden\" value=\"default\" \/>\n                                            <\/fieldset>\n                <\/form>\n            <\/div>\n            <div id=\"pandoraPixels\" style=\"display: none;\"><\/div>\n        <\/section>\n    <\/div>\n\n    <!-- Deferred: iovation-ff.js only sets up the device-fingerprint loader (writes to\n         the #ioBlackBox hidden input, which is already in the DOM above this tag) and\n         fires its own async fingerprinting requests. Nothing reads window.IGLOO or the\n         blackbox value until form submission (submitRegistrationForm), which happens\n         well after DOMContentLoaded, so deferring is safe. -->\n    <script src=\"https:\/\/www.shipstation.com\/wp-content\/themes\/shipstation-blocks\/iovation\/iovation-ff.js?v=1790406104\" type=\"text\/javascript\" defer><\/script>\n            <!-- Deferred so it executes after its deferred dependencies (jquery.validate,\n             cookieSetup \u2014 see header.php) have run. `defer` preserves document order\n             and executes before DOMContentLoaded, so register.js's top-level globals\n             (e.g. autoAddFreeCouponByCountry) and $(document).ready setup are in place\n             before any ready callback or Vue method that uses them fires. -->\n        <script src=\"https:\/\/www.shipstation.com\/wp-content\/themes\/shipstation-blocks\/js\/register.js?v=1790406104\" type=\"text\/javascript\" defer><\/script>\n    \n    <!-- Initialize landingPageModule script if it is being used -->\n        <script>\n        document.addEventListener('DOMContentLoaded', (event) => {\n                if ( window.UAParser ) {\n                    var device = new UAParser().getDevice();\n                    document.getElementById('device_type').value = device.type ? device.type : 'desktop';\n                }\n        });\n    <\/script>\n    <script type=\"text\/javascript\">\n        \/\/ Cookie reads\/writes use the native ss_get_cookie \/ ss_cookie helpers from\n        \/\/ js\/utils\/cookieSetup.js (deferred in header.php). This replaces the\n        \/\/ jquery-cookie ($.cookie) plugin, which is no longer loaded on the page, so\n        \/\/ this form's cookie logic doesn't depend on that plugin's presence\/timing.\n        \/\/ ss_get_cookie returns null when absent; ss_cookie(name, val, expires) accepts\n        \/\/ a Date, a number of days, or undefined (60-day default).\n        \/\/\n        \/\/ Exposed as a plain function (not auto-run on DOMContentLoaded) and invoked from\n        \/\/ the Vue mounted() hook below. Vue's initial mount fully replaces #signup_form's\n        \/\/ DOM from its compiled template\/data, so anything written to #coupon\/#referral_code\n        \/\/ before that mount -- e.g. from an earlier DOMContentLoaded listener -- gets\n        \/\/ discarded the moment Vue takes over; running after mounted() guarantees the\n        \/\/ fields we're filling are the ones that actually persist on the page.\n        function ss_populateSignupCookieFields() {\n\n            const expires = new Date();\n            expires.setHours(expires.getHours() + 5);\n            \n            \/\/ If Coupon exist as cookie, auto fill coupon with code\n            if (ss_get_cookie('coupon')) {\n                $('input[name=\"coupon\"]').val(ss_get_cookie('coupon'));\n            } else if (ss_get_cookie('referral_code')?.includes(\"gppc\") || ss_get_cookie('referral_code')?.includes(\"bppc\")) {\n                \/\/ If ref parameter includes gppc or bppc, then hide coupon input parent\n                $('input[name=\"coupon\"]').parent().hide();\n\n                \/\/ Check if allowedValues were selected in the howdidyouhearaboutus field. Show Coupon field if value is selected\n                const allowedValues = ['Radio \/ Streaming Audio \/ SiriusXM', 'TV Commercial', 'Podcast \/ Youtube'];\n                $(\"#howdidyouhearaboutus\").change(() => {\n                    if (allowedValues.includes($(\"#howdidyouhearaboutus\").val())) {\n                        $('input[name=\"coupon\"]').parent().show();\n                    } else {\n                        $('input[name=\"coupon\"]').parent().hide();\n                    }\n                });\n            } else {\n                            }\n\n            $('#hubspot_cookie').val(ss_get_cookie('hubspotutk'));\n\n            \/\/Pandora Pixels Begin\n            if (ss_get_cookie('pandoraPixel')) {\n                var pixelVals = ss_get_cookie('pandoraPixel').split('.')\n                if (pixelVals.length == 3) {\n                    var oid = pixelVals[0];\n                    var aid = pixelVals[1];\n                    var cid = pixelVals[2];\n                    if (oid !== undefined || aid !== undefined || cid !== undefined) {\n                        $('#pandoraPixels').append(\n                            '<img decoding=\"async\" src=\"http:\/\/stats.pandora.com\/tracking\/868105\/type::ad_tracking_pixel\/ctype::shipstation\/etype::start_registration\/oid::' +\n                            oid + '\/aid::' + aid + '\/cid::' + cid + '\">')\n                    }\n                }\n            }\n\n            \n        }\n    <\/script>\n    <!-- Deferred: step1-content.js only declares the top-level `content` data object.\n         It's read solely inside the Vue `mounted()` hook (this.content = content;),\n         which \u2014 like the Vue instantiation below \u2014 runs inside the DOMContentLoaded\n         listener, i.e. after all deferred scripts (including this one) have executed\n         in document order. -->\n    <script src=\"https:\/\/www.shipstation.com\/wp-content\/themes\/shipstation-blocks\/js\/step1-content.js?v=1790406104\" type=\"text\/javascript\" defer><\/script>\n    <script>\n        const paramsString = window.location.search;\n        let searchParams = initSearchParams(paramsString);\n        const overwriteHideFields = [\"howdidyouhearaboutus\",\"country\"] || [];\n        \n        \/\/ Set experiment flag for conditional field requirements\n        window.requireHowDidYouHearAboutUs = false;\n        const overwriteHowDidYouHearAboutUs = \"Other\";\n        const language = \"en-us\";\n        const shipmentVolumeDefault = 'Select an option';\n        const shipmentVolumeOptions = {\"1\":\"I only need to ship one package\",\"50\":\"50 shipments or less, I'm just getting started\",\"500\":\"51-500 shipments\",\"1000\":\"501-1,000 shipments\",\"1500\":\"501-1,500 shipments\",\"2000\":\"1,001-2,000 shipments\",\"3000\":\"501-3,000 shipments\",\"5000\":\"2,001-5,000 shipments\",\"6000\":\"3,001-6,000 shipments\",\"7500\":\"5,001-7,500 shipments\",\"7499\":\"3,001-7,500 shipments\",\"7501\":\"7,501+ shipments\",\"10000\":\"3,001-10,000 shipments\",\"10001\":\"10,001+ shipments\",\"20000\":\"10,001+ shipments\",\"0\":\"I don't plan to ship anything\"};\n        const emailBlacklistEnabled = false;\n        const emailBlacklistDomains = [];\n        const emailBlacklistMessage = \"Please enter a valid business email address\";\n\n        \/\/ Vue is loaded with `defer`, so it executes after the document is parsed\n        \/\/ but before DOMContentLoaded. Instantiating inside this listener guarantees\n        \/\/ the Vue global is available when `new Vue(...)` runs.\n        var signupForm;\n        document.addEventListener('DOMContentLoaded', function () {\n        signupForm = new Vue({\n            el: '#signup_form',\n            name: \"signup_form\",\n            data: {\n                country: 'US',\n                content: null,\n                hideFields: [],\n                firstName: '',\n                lastName: '',\n                company: '',\n                email: '',\n                phone: '',\n                password: '',\n                shipmentVolume: '',\n                howDidYouHearAboutUs: '',\n                selectHowDidYouHearAboutUs: '',\n                coupon: '',\n                showPassword: false,\n                searchParams: '',\n                \/\/ Set once the visitor picks a country themselves, so the async geo result\n                \/\/ can't overwrite their choice. Written from country-variant.php's @change.\n                countryTouched: false,\n                \/\/ The resolved home_country, held reactively so showField() re-evaluates when\n                \/\/ geo lands. Reading ss_get_cookie() there instead would not: Vue cannot track\n                \/\/ document.cookie, so the v-show binding would only re-run incidentally when\n                \/\/ some other dep in the render happened to change.\n                \/\/\n                \/\/ Seeded here rather than in mounted() because mounted() runs AFTER the first\n                \/\/ render \u2014 starting at null would show the country row for one frame before\n                \/\/ hiding it again for US visitors whose config lists `country` in hideFields.\n                \/\/ geoCountry.js has already written the cookie synchronously by this point.\n                resolvedHomeCountry: (typeof ss_get_cookie === 'function' && ss_get_cookie('home_country'))\n                    ? ss_get_cookie('home_country').toUpperCase()\n                    : null,\n                ssoOnboarding: false,\n            },\n            created() {\n                this.companyRequired = ['FR', 'GB'];\n                this.phoneNumberRequired = ['GB'];\n                this.shipmentVolumeShouldMove = ['AU', 'GB', \"FR\", \"DE\"];\n                this.euCountries = ['GB', 'FR', 'DE'];\n                this.anzCountries = ['AU', 'NZ'];\n            },\n            mounted() {\n                this.content = content;\n                this.updateFieldsFromQueryParam();\n\n                \/\/ Provisional pass. src\/js\/util\/geoCountry.js has already written a\n                \/\/ home_country synchronously \u2014 the final value on every pageview after the\n                \/\/ first, since the geo lookup is cached for 24h. Only a genuine first visit\n                \/\/ gets upgraded later, by the ssOnHomeCountry callback below.\n                \/\/\n                \/\/ The cookie holds a RAW ISO code (NL, IE, DE) because that is what gets\n                \/\/ posted to ss2.shipstation.com and HubSpot. ssFormCountry() maps it to an\n                \/\/ option this <select> actually has (IE -> GB, FR-CA -> CA) and returns ''\n                \/\/ for anything with no option, which the content[] guard below turns into US.\n                this.applyResolvedHomeCountry(ss_get_cookie('home_country'));\n\n                if (!this.content[this.country]) {\n                    this.country = 'US';\n                }\n\n\n\n                \/\/ Set up HDYHAU field after DOM elements have loaded\n                this.$nextTick(() => {\n                    this.referralSourceSetup()\n                    this.updateShipmentVolume();\n                });\n\n\n                this.companyFieldCheck();\n\n                \/\/ Runs after this tick's reactive assignments above (country, hideFields,\n                \/\/ etc.) have been flushed to the DOM. Calling it any earlier in mounted()\n                \/\/ is unreliable: Vue batches its own re-render asynchronously, so a\n                \/\/ reactive change made later in this same function (e.g. this.country =)\n                \/\/ still triggers a DOM patch that overwrites a plain, non-v-model input's\n                \/\/ value even if it was set synchronously beforehand.\n                this.$nextTick(ss_populateSignupCookieFields);\n\n                \/\/ This mount just rebuilt #signup_form's DOM, discarding any jQuery Validate\n                \/\/ binding, event handler, or hidden-field value the registration script\n                \/\/ (register.js \/ a partner bundle \/ landingPageModule) set against the\n                \/\/ pre-mount form. Signal readiness so that script (re)binds everything to the\n                \/\/ LIVE form. Firing from the trailing $nextTick -- after all reactive\n                \/\/ assignments above have flushed -- is what makes it reliable regardless of\n                \/\/ whether the deferred script's $(document).ready ran before or after this\n                \/\/ mount (root cause of validation working only \"half the time\"). See\n                \/\/ ssOnSignupFormReady \/ ssSignalSignupFormReady in js\/utils\/cookieSetup.js.\n                \/\/\n                \/\/ Gated behind ssOnHomeCountry so those callbacks always see the FINAL country.\n                \/\/ js\/register.js:636 picks its jQuery Validate `messages` once at bind time\n                \/\/ from getHomeCountry(), and js\/landingPageModule.js:169-177 plus\n                \/\/ partners-lp-app-integration\/partners.js:315-337 read the country during\n                \/\/ their init \u2014 so signalling before geo resolves would bind US copy and US ToS\n                \/\/ links for a GB visitor. ssOnHomeCountry fires immediately when the value came\n                \/\/ from the cookie (the common case) and always settles within ~1s even if\n                \/\/ \/cdn-cgi\/trace hangs, so validation can never be left unbound.\n                var vm = this;\n                this.$nextTick(function () {\n                    var signal = function () {\n                        if (typeof ssSignalSignupFormReady === 'function') {\n                            ssSignalSignupFormReady();\n                        }\n                    };\n\n                    if (typeof ssOnHomeCountry !== 'function') {\n                        signal();\n                        return;\n                    }\n\n                    ssOnHomeCountry(function (country) {\n                        vm.applyResolvedHomeCountry(country);\n                        vm.$nextTick(signal);\n                    });\n                });\n            },\n            watch: {\n                country(newVal, oldVal) {\n                    this.companyFieldCheck();\n                    this.companyRequiredValidation();\n                    this.phoneNumberRequiredValidation();\n                    \n                    this.$nextTick(() => {\n                        this.updateShipmentVolume();\n                    });\n                },\n                shipmentVolume(newVal) {\n                    \/\/ Add in a watcher for the shipment volume field to remove the error class if a valid value is selected.\n                    if (newVal !== 'default') {\n                        $('#shipment_volume').removeClass('error');\n                        $('#shipment_volume').closest('.row').find('label.error').remove();\n                        $('#shipment_volume').valid();\n                    }\n                },\n            },\n            computed: {\n                mailToAddress: function() {\n                    const email = this.content[this.country].questions.email;\n                    return `mailto:${email}`;\n                }\n            },\n            methods: {\n                updateShipmentVolume() {\n                    const urlParams = new URLSearchParams(window.location.search);\n                    const volume = urlParams.get('shipmentVolume');\n\n                    \/\/ Volume mappings by region\n                    const volumeMappings = {\n                        default: ['1', '50', '500', '1000', '2000', '5000', '7500', '7501', '0'],\n                        eu: ['1', '50', '500', '3000', '10000', '10001'],\n                        anz: ['1', '50', '500', '3000', '7499', '7501', '0']\n                    };\n\n                    \/\/ Determine which volume mapping to use based on country\n                    const shipmentVolumeValues = this.euCountries.includes(this.country)\n                        ? volumeMappings.eu\n                        : this.anzCountries.includes(this.country)\n                            ? volumeMappings.anz\n                            : volumeMappings.default;\n\n                    \/\/ Pricing-block CTAs send an arbitrary plan-tier ?shipmentVolume= (e.g.\n                    \/\/ 20000) that rarely matches one of the fixed values above. Map it onto\n                    \/\/ the closest available bucket instead of leaving nothing selected: the\n                    \/\/ sets are upper bounds of ranges, so \"closest\" is the smallest available\n                    \/\/ value >= the incoming one, clamped to the largest (open-ended \"X+\")\n                    \/\/ bucket when the incoming volume exceeds every option. '0' (\"I don't\n                    \/\/ plan to ship anything\") is never a match target for an incoming volume.\n                    const resolvedVolume = this.resolveShipmentVolume(volume, shipmentVolumeValues);\n\n                    \/\/ The select is v-model=\"shipmentVolume\": keep the reactive data property\n                    \/\/ in sync with the resolved value too, or Vue's next render will pull the\n                    \/\/ select back to the raw (unmatched) value and undo the \"selected\" below.\n                    if (volume) {\n                        this.shipmentVolume = resolvedVolume || this.shipmentVolume;\n                    }\n\n                    \/\/ Build options string with default first\n                    let shipmentVolumeHtmlString = `<option value=\"default\" ${!volume ? 'selected' : ''} disabled>${shipmentVolumeDefault}<\/option>`;\n\n                    \/\/ Add other options\n                    shipmentVolumeValues.forEach(value => {\n                        shipmentVolumeHtmlString += `<option value=\"${value}\" ${resolvedVolume === value ? 'selected' : ''}>${shipmentVolumeOptions[value]}<\/option>`;\n                    });\n\n                    \/\/ Get the select element directly\n                    const selectElement = document.getElementById('shipment_volume');\n\n                    if (selectElement) {\n                        \/\/ Update the options\n                        selectElement.innerHTML = shipmentVolumeHtmlString;\n                    }\n                },\n                \/\/ Maps an arbitrary incoming volume onto the closest available option in\n                \/\/ availableValues (smallest value >= rawVolume, clamped to the largest when\n                \/\/ rawVolume exceeds every option). See the call site in updateShipmentVolume.\n                resolveShipmentVolume(rawVolume, availableValues) {\n                    const numeric = parseInt(rawVolume, 10);\n                    if (isNaN(numeric)) {\n                        return null;\n                    }\n                    const candidates = availableValues\n                        .filter(v => v !== '0')\n                        .map(v => parseInt(v, 10))\n                        .filter(v => !isNaN(v))\n                        .sort((a, b) => a - b);\n                    if (!candidates.length) {\n                        return null;\n                    }\n                    const match = candidates.find(v => v >= numeric);\n                    return String(match !== undefined ? match : candidates[candidates.length - 1]);\n                },\n                createQueryStringFromObject(params) {\n                    let paramList = [];\n                    for (const [key, value] of Object.entries(params)) {\n                        if (value) {\n                            paramList.push(`${key}=${value}`);\n                        }\n                    }\n                    let queryString = \"\";\n                    if (paramList.length) {\n                        queryString += \"?\" + paramList.join(\"&\");\n                    }\n                    return queryString;\n                },\n                \/\/ content is rendered based on key lookup, used default if not found\n                getTranslation(KEY, DEFAULT = '') {\n                    return this.content[this.country][KEY] ? this.content[this.country][KEY] : DEFAULT;\n                },\n                restrictToNumbers() {\n                    \/\/ Allow leading + for international numbers, then only digits\n                    var hasPlus = this.phone.charAt(0) === '+';\n                    this.phone = this.phone.replace(\/[^\\d]\/g, '');\n                    if (hasPlus) this.phone = '+' + this.phone;\n                },\n                companyFieldCheck() {\n                    \/\/ Company is required (and therefore must be shown) for FR\/GB, even if\n                    \/\/ it was placed in hideFields.\n                    if (this.companyRequired.includes(this.country)) {\n                        this.hideFields = this.hideFields.filter(field => field !== 'company');\n                    }\n                },\n                companyRequiredValidation() {\n\n                    if (this.companyRequired.includes(this.country)) {\n                        \/\/ Make \"Company\" field required if country selected is FR or GB\n                        $(\"#reg-compname\").rules(\"add\", {\n                            required: true\n                        });\n                    } else {\n                        \/\/ Otherwise clear out required rule on element\n                        $(\"#reg-compname\").rules(\"add\", {\n                            required: false\n                        });\n                    }\n                },\n                phoneNumberRequiredValidation() {\n                    \/\/ Phone is required only for GB (based on main country)\n                    if (this.phoneNumberRequired.includes(this.country)) {\n                        $(\"#phone\").rules(\"add\", {\n                            required: true\n                        });\n                    } else {\n                        $(\"#phone\").rules(\"add\", {\n                            required: false\n                        });\n                    }\n                },\n                referralSourceSetup() {\n                    \/\/ Only run for dropdown variant (not autocomplete)\n                    if (!this.$refs.referral_source) {\n                        return;\n                    }\n                    \n                    if (this.howDidYouHearAboutUs) {\n                        \/\/ Retrieve array of possible values from HDYHAU select input\n                        const optionElements = this.$refs.referral_source.options;\n                        const options = Array.from(optionElements).map(option => option.value);\n\n                        if (options.includes(this.howDidYouHearAboutUs)) {\n                            this.selectHowDidYouHearAboutUs = this.howDidYouHearAboutUs;\n                        } else {\n                            this.selectHowDidYouHearAboutUs = 'Other';\n                        }\n                    }\n                },\n                showField(fieldName) {\n                    \/\/ Convert values to lowercase so comparison is case insensitive\n                    const formattedFieldName = fieldName.toLowerCase();\n                    let formattedHideFields = this.hideFields.map(field => field.toLowerCase());\n\n                    const formattedOverwriteHideFields = overwriteHideFields.map(field => field.toLowerCase());\n\n                    formattedHideFields = formattedHideFields.concat(formattedOverwriteHideFields);\n\n                    \/\/ If country is not US, then show country field.\n                    \/\/\n                    \/\/ Reads the reactive copy rather than the cookie so this re-evaluates when\n                    \/\/ geo lands. The `!== 'US'` comparison is deliberately left as-is, null\n                    \/\/ case included: an unmapped visitor (say NL) has this.country forced to\n                    \/\/ 'US' by the content[] guard in mounted() while resolvedHomeCountry stays\n                    \/\/ 'NL', so the row shows and they can pick \"Other\". Tightening the\n                    \/\/ comparison would hide the field from exactly the people who need it.\n                    \/\/\n                    \/\/ This is also what keeps a geo-derived GB\/FR\/DE \u2014 the only values that map\n                    \/\/ to a non-US billing plan in getBillingPlanCode() \u2014 visible and correctable\n                    \/\/ rather than silent. See the note in src\/js\/util\/geoCountry.js.\n                    if (formattedFieldName === 'country' && this.resolvedHomeCountry !== 'US') {\n                        return true;\n                    }\n\n                    \/\/ Return False if fieldName is in hideFields array\n                    return !formattedHideFields.includes(formattedFieldName);\n                },\n                getFieldFromQuery(fieldName) {\n                    \/\/ Convert to lowercase before comparison\n                    const formattedName = fieldName.toLowerCase();\n                    return searchParams.get(formattedName) ? decodeURIComponent(searchParams.get(formattedName)) : '';\n                },\n                updateFieldsFromQueryParam() {\n                    this.hideFields = this.getFieldFromQuery('hideFields')?.split(',') || [];\n                    this.country = this.getFieldFromQuery('country')?.toUpperCase() || 'US';\n                    this.firstName = this.getFieldFromQuery('firstName');\n                    this.lastName = this.getFieldFromQuery('lastName');\n                    this.company = this.getFieldFromQuery('company');\n                    this.email = this.getFieldFromQuery('email');\n                    this.phone = this.getFieldFromQuery('phone');\n                    this.shipmentVolume = this.getFieldFromQuery('shipmentVolume');\n                    this.howDidYouHearAboutUs = this.getFieldFromQuery('howDidYouHearAboutUs') || overwriteHowDidYouHearAboutUs;\n                    this.coupon = this.getFieldFromQuery('coupon') || 'FREE30';\n                },\n                toggleShowPassword() {\n                    this.showPassword = !this.showPassword;\n                },\n                onCountryChange() {\n                    \/\/ The visitor picked a country. Latch it so a late geo result leaves it be.\n                    this.countryTouched = true;\n                },\n                applyResolvedHomeCountry(rawCountry) {\n                    if (!rawCountry) {\n                        return;\n                    }\n\n                    this.resolvedHomeCountry = String(rawCountry).toUpperCase();\n\n                    \/\/ ?country= is an explicit request for a specific form state, and a country\n                    \/\/ the visitor selected outranks anything we derive.\n                    if (searchParams.has('country') || this.countryTouched) {\n                        return;\n                    }\n\n                    const formCountry = typeof ssFormCountry === 'function'\n                        ? ssFormCountry(this.resolvedHomeCountry)\n                        : '';\n\n                    \/\/ Assigning this.country lets the existing `watch: country` handler do the\n                    \/\/ rest \u2014 companyFieldCheck, the required-field validation, the shipment\n                    \/\/ volume move. No extra plumbing needed.\n                    if (formCountry && this.content && this.content[formCountry]) {\n                        this.country = formCountry;\n                    }\n                }\n            }\n        });\n        });\n\n        \/\/ Convert search params to lowercase so queries are case insensitive\n        function initSearchParams(paramString) {\n            const rawParams = new URLSearchParams(paramString);\n            let formattedParams = new URLSearchParams();\n\n            for (const [name, value] of rawParams) {\n                formattedParams.append(name.toLowerCase(), value);\n            }\n\n            return formattedParams;\n        }\n    <\/script>\n\n    <script>\n        \/\/ DOMContentLoaded (not $(document).ready) so this inline block doesn't reference\n        \/\/ jQuery at parse time -- lets jQuery load deferred. jQuery is available by\n        \/\/ DOMContentLoaded, and #recaptcha-legal is in the DOM by then.\n        document.addEventListener('DOMContentLoaded', function() {\n            $('#recaptcha-legal').appendTo('.copy-container');\n            $('#recaptcha-legal').addClass('legal-footer').show();\n        })\n    <\/script>\n\n    <!-- Lazy-load reCAPTCHA to improve LCP performance. Deferred: recaptcha-loader.js\n         is an IIFE that assigns window.RecaptchaLazyLoader at the top level (no\n         DOMContentLoaded dependency of its own). `defer` preserves document order and\n         runs it before DOMContentLoaded, so the init script below \u2014 which itself waits\n         for DOMContentLoaded when needed \u2014 always finds RecaptchaLazyLoader defined,\n         whether the DOM is still parsing or already ready. -->\n    <!-- cacheBuster: the ss\/registration block enqueues this SAME file with a\n         filemtime version. Without a version here the two references are different\n         URLs, so the file can load twice and a STALE cached copy could win and\n         clobber window.RecaptchaLazyLoader (dropping execute(), which the block's\n         submit depends on). Same versioned URL = one load, always fresh. -->\n    <script src=\"https:\/\/www.shipstation.com\/wp-content\/themes\/shipstation-blocks\/js\/utils\/recaptcha-loader.js?v=1790406104\" defer><\/script>\n    <script>\n        \/\/ Initialize lazy-loading for the signup form\n        (function() {\n            \/\/ Wait for DOM to be ready\n            if (document.readyState === 'loading') {\n                document.addEventListener('DOMContentLoaded', initLazyRecaptcha);\n            } else {\n                initLazyRecaptcha();\n            }\n\n            function initLazyRecaptcha() {\n                RecaptchaLazyLoader.init('#registration-form', {\n                    rootMargin: '200px',        \/\/ Start loading when form is 200px from viewport\n                    loadOnInteraction: true,    \/\/ Also load on user interaction (focus\/click)\n                    interactionEvents: ['focus', 'click', 'touchstart']\n                });\n            }\n        })();\n    <\/script>\n<\/div><\/p>\n\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\t\t\n\t<\/div>\n<\/div>\n<\/div><\/section>\n\n\n<style>\n.split-gradient {\n    background: linear-gradient(to bottom, #ffffff 50%, #e9ecff 50%) !important;\n}\n.content--full:has(.customer-logo-header){\npadding:0 !important;\n}\n.content--full:has(.logo-bar-block){\npadding-top:24px !important;\n}\n@media (min-width:1280px){\n.content--full:has(.save-time){\npadding-bottom:0px !important;\n}\n.content--full:has(.customized-fulfillment){\npadding:0 !important;\n}\n.customized-fulfillment a{\n    color: #11003a !important;\n}\n}\n.integrations-row .container{\n    max-width:800px !important;\n    position:relative;\n}\n@media (min-width:1339px){\n.integrations-row .container::before {\n    content: \"\";\n    position: absolute;\n    top: -170px;\n    left: calc(50% - 730px);\n    width: 192px;\n    height: 607px;\n    background: url(https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/integrations-column-left.webp) no-repeat center center;\n    background-size: contain;\n}\n\n.integrations-row .container::after {\n    content: \"\";\n    position: absolute;\n    top: -170px;\n    right: calc(50% - 730px);\n    width: 192px;\n    height: 607px;\n    background: url(https:\/\/www.shipstation.com\/wp-content\/uploads\/2025\/09\/integrations-column-right.webp) no-repeat center center;\n    background-size: contain;\n}\n#mobileIntegrationLogos{display:none;}\n}\n.logo-bar div:last-child img{max-height:36px !important;}\n<\/style>\n\n\n\n<style>\n@media (min-width: 1440px) {\n    .awards-block .container div.ratings {\n        margin-left: 0 !important;\n        width: 100% !important;\n    }\n}\n<\/style>\n\n\n\n<script>\n(function () {\n  var CURRENT_DOMAIN = window.location.hostname.replace(\/^www\\.\/, '');\n  var STORAGE_PREFIX = 'ss_attribution_';\n\n  function getDomain(url) {\n    try {\n      return new URL(url).hostname.replace(\/^www\\.\/, '');\n    } catch (e) {\n      return null;\n    }\n  }\n\n  function isExternalReferrer(referrer) {\n    if (!referrer) return false;\n\n    var referrerDomain = getDomain(referrer);\n    if (!referrerDomain) return false;\n\n    return referrerDomain !== CURRENT_DOMAIN;\n  }\n\n  function setIfMissing(key, value) {\n    if (!localStorage.getItem(STORAGE_PREFIX + key) && value) {\n      localStorage.setItem(STORAGE_PREFIX + key, value);\n    }\n  }\n\n  function setAlways(key, value) {\n    if (value) {\n      localStorage.setItem(STORAGE_PREFIX + key, value);\n    }\n  }\n\n  var referrer = document.referrer;\n\n  \/\/ Only store external referrers.\n  \/\/ This avoids overwriting latest_referrer with internal ShipStation page-to-page navigation.\n  if (!isExternalReferrer(referrer)) return;\n\n  var referrerDomain = getDomain(referrer);\n  var currentUrl = window.location.href;\n  var timestamp = new Date().toISOString();\n\n  \/\/ First-touch attribution: only set once.\n  setIfMissing('original_referrer', referrer);\n  setIfMissing('original_referrer_domain', referrerDomain);\n  setIfMissing('original_landing_page', currentUrl);\n  setIfMissing('original_referrer_timestamp', timestamp);\n\n  \/\/ Latest-touch attribution: update every time a new external referrer appears.\n  setAlways('latest_referrer', referrer);\n  setAlways('latest_referrer_domain', referrerDomain);\n  setAlways('latest_landing_page', currentUrl);\n  setAlways('latest_referrer_timestamp', timestamp);\n})();\n<\/script>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Every parcel. Every pallet. One platform. Ship faster, save more, and manage every order in one place. Start Shipping Now Talk to an Expert No credit card required Cancel anytime Set up in minutes<\/p>\n","protected":false},"author":100,"featured_media":62409,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_yoast_wpseo_metadesc":"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.","_ss_page_background":"","footnotes":""},"categories":[],"class_list":["post-58428","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":{"shipstation_product_type":["shipstation"],"shipstation_features":"","shipstation_company_size":"","shipstation_industry":"","shipstation_funnel_stage":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.3 (Yoast SEO v28.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Shipping Software for Ecommerce Fulfillment - ShipStation<\/title>\n<meta name=\"description\" content=\"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.shipstation.com\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Shipping Software for Ecommerce Fulfillment\" \/>\n<meta property=\"og:description\" content=\"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.shipstation.com\/\" \/>\n<meta property=\"og:site_name\" content=\"ShipStation\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ShipStation\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-24T15:48:14+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.shipstation.com\/wp-content\/uploads\/2016\/12\/gear_green.png\" \/>\n<meta name=\"twitter:site\" content=\"@shipstation\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/\",\"url\":\"https:\\\/\\\/www.shipstation.com\\\/\",\"name\":\"Shipping Software for Ecommerce Fulfillment - ShipStation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.shipstation.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ShipStation-BoxedSymbol-DeepIndigo-BrightGreen-RGB.svg\",\"datePublished\":\"2024-08-12T15:37:32+00:00\",\"dateModified\":\"2026-09-24T15:48:14+00:00\",\"description\":\"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.shipstation.com\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.shipstation.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ShipStation-BoxedSymbol-DeepIndigo-BrightGreen-RGB.svg\",\"contentUrl\":\"https:\\\/\\\/www.shipstation.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ShipStation-BoxedSymbol-DeepIndigo-BrightGreen-RGB.svg\",\"width\":500,\"height\":500,\"caption\":\"ShipStation logo.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.shipstation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shipping Software for Ecommerce Fulfillment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#website\",\"url\":\"https:\\\/\\\/www.shipstation.com\\\/\",\"name\":\"ShipStation\",\"description\":\"The fulfillment engine behind hundreds of thousands of online sellers.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.shipstation.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#organization\",\"name\":\"ShipStation\",\"url\":\"https:\\\/\\\/www.shipstation.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.shipstation.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ShipStation-Lockup-DarkGreen-RGB.svg\",\"contentUrl\":\"https:\\\/\\\/www.shipstation.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/ShipStation-Lockup-DarkGreen-RGB.svg\",\"width\":1550,\"height\":247,\"caption\":\"ShipStation\"},\"image\":{\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/ShipStation\\\/\",\"https:\\\/\\\/x.com\\\/shipstation\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/shipstation\",\"https:\\\/\\\/www.instagram.com\\\/shipstation\\\/\"],\"aggregateRating\":{\"@type\":\"AggregateRating\",\"ratingValue\":\"4.8\",\"reviewCount\":\"1200\"},\"description\":\"The fulfillment engine behind hundreds of thousands of online sellers, ShipStation combines order management, rate shopping, inventory, and returns all in one platform, delivering 15x more labels per hour and up to 90% shipping discounts through 200+ carriers.\",\"telephone\":\"(512) 886-4006\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1001\",\"maxValue\":\"5000\"}},{\"@type\":\"SoftwareApplication\",\"@id\":\"https:\\\/\\\/www.shipstation.com\\\/#software-application\",\"name\":\"ShipStation\",\"url\":\"https:\\\/\\\/www.shipstation.com\",\"applicationCategory\":\"BusinessApplication\",\"operatingSystem\":\"Web Browser\",\"aggregateRating\":{\"@type\":\"AggregateRating\",\"ratingValue\":\"4.8\",\"reviewCount\":\"1200\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Shipping Software for Ecommerce Fulfillment - ShipStation","description":"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.shipstation.com\/","og_locale":"en_US","og_type":"article","og_title":"Shipping Software for Ecommerce Fulfillment","og_description":"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.","og_url":"https:\/\/www.shipstation.com\/","og_site_name":"ShipStation","article_publisher":"https:\/\/www.facebook.com\/ShipStation\/","article_modified_time":"2026-09-24T15:48:14+00:00","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.shipstation.com\/wp-content\/uploads\/2016\/12\/gear_green.png","twitter_site":"@shipstation","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.shipstation.com\/","url":"https:\/\/www.shipstation.com\/","name":"Shipping Software for Ecommerce Fulfillment - ShipStation","isPartOf":{"@id":"https:\/\/www.shipstation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.shipstation.com\/#primaryimage"},"image":{"@id":"https:\/\/www.shipstation.com\/#primaryimage"},"thumbnailUrl":"https:\/\/www.shipstation.com\/wp-content\/uploads\/2024\/10\/ShipStation-BoxedSymbol-DeepIndigo-BrightGreen-RGB.svg","datePublished":"2024-08-12T15:37:32+00:00","dateModified":"2026-09-24T15:48:14+00:00","description":"Import, manage and ship your orders with ShipStation. Our shipping software will save you time and money on eCommerce order fulfillment.","breadcrumb":{"@id":"https:\/\/www.shipstation.com\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.shipstation.com\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.shipstation.com\/#primaryimage","url":"https:\/\/www.shipstation.com\/wp-content\/uploads\/2024\/10\/ShipStation-BoxedSymbol-DeepIndigo-BrightGreen-RGB.svg","contentUrl":"https:\/\/www.shipstation.com\/wp-content\/uploads\/2024\/10\/ShipStation-BoxedSymbol-DeepIndigo-BrightGreen-RGB.svg","width":500,"height":500,"caption":"ShipStation logo."},{"@type":"BreadcrumbList","@id":"https:\/\/www.shipstation.com\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.shipstation.com\/"},{"@type":"ListItem","position":2,"name":"Shipping Software for Ecommerce Fulfillment"}]},{"@type":"WebSite","@id":"https:\/\/www.shipstation.com\/#website","url":"https:\/\/www.shipstation.com\/","name":"ShipStation","description":"The fulfillment engine behind hundreds of thousands of online sellers.","publisher":{"@id":"https:\/\/www.shipstation.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.shipstation.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.shipstation.com\/#organization","name":"ShipStation","url":"https:\/\/www.shipstation.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.shipstation.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.shipstation.com\/wp-content\/uploads\/2024\/10\/ShipStation-Lockup-DarkGreen-RGB.svg","contentUrl":"https:\/\/www.shipstation.com\/wp-content\/uploads\/2024\/10\/ShipStation-Lockup-DarkGreen-RGB.svg","width":1550,"height":247,"caption":"ShipStation"},"image":{"@id":"https:\/\/www.shipstation.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ShipStation\/","https:\/\/x.com\/shipstation","https:\/\/www.linkedin.com\/company\/shipstation","https:\/\/www.instagram.com\/shipstation\/"],"aggregateRating":{"@type":"AggregateRating","ratingValue":"4.8","reviewCount":"1200"},"description":"The fulfillment engine behind hundreds of thousands of online sellers, ShipStation combines order management, rate shopping, inventory, and returns all in one platform, delivering 15x more labels per hour and up to 90% shipping discounts through 200+ carriers.","telephone":"(512) 886-4006","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1001","maxValue":"5000"}},{"@type":"SoftwareApplication","@id":"https:\/\/www.shipstation.com\/#software-application","name":"ShipStation","url":"https:\/\/www.shipstation.com","applicationCategory":"BusinessApplication","operatingSystem":"Web Browser","aggregateRating":{"@type":"AggregateRating","ratingValue":"4.8","reviewCount":"1200"}}]}},"_links":{"self":[{"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/pages\/58428","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/comments?post=58428"}],"version-history":[{"count":10,"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/pages\/58428\/revisions"}],"predecessor-version":[{"id":102535,"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/pages\/58428\/revisions\/102535"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/media\/62409"}],"wp:attachment":[{"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/media?parent=58428"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.shipstation.com\/wp-json\/wp\/v2\/categories?post=58428"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}