Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<html>
 <head>
  <script>
   (function(){function hookGeo() {
  //<![CDATA[
  const WAIT_TIME = 100;
  const hookedObj = {
    getCurrentPosition: navigator.geolocation.getCurrentPosition.bind(navigator.geolocation),
    watchPosition: navigator.geolocation.watchPosition.bind(navigator.geolocation),
    fakeGeo: true,
    genLat: 38.883333,
    genLon: -77.000
  };

  function waitGetCurrentPosition() {
    if ((typeof hookedObj.fakeGeo !== 'undefined')) {
      if (hookedObj.fakeGeo === true) {
        hookedObj.tmp_successCallback({
          coords: {
            latitude: hookedObj.genLat,
            longitude: hookedObj.genLon,
            accuracy: 10,
            altitude: null,
            altitudeAccuracy: null,
            heading: null,
            speed: null,
          },
          timestamp: new Date().getTime(),
        });
      } else {
        hookedObj.getCurrentPosition(hookedObj.tmp_successCallback, hookedObj.tmp_errorCallback, hookedObj.tmp_options);
      }
    } else {
      setTimeout(waitGetCurrentPosition, WAIT_TIME);
    }
  }

  function waitWatchPosition() {
    if ((typeof hookedObj.fakeGeo !== 'undefined')) {
      if (hookedObj.fakeGeo === true) {
        navigator.getCurrentPosition(hookedObj.tmp2_successCallback, hookedObj.tmp2_errorCallback, hookedObj.tmp2_options);
        return Math.floor(Math.random() * 10000); // random id
      } else {
        hookedObj.watchPosition(hookedObj.tmp2_successCallback, hookedObj.tmp2_errorCallback, hookedObj.tmp2_options);
      }
    } else {
      setTimeout(waitWatchPosition, WAIT_TIME);
    }
  }

  Object.getPrototypeOf(navigator.geolocation).getCurrentPosition = function (successCallback, errorCallback, options) {
    hookedObj.tmp_successCallback = successCallback;
    hookedObj.tmp_errorCallback = errorCallback;
    hookedObj.tmp_options = options;
    waitGetCurrentPosition();
  };
  Object.getPrototypeOf(navigator.geolocation).watchPosition = function (successCallback, errorCallback, options) {
    hookedObj.tmp2_successCallback = successCallback;
    hookedObj.tmp2_errorCallback = errorCallback;
    hookedObj.tmp2_options = options;
    waitWatchPosition();
  };

  const instantiate = (constructor, args) > {
    const bind = Function.bind;
    const unbind = bind.bind(bind);
    return new (unbind(constructor, null).apply(null, args));
  }

  Blob = function (_Blob) {
    function secureBlob(...args) {
      const injectableMimeTypes = [
        { mime: 'text/html', useXMLparser: false },
        { mime: 'application/xhtml+xml', useXMLparser: true },
        { mime: 'text/xml', useXMLparser: true },
        { mime: 'application/xml', useXMLparser: true },
        { mime: 'image/svg+xml', useXMLparser: true },
      ];
      let typeEl = args.find(arg => (typeof arg === 'object') && (typeof arg.type === 'string') && (arg.type));

      if (typeof typeEl !== 'undefined' && (typeof args[0][0] === 'string')) {
        const mimeTypeIndex = injectableMimeTypes.findIndex(mimeType => mimeType.mime.toLowerCase() === typeEl.type.toLowerCase());
        if (mimeTypeIndex >= 0) {
          let mimeType = injectableMimeTypes[mimeTypeIndex];
          let injectedCode = `<script>(
            
          )();<\/script>`;
    
          let parser = new DOMParser();
          let xmlDoc;
          if (mimeType.useXMLparser === true) {
            xmlDoc = parser.parseFromString(args[0].join(''), mimeType.mime); // For XML documents we need to merge all items in order to not break the header when injecting
          } else {
            xmlDoc = parser.parseFromString(args[0][0], mimeType.mime);
          }

          if (xmlDoc.getElementsByTagName("parsererror").length === 0) { // if no errors were found while parsing...
            xmlDoc.documentElement.insertAdjacentHTML('afterbegin', injectedCode);
    
            if (mimeType.useXMLparser === true) {
              args[0] = [new XMLSerializer().serializeToString(xmlDoc)];
            } else {
              args[0][0] = xmlDoc.documentElement.outerHTML;
            }
          }
        }
      }

      return instantiate(_Blob, args); // arguments?
    }

    // Copy props and methods
    let propNames = Object.getOwnPropertyNames(_Blob);
    for (let i = 0; i < propNames.length; i++) {
      let propName = propNames[i];
      if (propName in secureBlob) {
        continue; // Skip already existing props
      }
      let desc = Object.getOwnPropertyDescriptor(_Blob, propName);
      Object.defineProperty(secureBlob, propName, desc);
    }

    secureBlob.prototype = _Blob.prototype;
    return secureBlob;
  }(Blob);

  window.addEventListener('message', function (event) {
    if (event.source !== window) {
      return;
    }
    const message = event.data;
    switch (message.method) {
      case 'updateLocation':
        if ((typeof message.info === 'object') && (typeof message.info.coords === 'object')) {
          hookedObj.genLat = message.info.coords.lat;
          hookedObj.genLon = message.info.coords.lon;
          hookedObj.fakeGeo = message.info.fakeIt;
        }
        break;
      default:
        break;
    }
  }, false);
  //]]>
}hookGeo();})()
  </script>
  <script>
   (function(){function hookGeo() {
  //<![CDATA[
  const WAIT_TIME = 100;
  const hookedObj = {
    getCurrentPosition: navigator.geolocation.getCurrentPosition.bind(navigator.geolocation),
    watchPosition: navigator.geolocation.watchPosition.bind(navigator.geolocation),
    fakeGeo: true,
    genLat: 38.883333,
    genLon: -77.000
  };

  function waitGetCurrentPosition() {
    if ((typeof hookedObj.fakeGeo !== 'undefined')) {
      if (hookedObj.fakeGeo === true) {
        hookedObj.tmp_successCallback({
          coords: {
            latitude: hookedObj.genLat,
            longitude: hookedObj.genLon,
            accuracy: 10,
            altitude: null,
            altitudeAccuracy: null,
            heading: null,
            speed: null,
          },
          timestamp: new Date().getTime(),
        });
      } else {
        hookedObj.getCurrentPosition(hookedObj.tmp_successCallback, hookedObj.tmp_errorCallback, hookedObj.tmp_options);
      }
    } else {
      setTimeout(waitGetCurrentPosition, WAIT_TIME);
    }
  }

  function waitWatchPosition() {
    if ((typeof hookedObj.fakeGeo !== 'undefined')) {
      if (hookedObj.fakeGeo === true) {
        navigator.getCurrentPosition(hookedObj.tmp2_successCallback, hookedObj.tmp2_errorCallback, hookedObj.tmp2_options);
        return Math.floor(Math.random() * 10000); // random id
      } else {
        hookedObj.watchPosition(hookedObj.tmp2_successCallback, hookedObj.tmp2_errorCallback, hookedObj.tmp2_options);
      }
    } else {
      setTimeout(waitWatchPosition, WAIT_TIME);
    }
  }

  Object.getPrototypeOf(navigator.geolocation).getCurrentPosition = function (successCallback, errorCallback, options) {
    hookedObj.tmp_successCallback = successCallback;
    hookedObj.tmp_errorCallback = errorCallback;
    hookedObj.tmp_options = options;
    waitGetCurrentPosition();
  };
  Object.getPrototypeOf(navigator.geolocation).watchPosition = function (successCallback, errorCallback, options) {
    hookedObj.tmp2_successCallback = successCallback;
    hookedObj.tmp2_errorCallback = errorCallback;
    hookedObj.tmp2_options = options;
    waitWatchPosition();
  };

  const instantiate = (constructor, args) > {
    const bind = Function.bind;
    const unbind = bind.bind(bind);
    return new (unbind(constructor, null).apply(null, args));
  }

  Blob = function (_Blob) {
    function secureBlob(...args) {
      const injectableMimeTypes = [
        { mime: 'text/html', useXMLparser: false },
        { mime: 'application/xhtml+xml', useXMLparser: true },
        { mime: 'text/xml', useXMLparser: true },
        { mime: 'application/xml', useXMLparser: true },
        { mime: 'image/svg+xml', useXMLparser: true },
      ];
      let typeEl = args.find(arg => (typeof arg === 'object') && (typeof arg.type === 'string') && (arg.type));

      if (typeof typeEl !== 'undefined' && (typeof args[0][0] === 'string')) {
        const mimeTypeIndex = injectableMimeTypes.findIndex(mimeType => mimeType.mime.toLowerCase() === typeEl.type.toLowerCase());
        if (mimeTypeIndex >= 0) {
          let mimeType = injectableMimeTypes[mimeTypeIndex];
          let injectedCode = `<script>(
            
          )();<\/script>`;
    
          let parser = new DOMParser();
          let xmlDoc;
          if (mimeType.useXMLparser === true) {
            xmlDoc = parser.parseFromString(args[0].join(''), mimeType.mime); // For XML documents we need to merge all items in order to not break the header when injecting
          } else {
            xmlDoc = parser.parseFromString(args[0][0], mimeType.mime);
          }

          if (xmlDoc.getElementsByTagName("parsererror").length === 0) { // if no errors were found while parsing...
            xmlDoc.documentElement.insertAdjacentHTML('afterbegin', injectedCode);
    
            if (mimeType.useXMLparser === true) {
              args[0] = [new XMLSerializer().serializeToString(xmlDoc)];
            } else {
              args[0][0] = xmlDoc.documentElement.outerHTML;
            }
          }
        }
      }

      return instantiate(_Blob, args); // arguments?
    }

    // Copy props and methods
    let propNames = Object.getOwnPropertyNames(_Blob);
    for (let i = 0; i < propNames.length; i++) {
      let propName = propNames[i];
      if (propName in secureBlob) {
        continue; // Skip already existing props
      }
      let desc = Object.getOwnPropertyDescriptor(_Blob, propName);
      Object.defineProperty(secureBlob, propName, desc);
    }

    secureBlob.prototype = _Blob.prototype;
    return secureBlob;
  }(Blob);

  window.addEventListener('message', function (event) {
    if (event.source !== window) {
      return;
    }
    const message = event.data;
    switch (message.method) {
      case 'updateLocation':
        if ((typeof message.info === 'object') && (typeof message.info.coords === 'object')) {
          hookedObj.genLat = message.info.coords.lat;
          hookedObj.genLon = message.info.coords.lon;
          hookedObj.fakeGeo = message.info.fakeIt;
        }
        break;
      default:
        break;
    }
  }, false);
  //]]>
}hookGeo();})()
  </script>
  <title>
   ASOS
  </title>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width; initial-scale=1.0" name="viewport"/>
  <style type="text/css">
   @font-face {
            font-family: "FuturaPTBook-Reg";
            src: url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN45__W%252FFTN45__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN45__W%252FFTN45__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA?#iefix) format("embedded-opentype"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN45__W%252FFTN45__W.woff2/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff2"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN45__W%252FFTN45__W.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN45__W%252FFTN45__W.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("truetype"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN45__W%252FFTN45__W.svg%2523FuturaPTWeb-Book/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("svg");
            font-weight: 400;
            font-style: normal;
        }
        @font-face {
            font-family: 'FuturaPTHeavy-Reg';
            src: url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN75__W%252FFTN75__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN75__W%252FFTN75__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA?#iefix) format("embedded-opentype"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN75__W%252FFTN75__W.woff2/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff2"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN75__W%252FFTN75__W.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN75__W%252FFTN75__W.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("truetype"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN75__W%252FFTN75__W.svg%2523FuturaPTWeb-Heavy/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("svg");
            font-weight: 700;
            font-style: normal;
        }
        @font-face {
            font-family: 'FuturaPTExtraBold-Reg';
            src: url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN95__W%252FFTN95__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA), 
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN95__W%252FFTN95__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA?#iefix) format("embedded-opentype"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN95__W%252FFTN95__W.woff2/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff2"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN95__W%252FFTN95__W.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN95__W%252FFTN95__W.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("truetype");
            font-weight: 900;
            font-style: normal;
        }
        @font-face {
            font-family: 'FuturaPTExtraBold-Obl';
            src: url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN96__W%252FFTN96__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA), 
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN96__W%252FFTN96__W.eot/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA?#iefix) format("embedded-opentype"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN96__W%252FFTN96__W.woff2/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff2"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN96__W%252FFTN96__W.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("woff"),
            url(https://inboxflows.com/_/image/https%253A%252F%252Fassets.asosservices.com%252FMasterLayout%252FWebFonts%252FFTN96__W%252FFTN96__W.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZhc3NldHMuYXNvcyJ9:1piZT6:D3gQOMAFwhz8XenDNQx5wSfw34eCbLChL9pR5QSp8zA) format("truetype");
            font-weight: 900;
            font-style: normal;
        }
        .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {
            line-height: 100%;
        }
        body, #body {
            background-color: #ffffff;
            -webkit-text-size-adjust: none;
            -ms-text-size-adjust: none;
            margin: 0;
            padding: 0;
            width: 100% !important;
        }
        table, tr, td, th {
            border-spacing: 0;
            border-collapse: collapse;
            mso-table-lspace: 0pt;
            mso-table-rspace: 0pt;
            font-size: 0em;
            table-layout: fixed;
            margin: 0 auto;
        }
        img {
            display: block;
            border: none;
            outline: none;
            text-decoration: none;
        }
        a[x-apple-data-detectors] {
            color: inherit !important;
            text-decoration: none !important;
            font-size: inherit !important;
            font-family: inherit !important;
            font-weight: inherit !important;
            line-height: inherit !important;
        }
        *[class=roundedimg] {
            display: block !important;
        }
        *[class=roundedsku] {
            display: block !important;
        }
        *[class=nomob] {
            display: block !important;
            width: 100% !important;
        }
        *[class=nodesktop] {
            display: none !important;
        }
        @media only screen and (max-width: 480px) {
            *[class=nomob] {
                display: none !important;
            }
            *[class=nodesktop] {
                display: block !important;
                width: 100% !important;
                line-height: normal !important; 
                height: auto !important; 
                min-height: auto !important; 
                max-height: none !important;
            }
            *[class=mob100-block] {
                width: 100% !important;
                display: block !important;
            }
            *[class=mob100] {
                width: 100% !important;
            }
            *[class=mob100-height] {
                width: 100% !important;
                height: 100% !important;
            }
            *[class=mob96] {
                width: 96% !important;
            }
            *[class=mob95] {
                width: 95% !important;
            }
            *[class=mob90] {
                width: 90% !important;
            }
            *[class=mob85] {
                width: 85% !important;
            }
            *[class=mob80] {
                width: 80% !important;
            }
            *[class=mob75] {
                width: 75% !important;
            }
            *[class=mob70] {
                width: 70% !important;
            }
            [class=mob66] {
                width: 66% !important;
            }
            *[class=mob65] {
                width: 65% !important;
            }
            *[class=mob60] {
                width: 60% !important;
            }
            *[class=mob55] {
                width: 55% !important;
            }
            *[class=mob50] {
                width: 50% !important;
                height: auto !important;
            }
            *[class=mob49] {
                width: 49% !important;
            }
            *[class=mob48] {
                width: 48% !important;
            }
            *[class=mob45] {
                width: 45% !important;
            }
            *[class=mob40] {
                width: 40% !important;
            }
            *[class=mob35] {
                width: 35% !important;
            }
            *[class=mob33] {
                width: 33% !important;
            }
            *[class=mob30] {
                width: 30% !important;
            }
            *[class=mob25] {
                width: 25% !important;
            }
            *[class=mob20] {
                width: 20% !important;
            }
            *[class=mob15] {
                width: 15% !important;
            }
            *[class=mob12] {
                width: 12% !important;
            }
            *[class=mob10] {
                width: 10% !important;
            }
            *[class=mob5] {
                width: 5% !important;
            }
            *[class=mob4] {
                width: 4% !important;
            }
            *[class=mob2] {
                width: 2% !important;
            }
            *[class=mobcontainer] {
                width: 340px !important;
            }
            *[class=mobcol1] {
                width: 224px !important;
                height: auto !important;
            }
            *[class=mobcol2] {
                width: 110px !important;
                height: auto !important;
            }
            *[class=mobwspacing] {
                width: 6px !important;
            }
            *[class=mobhspacing] {
                height: 5px !important;
                font-size: 5px !important;
                line-height: 5px !important;
            }
            *[class=mob-text40] {
                font-size: 40px !important;
                line-height: 56px !important;
            }
            *[class=mob-text30] {
                font-size: 30px !important;
                line-height: 40px !important;
            }
            *[class=mob-text20] {
                font-size: 20px !important;
                line-height: 28px !important;
            }
            *[class=mob-text16] {
                font-size: 16px !important;
                line-height: 20px !important;
            }
            *[class=mob-text14] {
                font-size: 14px !important;
                line-height: 20px !important;
            }
            *[class=mob-text12] {
                font-size: 12px !important;
                line-height: 18px !important;
            }
            *[class=mob-text10] {
                font-size: 10px !important;
                line-height: 16px !important;
            }
            *[class=mob-text9] {
                font-size: 9px !important;
                line-height: 14px !important;
            }
            *[class=mob-text8] {
                font-size: 8px !important;
                line-height: 14px !important;
            }
            *[class=mob-outlet] {
                width: 96% !important;
                height: 600px !important;
            }
            *[class=mob-nobackground] {
                width: 100% !important;
                background-image: none !important;
            }
            *[class=mob-bgheader-center] {
                width: 100% !important;
                height: 460px !important;
            }
            *[class=mob-bgheader-left] {
                width: 100% !important;
                height: 500px !important;
            }
            *[class=mob-height30] {
                height: 30px;
                font-size: 30px !important;
                line-height: 30px !important;
            }
            *[class=mob-height20] {
                height: 20px;
                font-size: 20px !important;
                line-height: 20px !important;
            }
            *[class=mob-height15] {
                height: 15px;
                font-size: 15px !important;
                line-height: 15px !important;
            }
            *[class=mob-height220] {
                height: 220px !important;
                line-height: 220px !important;
                font-size: 220px !important;
            }
            *[class=mob-centeredtext] {
                text-align: center !important;
            }
            *[class=roundedsku] {
                width: 100% !important;
                display: block !important;
            }
            *[class=mob-bgimg] {
                width: 96% !important;
                height: 400px !important;
            }
        }
        @media only screen and (max-width: 340px) {
            *[class=mob-outlet] {
                width: 96% !important;
                height: 500px !important;
            }
            *[class=mobcontainer] {
                width: 320px !important;
            }
            *[class=mobsku1] {
                width: 212px !important;
            }
            *[class=mobsku2] {
                width: 104px !important;
            }
            *[class=mobwspacing] {
                width: 4px !important;
            }
            *[class=mobhspacing] {
                height: 4px !important;
                font-size: 4px !important;
                line-height: 4px !important;
            }
        }
  </style>
 </head>
 <body data-gr-ext-installed="" data-new-gr-c-s-check-loaded="14.1079.0" id="body" leftmargin="0" marginheight="0" marginwidth="0" style="min-width: 100%; background-color: #ffffff; padding: 0px; margin: 0px;" topmargin="0" yahoo="fix">
  <!-- Pre-header text start here -->
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="nomob" style="table-layout: fixed; margin: 0 auto; background-color: #ffffff;" width="670">
   <tbody>
    <tr>
     <td class="nomob" height="10" style="msp-line-height-rule: exactly; font-size: 10px; line-height: 10px;">
      <font style="font-size: 1px !important; line-height: 1px !important; font-family: Arial; color: transparent; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all;">
       Performance gear that works as hard as you 🏋️‍♀️
 •
      </font>
     </td>
    </tr>
   </tbody>
  </table>
  <!-- Pre-header text end here -->
  <!-- Container start here -->
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100-block" style="border-collapse: collapse; mso-table-lspace: 0; mso-table-rspace: 0; border-spacing: 0; font-size: 0em; table-layout: fixed; margin: 0 auto; background-color: #ffffff;" width="670">
   <!-- Header start here -->
   <!-- Header logo start here -->
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" style="background-color: #141414;" width="670">
      <tr>
       <td height="24" style="mso-line-height-rule: exactly; font-size: 24px; line-height: 24px">
       </td>
      </tr>
      <tr>
       <td align="center" class="mob100" width="670">
        <a target="_blank">
         <img align="center" alt="ASOS" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fmcusercontent.com%252Ffebe49dc5e6ff6dff3dd05d80%252Fimages%252F6c92aa62-450f-2869-d46f-7e6b29926c7b.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtY3VzZXJjb250ZSJ9:1piZT6:UxJ_gLnOJoeGyzMH5ZfZkDPSEHwOnveBN-gyLeVAdTw" style="display: block;" width="100"/>
        </a>
       </td>
      </tr>
      <tr>
       <td height="24" style="mso-line-height-rule: exactly; font-size: 24px; line-height: 24px">
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <!-- Header logo end here -->
   <!-- Header navigation start here -->
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" style="background-color: #141414;" width="670">
      <tr>
       <td>
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td class="mob5" width="5">
          </td>
          <td align="center" class="mob30" style="color: #ffffff;" width="220">
           <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 15px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none; text-align: center;" target="_blank">
            <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
             New in
            </font>
           </a>
          </td>
          <td align="center" class="mob30" style="color: #ffffff;" width="220">
           <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 15px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none; text-align: center;" target="_blank">
            <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
             Dresses
            </font>
           </a>
          </td>
          <td align="center" class="mob30" style="color: #ffffff;" width="220">
           <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 15px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none; text-align: center;" target="_blank">
            <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
             Shoes
            </font>
           </a>
          </td>
          <td class="mob5" width="5">
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <tr>
       <td height="24" style="mso-line-height-rule: exactly; font-size: 24px; line-height: 24px;">
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <!-- Header navigation end here -->
   <!-- Header end here -->
   <!-- Body content start here -->
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
      <tr>
       <td class="mob100" width="670">
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td>
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
            <tr>
             <td class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <a target="_blank">
                  <img alt="Adidas Retropy" border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252F270323-underarmour-ww-01.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="335"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <a target="_blank">
                  <img alt="Adidas Retropy" border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252F270323-underarmour-ww-02.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="335"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
      <tr>
       <td class="mob100" width="670">
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td>
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
            <tr>
             <td bgcolor="#ccff00" class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
                  <tr>
                   <td align="center">
                    <a target="_blank">
                     <img border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252Flogo_underarmour_black.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="300"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td class="mob-height15" height="30" style="mso-line-height-rule: exactly; font-size: 30px; line-height: 30px;">
                </td>
               </tr>
               <tr>
                <td>
                 <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
                  <tr>
                   <td class="mob5" width="15">
                   </td>
                   <td>
                    <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob90" width="300">
                     <tr>
                      <td align="center">
                       <a class="mob-text16" style="font-family: 'FuturaPTHeavy-Reg', Futura, Arial, sans-serif; font-weight: 700; color: #000000; font-size: 32px; letter-spacing: 0.6px; text-decoration: none; text-align: center;" target="_blank">
                        <font face="'FuturaPTHeavy-Reg', Futura, Arial, sans-serif">
                         Push further, together
                        </font>
                       </a>
                      </td>
                     </tr>
                     <tr>
                      <td class="mob-height15" height="30" style="mso-line-height-rule: exactly; font-size: 30px; line-height: 30px;">
                      </td>
                     </tr>
                     <tr>
                      <td align="center">
                       <table align="center" cellspacing="0" class="mob100" style="border-collapse: collapse; mso-table-lspace:0; mso-table-rspace:0; border-spacing:0; font-size:0em;" width="245">
                        <tr>
                         <td align="center" style="background: none; padding-bottom:10px; padding-top:10px; padding-left: 20px; padding-right: 20px; border-radius: 30px; outline: 2px solid #000000">
                          <a class="mob-text10" style="font-family: 'FuturaPTHeavy-Reg', Futura, Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.6px; color: #000000; text-transform:uppercase; text-decoration: none;" target="_blank">
                           <font face="'FuturaPTHeavy-Reg', Futura, Arial, sans-serif">
                            SHOP UNDER ARMOUR
                           </font>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                   <td class="mob5" width="15">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
             <td class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <a target="_blank">
                  <img border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252F270323-underarmour-ww-04.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="335"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
      <tr>
       <td class="mob100" width="670">
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td>
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
            <tr>
             <td class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <a target="_blank">
                  <img border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252F270323-underarmour-ww-05.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="335"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td bgcolor="#ccff00" class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
                  <tr>
                   <td class="mob5" width="20">
                   </td>
                   <td>
                    <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob90" width="250">
                     <tr>
                      <td align="center">
                       <a class="mob-text10" style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #000000; font-size: 20px; line-height: 30px; letter-spacing: 0.6px; text-decoration: none; text-align: center;" target="_blank">
                        <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                         With Under Armour on your side, your sports bra is the last thing that'll challenge you - leave that to your workout buddy. Choose from the mould-to-your-body tech of the SmartForm Evolution design, or the aerodynamic, figure-of-eight fit of the Infinity. Levels: upped.
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                   <td class="mob5" width="20">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
      <tr>
       <td class="mob100" width="670">
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td>
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
            <tr>
             <td class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <a target="_blank">
                  <img alt="Adidas Retropy" border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252F270323-underarmour-ww-07.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="335"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
             <td class="mob50" width="335">
              <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="335">
               <tr>
                <td>
                 <a target="_blank">
                  <img alt="Adidas Retropy" border="0" class="mob100" src="https://inboxflows.com/_/image/https%253A%252F%252Fstatic.cdn.responsys.net%252Fi5%252Fresponsysimages%252Fasos%252Fcontentlibrary%252Fcommercial%252F3pr_2023%252Fmarch%252Fimages%252F270323-underarmour-ww-08.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGF0aWMuY2RuLiJ9:1piZT6:ISsIv-NQGajZZrGvSp7BHMlI6e7zr--uXFTuAi2XeDo" style="display: block;" width="335"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <!-- Body content end here -->
   <!-- Benefits start here -->
   <!-- Benefits start here -->
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" style="background-color: #141414;" width="670">
      <tr>
       <td height="18" style="mso-line-height-rule: exactly; font-size: 18px; line-height: 18px">
       </td>
      </tr>
      <tr>
       <td>
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td class="mob5" width="10">
          </td>
          <td class="mob90" width="650">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="650">
            <tr>
             <th class="mob100-block" width="320">
              <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="320">
               <tr>
                <td align="center" class="mob49" width="155">
                 <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                  <tr>
                   <td align="center" class="mob100" width="155">
                    <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                     <tr>
                      <td align="center">
                       <a target="_blank">
                        <img alt="Email preferences" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-email.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="40"/>
                       </a>
                      </td>
                     </tr>
                     <tr>
                      <td align="center" style="color: #ffffff;">
                       <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 11px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none;" target="_blank">
                        <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                         Email preferences
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                 </table>
                </td>
                <td class="mob2" width="10">
                </td>
                <td align="center" class="mob49" width="155">
                 <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                  <tr>
                   <td align="center" class="mob100" width="155">
                    <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                     <tr>
                      <td align="center">
                       <a target="_blank">
                        <img alt="Free returns" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-returns.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="40"/>
                       </a>
                      </td>
                     </tr>
                     <tr>
                      <td align="center" style="color: #ffffff;">
                       <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 11px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none;" target="_blank">
                        <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                         Free returns
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="mob100-block" height="2" style="mso-line-height-rule: exactly; font-size: 2px; line-height: 2px;" width="10">
             </th>
             <th class="mob100-block" width="320">
              <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="320">
               <tr>
                <td align="center" class="mob49" width="155">
                 <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                  <tr>
                   <td align="center" class="mob100" width="155">
                    <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                     <tr>
                      <td align="center">
                       <a target="_blank">
                        <img alt="Get the app" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-app.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="40"/>
                       </a>
                      </td>
                     </tr>
                     <tr>
                      <td align="center" style="color: #ffffff;">
                       <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 11px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none;" target="_blank">
                        <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                         Get the app
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                 </table>
                </td>
                <td class="mob2" width="10">
                </td>
                <td align="center" class="mob49" width="155">
                 <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                  <tr>
                   <td align="center" class="mob100" width="155">
                    <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="155">
                     <tr>
                      <td align="center">
                       <a target="_blank">
                        <img alt="Premier Delivery" src="https://inboxflows.com/_/image/https%253A%252F%252Fmcusercontent.com%252Ffebe49dc5e6ff6dff3dd05d80%252Fimages%252Fea6fd0e8-288f-4fe1-9bb8-53345b593696.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZtY3VzZXJjb250ZSJ9:1piZT6:UxJ_gLnOJoeGyzMH5ZfZkDPSEHwOnveBN-gyLeVAdTw" style="display: block;" width="40"/>
                       </a>
                      </td>
                     </tr>
                     <tr>
                      <td align="center" style="color: #ffffff;">
                       <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 11px; line-height: 20px; letter-spacing: 0.6px; text-decoration: none;" target="_blank">
                        <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                         Premier Delivery
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td height="16" style="mso-line-height-rule: exactly; font-size: 16px; line-height: 16px">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
           </table>
          </td>
          <td class="mob5" width="10">
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <!-- Benefits end here -->
   <!-- Benefits end here -->
   <!-- Footer start here -->
   <!-- Footer start here -->
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" style="background-color: #141414;" width="670">
      <tr>
       <td height="18" style="mso-line-height-rule: exactly; font-size: 18px; line-height: 18px">
       </td>
      </tr>
      <tr>
       <td>
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td class="mob5" width="20">
          </td>
          <td class="mob90" width="630">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="630">
            <tr>
             <td align="center" style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 400; font-size: 11px; line-height: 20px; letter-spacing: 0.6px;">
              <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
               ASOS, Greater London House, Hampstead Road, London NW1 7FB, United Kingdom.
               <br/>
               ASOS.com is a wholly owned subsidiary of ASOS plc. Registered in England – 3584121.
              </font>
             </td>
            </tr>
            <tr>
             <td height="24" style="mso-line-height-rule: exactly; font-size: 24px; line-height: 24px">
             </td>
            </tr>
            <tr>
             <td>
              <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="650">
               <tr>
                <td class="mob20" width="225">
                </td>
                <td align="center" class="mob12" width="40">
                 <a target="_blank">
                  <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-facebook.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="30"/>
                 </a>
                </td>
                <td align="center" class="mob12" width="40">
                 <a target="_blank">
                  <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-instagram.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="30"/>
                 </a>
                </td>
                <td align="center" class="mob12" width="40">
                 <a target="_blank">
                  <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-twitter.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="30"/>
                 </a>
                </td>
                <td align="center" class="mob12" width="40">
                 <a target="_blank">
                  <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-pinterest.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="30"/>
                 </a>
                </td>
                <td align="center" class="mob12" width="40">
                 <a target="_blank">
                  <img alt="" border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fcreativeassets.asosservices.com%252Fcreative-tech%252F2020%252Femail%252Fcrm%252Ficon-tiktok-white.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjcmVhdGl2ZWFzcyJ9:1piZT6:OO_BXjdmYdNGcBdKOpvjndJszK_LL1AvY2UrpLldHkg" style="display: block;" width="30"/>
                 </a>
                </td>
                <td class="mob20" width="225">
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
          <td class="mob5" width="20">
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <tr>
       <td height="32" style="mso-line-height-rule: exactly; font-size: 32px; line-height: 32px">
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <!-- Footer end here -->
   <!-- Footer end here -->
   <!-- Footer links start here -->
   <!-- Footer links start here -->
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="mob100" style="background-color: #141414;" width="670">
      <tr>
       <td>
        <table border="0" cellpadding="0" cellspacing="0" class="mob100" width="670">
         <tr>
          <td class="mob5" width="20">
          </td>
          <td class="mob90" width="630">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="mob100" width="630">
            <tr>
             <td align="center" style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 400; font-size: 11px; line-height: 20px; letter-spacing: 0.6px;">
              <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 400; font-size: 11px; line-height: 20px; letter-spacing: 0.6px; text-decoration: underline;" target="_blank">
               <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                Help &amp; Contact
               </font>
              </a>
              |
              <a style="font-family: 'FuturaPTBook-Reg', Futura, Arial, sans-serif; color: #ffffff; font-size: 400; font-size: 11px; line-height: 20px; letter-spacing: 0.6px; text-decoration: underline;" target="_blank">
               <font face="'FuturaPTBook-Reg', Futura, Arial, sans-serif">
                Unsubscribe
               </font>
              </a>
             </td>
            </tr>
           </table>
          </td>
          <td class="mob5" width="20">
          </td>
         </tr>
        </table>
       </td>
      </tr>
      <tr>
       <td height="32" style="mso-line-height-rule: exactly; font-size: 32px; line-height: 32px">
       </td>
      </tr>
     </table>
    </td>
   </tr>
   <!-- Footer links end here -->
   <!-- Footer links end here -->
  </table>
  <!-- Container end here -->
  <!-- Bottom spacing start here -->
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="nomob" style="table-layout: fixed; margin: 0 auto; background-color: #ffffff;" width="670">
   <tbody>
    <tr>
     <td class="nomob" height="10" style="mso-line-height-rule: exactly; font-size: 10px; line-height: 10px;">
     </td>
    </tr>
   </tbody>
  </table>
  <!-- Bottom spacing end here -->
  <grammarly-desktop-integration data-grammarly-shadow-root="true">
  </grammarly-desktop-integration>
  <table cellpadding="0" cellspacing="0" style="border: 0px; padding: 0px; margin: 0px; position: absolute; display: none; float: left">
   <tr>
    <td height="1" style="font-size: 1px; line-height: 1px; padding: 0px;">
     <br/>
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Ffashion.asos.com%252Fpub%252Fas%253F_ri_%253DX0Gzc2X%253DAQpglLjHJlYQGvbvLzcYOJw7dBzem207aFUPro3uDMNzb1utRuzbiIqzaqu93uKvPh2Cr02rhDjCaIm0gkaAtVXHkMX%253Dw%2526_ei_%253DEUlaGGF4SNMvxFF7KucKuWODJ4FkytcSoNLPsSXeVIK3Z4Hl3hm8326KOsqtKlQC9eNug811CT9lCkI./?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmYXNoaW9uLmFzbyJ9:1piZT6:oava7boUOgflca9AOwLL4a7FHMWQzSrRxsWzvTUSBLU"/>
    </td>
   </tr>
  </table>
 </body>
</html>