www.popflexactive.com Open in urlscan Pro
23.227.38.74  Public Scan

Submitted URL: https://account.popflexactive.com/
Effective URL: https://www.popflexactive.com/
Submission: On December 22 via automatic, source certstream-suspicious — Scanned from CA

Form analysis 6 forms found in the DOM

POST /localization

<form method="post" action="/localization" id="annbar-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="CA">
      <country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-button">
            <span class="text-start">Canada (CAD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0" role="option" data-value="CA" aria-selected="true">
              <span class="pointer-events-none">Canada (CAD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

GET /search

<form class="main-search__form" action="/search" method="get" autocomplete="off">
  <div class="main-search__input-container">
    <input class="main-search__input" type="text" name="q" autocomplete="off" placeholder="Search..." aria-label="Search">
    <button class="main-search__button" type="submit" aria-label="Search"><svg class="icon" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation">
        <g transform="translate(3 3)" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd">
          <circle cx="7.824" cy="7.824" r="7.824"></circle>
          <path stroke-linecap="square" d="m13.971 13.971 4.47 4.47"></path>
        </g>
      </svg></button>
  </div>
  <script src="//www.popflexactive.com/cdn/shop/t/323/assets/search-suggestions.js?v=136224079820713396391702534542" defer=""></script>
  <search-suggestions></search-suggestions>
</form>

POST /localization

<form method="post" action="/localization" id="annbar-localizationMobileNav" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="CA">
      <country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-buttonMobileNav">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-buttonMobileNav">
            <span class="text-start">Canada (CAD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0MobileNav" role="option" data-value="CA" aria-selected="true">
              <span class="pointer-events-none">Canada (CAD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('annbar-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <p>
    <input type="email" placeholder="Your email" class="signup-form__email" value="" name="contact[email]" aria-label="Email" required="">
  </p>
  <button class="btn btn--primary signup-form__button" type="submit">Sign Up</button>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="CA">
      <country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
            <span class="text-start">Canada (CAD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="CA" aria-selected="true">
              <span class="pointer-events-none">Canada (CAD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-SsUr8g" novalidate="" tabindex="-1"
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 780px; min-width: 200px; max-width: 1000px; border-radius: 4px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgb(249, 233, 218); background-repeat: no-repeat; background-position-y: 50%; padding: 20px 25px 20px 30px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1"
    style="display: flex; flex-direction: column; width: 390px; margin: -20px 0px -20px -30px; padding: 0px; border-top: 0px solid transparent; border-right: 0px; border-bottom: 0px solid transparent; border-left: 0px solid transparent; border-bottom-left-radius: 4px; border-top-left-radius: 4px; overflow: hidden; min-width: 390px; min-height: 600px;">
    <div class="needsclick  kl-private-reset-css-Xuajs1"
      style="background-image: url(&quot;https://d3k81ch9hvuctc.cloudfront.net/company/NNJCdu/images/5b14f1d3-0701-4cdd-94a0-f4d77c0d7dba.jpeg&quot;); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; width: 100%; height: 100%; display: block;">
    </div>
  </div>
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px 0px 0px 30px; min-height: 600px; justify-content: center;">
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 10px 6px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-94614460" style="width: 100%;">
          <p style="font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400; text-align: center;"><span
              style="font-family: Poppins, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 600; font-size: 26px;">TIS' THE SEASON TO GET</span></p>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1"
        style="display: flex; justify-content: flex-start; padding: 0px 10px; position: relative; background-color: rgb(249, 233, 218); flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-94614461" style="width: 100%;">
          <div><span style="font-family: Poppins, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: bold; font-size: 50px;"><span style="font-size: 70px; color: #000000; background-color: #eff480;">&nbsp;15% OFF&nbsp;</span><br></span>
          </div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 8px 10px 20px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-94614462" style="width: 100%;">
          <p style="font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400; text-align: center;"><span
              style="font-family: Poppins, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 600; font-size: 26px;">YOUR FIRST ORDER</span></p>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px; position: relative; flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_94614463" class="needsclick go1979612209 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Email" aria-label="Email" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 6px; padding: 0px 0px 0px 16px; height: 50px; text-align: left; color: rgb(0, 0, 0); font-family: Poppins, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 200; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(0, 0, 0); box-shadow: rgba(0, 0, 0, 0) 0px 0px 5px;">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1"
        style="display: flex; justify-content: flex-start; padding: 10px; position: relative; background-color: rgba(255, 255, 255, 0); flex: 1 0 0px;"><button class="needsclick go952291206 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgb(33, 29, 28); border-radius: 6px; border-style: solid; border-color: rgb(33, 29, 28); border-width: 6px; color: rgb(255, 255, 255); font-family: Poppins, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0px; line-height: 1; white-space: normal; padding-top: 11px; padding-bottom: 11px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: auto; width: 100%;">Unwrap
          My Gift &gt;</button></div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1"
        style="display: flex; justify-content: flex-start; padding: 0px 34px 10px 18px; position: relative; flex: 0 1 auto; margin: 0px auto;"><button class="needsclick go952291206 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgba(48, 59, 67, 0); border-radius: 2px; border-style: none; border-color: rgb(0, 0, 0); border-width: 0px; color: rgb(55, 63, 71); font-family: Poppins, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding: 11px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: auto;">No
          Thanks</button></div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

Text Content

Skip to content
Save 20% on ALL gift cards!
Get a Secret Scratcher with EVERY order!
Free shipping on US orders over $100

Country/Region
Canada (CAD $)
 * Canada (CAD $)

Search
 * Shop All
 * This Just In
 * Jackets
 * Leggings
 * Hoodies & Sweaters
 * Bras
 * Skorts
 * Bags
 * Gift Cards




Rewards Account Search Wishlist Cart
This Just In
Best Sellers
Viral Products
Hoodies & Sweaters
Leggings
Bags
Skorts
Shorts
Bras
Dresses
Yoga Mats
 * Shop All
    * Trending
       * Best Sellers
       * Recently Back in Stock
       * Viral Products
       * The Cozy Edit
       * Shop Sale
   
    * Tops
       * All Tops
       * Bras
       * Tees + Tanks
       * Crop Tops
       * Shrugs
       * Jackets & Coats
       * Hoodies & Sweaters
   
    * Bottoms
       * All Bottoms
       * Leggings
       * Shorts
       * Skorts
       * Sweatpants
   
    * & More Clothing
       * Dresses
       * Jumpsuits & Rompers
       * Swim
   
    * Workout
       * All Equipment
       * Yoga Mats
       * Booty Bands
       * Yoga Blocks
       * Gloves
       * Fit Kits
       * Nutrition
   
    * Accessories
       * All Accessories
       * Hats
       * Stationery
       * Bottles
       * Bags
       * Socks
       * Hair Accessories

 * This Just In
 * Jackets
 * Leggings
 * Hoodies & Sweaters
 * Bras
 * Skorts
 * Bags
 * Gift Cards

 * Shop All
    * Trending
       * Best Sellers
       * Recently Back in Stock
       * Viral Products
       * The Cozy Edit
       * Shop Sale
   
    * Tops
       * All Tops
       * Bras
       * Tees + Tanks
       * Crop Tops
       * Shrugs
       * Jackets & Coats
       * Hoodies & Sweaters
   
    * Bottoms
       * All Bottoms
       * Leggings
       * Shorts
       * Skorts
       * Sweatpants
   
    * & More Clothing
       * Dresses
       * Jumpsuits & Rompers
       * Swim
   
    * Workout
       * All Equipment
       * Yoga Mats
       * Booty Bands
       * Yoga Blocks
       * Gloves
       * Fit Kits
       * Nutrition
   
    * Accessories
       * All Accessories
       * Hats
       * Stationery
       * Bottles
       * Bags
       * Socks
       * Hair Accessories

 * This Just In
 * Jackets
 * Leggings
 * Hoodies & Sweaters
 * Bras
 * Skorts
 * Bags
 * Gift Cards

This Just In
Low Stock
New
Quick Buy
Refine Long Sleeve Top
Color: Dark Olive
463 /products/refine-long-sleeve-top-dark-olive
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Dark-Olive-B1013_3130_292x435.jpg?v=1702935974
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Dark-Olive-B1013_3120_292x435.jpg?v=1702935974
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Dark Olive
568 /products/refine-long-sleeve-top-black
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Black-B1013_2919_292x435.jpg?v=1702996612
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Black-B1013_2941_292x435.jpg?v=1702996612
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Black 445 /products/refine-long-sleeve-top-coconut-cream
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Coconut-Cream-B1013_0769_292x435.jpg?v=1702924619
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Coconut-Cream-B1013_0731_292x435.jpg?v=1702924619
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Coconut Cream 441 /products/refine-long-sleeve-top-rose-clay
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Desert-Clay-B1013_0902_292x435.jpg?v=1702924364
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Desert-Clay-B1013_0921_292x435.jpg?v=1702936580
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Rose Clay 572 /products/refine-long-sleeve-top-stormy-blue
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Stormy-Blue-B1013_1687_292x435.jpg?v=1702936680
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Stormy-Blue-B1013_1653_292x435.jpg?v=1702936680
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Stormy Blue 475 /products/refine-long-sleeve-top-woodland-taupe
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Iron-B1013_1384_292x435.jpg?v=1702936564
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Iron-B1013_1392_292x435.jpg?v=1702936564
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Woodland Taupe
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
Low Stock
New
Quick Buy
Find Your Inner Fleece Jacket
Color: Charcoal
945 /products/find-your-inner-fleece-jacket-charcoal
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Charcoal_3417-Edit_292x435.jpg?v=1702493884
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Charcoal_3409-Edit_292x435.jpg?v=1702493884
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Charcoal
761 /products/find-your-inner-fleece-jacket-chocolate
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Chocolate_2941-Edit_292x435.jpg?v=1702493588
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Chocolate_2979-Edit_292x435.jpg?v=1702493588
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Chocolate 950 /products/find-your-inner-fleece-jacket-forestwood
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Forestwood_3056-Edit_292x435.jpg?v=1702493943
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Forestwood_3033-Edit_292x435.jpg?v=1702493943
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Forestwood 570 /products/find-your-inner-fleece-jacket-ice-cream
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-IceCream_3214-Edit_292x435.jpg?v=1702493989
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-IceCream_3186-Edit_292x435.jpg?v=1702493989
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Ice Cream
10 reviews
$230.00
XXS XS S M L XL 1X 2X 3X
Low Stock
New
Quick Buy
Cloud Romper
Color: Red Wine
332 /products/cloud-romper-red-wine
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Red-Wine-G1001_3402_292x435.jpg?v=1702059122
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Red-Wine-G1001_3354_292x435.jpg?v=1702059122
$128.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Red Wine
638 /products/cloud-romper-black
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Black-G1001_2867_292x435.jpg?v=1702059585
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Black-G1001_2957_292x435.jpg?v=1702059585
$128.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Black 514 /products/cloud-romper-collegiate-blue
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Collegiate-Blue-G1001_2679_292x435.jpg?v=1702059666
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Collegiate-Blue-G1001_2673_292x435.jpg?v=1702059666
$128.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Collegiate Blue 300 /products/cloud-romper-dusty-mauve
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Dusty-Mauve-G1001_3150_292x435.jpg?v=1702059684
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Dusty-Mauve-G1001_3236_292x435.jpg?v=1702059684
$128.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Dusty Mauve 494 /products/cloud-romper-heather-grey
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Light-Heather-Grey-G1001_1809_292x435.jpg?v=1702059414
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Light-Heather-Grey-G1001_1754_292x435.jpg?v=1702059414
$128.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Heather Grey 504 /products/cloud-romper-sand
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Sand-G1001_1528_292x435.jpg?v=1702058855
//www.popflexactive.com/cdn/shop/files/Cloud-Romper-Sand-G1001_1496_292x435.jpg?v=1702058855
$128.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Sand
17 reviews
$128.00
XXS/XSS/ML/XL1X/3X
Low Stock

Quick Buy
Pillow Packable Puffer Jacket
Color: Peacoat Navy
155 /products/pillow-packable-puffer-jacket-peacoat-navy
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Peacoat-Navy-E1006_2550_292x435.jpg?v=1701361864
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Peacoat-Navy-E1006_2495_292x435.jpg?v=1701361864
$206.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Peacoat Navy
337 /products/pillow-packable-puffer-jacket-coconut-cream
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Coconut-Cream-E1006_1871_292x435.jpg?v=1701364589
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Coconut-Cream-E1006_1912_292x435.jpg?v=1701364589
$206.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Coconut Cream 130 /products/pillow-packable-puffer-jacket-orchid-ice
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Orchid-Ice-E1006_2066_292x435.jpg?v=1701361754
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Orchid-Ice-E1006_2200_c8c82175-4e0f-474a-9a98-3f38e3cbb2a1_292x435.jpg?v=1701376606
$206.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Orchid Ice 233 /products/pillow-packable-puffer-jacket-black
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Black-E1006_3612_292x435.jpg?v=1701361592
//www.popflexactive.com/cdn/shop/files/Pillow-Packable-Puffer-Jacket-Black-E1006_3631_292x435.jpg?v=1701365150
$206.00 $0.00 true XXS/XS S/M L/XL 1X/3X

Black
10 reviews
$206.00
XXS/XS S/M L/XL 1X/3X
Low Stock
New
Quick Buy
Sherpa Sloane Tote
Color: Black
458 /products/sherpa-sloane-tote-black
//www.popflexactive.com/cdn/shop/files/BF-PF-Sloane-Sherpa-Tote-Black-Front-Strap_40b81608-424b-4988-adb9-7bdc2a4a9e0f_292x435.jpg?v=1702487501
//www.popflexactive.com/cdn/shop/files/BF-PF-Sloane-Sherpa-Tote-Black-Angle_2ce2c24f-7649-46b9-9a75-811ceabe3d68_292x435.jpg?v=1702487501
$146.00 $0.00 true Default Title

Black
449 /products/sherpa-sloane-brown-bear
//www.popflexactive.com/cdn/shop/files/SherpaSloaneTote-BrownBear-J1023_2311-Edit_292x435.jpg?v=1701356337
//www.popflexactive.com/cdn/shop/files/BF-PF-Sloane-Sherpa-Tote-Inside-Pocket_292x435.jpg?v=1701970682
$146.00 $0.00 true Default Title

Brown Bear
2 reviews
$146.00
Low Stock
New
Quick Buy
Find Your Inner Fleece Jacket
Color: Forestwood
950 /products/find-your-inner-fleece-jacket-forestwood
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Forestwood_3056-Edit_292x435.jpg?v=1702493943
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Forestwood_3033-Edit_292x435.jpg?v=1702493943
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Forestwood
761 /products/find-your-inner-fleece-jacket-chocolate
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Chocolate_2941-Edit_292x435.jpg?v=1702493588
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Chocolate_2979-Edit_292x435.jpg?v=1702493588
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Chocolate 945 /products/find-your-inner-fleece-jacket-charcoal
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Charcoal_3417-Edit_292x435.jpg?v=1702493884
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-Charcoal_3409-Edit_292x435.jpg?v=1702493884
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Charcoal 570 /products/find-your-inner-fleece-jacket-ice-cream
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-IceCream_3214-Edit_292x435.jpg?v=1702493989
//www.popflexactive.com/cdn/shop/files/FindYourInnerFleeceJacket-IceCream_3186-Edit_292x435.jpg?v=1702493989
$230.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Ice Cream
10 reviews
$230.00
XXS XS S M L XL 1X 2X 3X
Low Stock
New
Quick Buy
Refine Long Sleeve Top
Color: Rose Clay
441 /products/refine-long-sleeve-top-rose-clay
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Desert-Clay-B1013_0902_292x435.jpg?v=1702924364
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Desert-Clay-B1013_0921_292x435.jpg?v=1702936580
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Rose Clay
568 /products/refine-long-sleeve-top-black
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Black-B1013_2919_292x435.jpg?v=1702996612
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Black-B1013_2941_292x435.jpg?v=1702996612
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Black 463 /products/refine-long-sleeve-top-dark-olive
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Dark-Olive-B1013_3130_292x435.jpg?v=1702935974
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Dark-Olive-B1013_3120_292x435.jpg?v=1702935974
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Dark Olive 445 /products/refine-long-sleeve-top-coconut-cream
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Coconut-Cream-B1013_0769_292x435.jpg?v=1702924619
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Coconut-Cream-B1013_0731_292x435.jpg?v=1702924619
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Coconut Cream 572 /products/refine-long-sleeve-top-stormy-blue
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Stormy-Blue-B1013_1687_292x435.jpg?v=1702936680
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Stormy-Blue-B1013_1653_292x435.jpg?v=1702936680
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Stormy Blue 475 /products/refine-long-sleeve-top-woodland-taupe
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Iron-B1013_1384_292x435.jpg?v=1702936564
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Iron-B1013_1392_292x435.jpg?v=1702936564
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Woodland Taupe
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
Low Stock

Quick Buy
Bungee Sklegging
Color: Black
1104 /products/bungee-sklegging-black
//www.popflexactive.com/cdn/shop/files/Bungee-Sklegging---Black-c1008_0834_292x435.jpg?v=1702922633
//www.popflexactive.com/cdn/shop/files/Bungee-Sklegging---Black-c1008_0874_292x435.jpg?v=1702922633
$124.00 $0.00 true 25" 27" 29"

Black
113 /products/bungee-sklegging-climbing-ivy
//www.popflexactive.com/cdn/shop/files/BungeeSklegging-ClimbingIvy-C1008_0026-Edit_292x435.jpg?v=1695665129
//www.popflexactive.com/cdn/shop/files/BungeeSklegging-ClimbingIvy-C1008_0008-Edit_292x435.jpg?v=1695665129
$124.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Climbing Ivy 139 /products/bungee-sklegging-navy
//www.popflexactive.com/cdn/shop/files/BungeeSklegging-Navy-C1008_0003-Edit_292x435.jpg?v=1695665086
//www.popflexactive.com/cdn/shop/files/BungeeSklegging-Navy-C1008_0020-Edit_292x435.jpg?v=1695665086
$124.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Navy
24 reviews
$124.00
XXSXSSMLXL1X2X3X
Low Stock
New
Translation missing: en.general.icon_labels.left Translation missing:
en.general.icon_labels.right Quick Buy
Small Sherpa Sloane Tote - Warm Ash
No reviews
$119.00
Low Stock
New
Quick Buy
Refine Long Sleeve Top
Color: Woodland Taupe
475 /products/refine-long-sleeve-top-woodland-taupe
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Iron-B1013_1384_292x435.jpg?v=1702936564
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Iron-B1013_1392_292x435.jpg?v=1702936564
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Woodland Taupe
568 /products/refine-long-sleeve-top-black
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Black-B1013_2919_292x435.jpg?v=1702996612
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Black-B1013_2941_292x435.jpg?v=1702996612
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Black 463 /products/refine-long-sleeve-top-dark-olive
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Dark-Olive-B1013_3130_292x435.jpg?v=1702935974
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Dark-Olive-B1013_3120_292x435.jpg?v=1702935974
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Dark Olive 445 /products/refine-long-sleeve-top-coconut-cream
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Coconut-Cream-B1013_0769_292x435.jpg?v=1702924619
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Coconut-Cream-B1013_0731_292x435.jpg?v=1702924619
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Coconut Cream 572 /products/refine-long-sleeve-top-stormy-blue
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Stormy-Blue-B1013_1687_292x435.jpg?v=1702936680
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Stormy-Blue-B1013_1653_292x435.jpg?v=1702936680
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Stormy Blue 441 /products/refine-long-sleeve-top-rose-clay
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Desert-Clay-B1013_0902_292x435.jpg?v=1702924364
//www.popflexactive.com/cdn/shop/files/Refine-Long-Sleeve-Top-Desert-Clay-B1013_0921_292x435.jpg?v=1702936580
$49.00 $0.00 true XXS XS S M L XL 1X 2X 3X

Rose Clay
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
Country/Region
Canada (CAD $)
 * Canada (CAD $)

Load slide 1 of 4 Load slide 2 of 4 Load slide 3 of 4 Load slide 4 of 4
Previous Next



PREVIOUS THIS JUST IN NEXT

View all
New
Quick buy
Refine Long Sleeve Top - Dark Olive
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Find Your Inner Fleece Jacket - Charcoal
10 reviews
$230.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Cloud Romper - Red Wine
17 reviews
$128.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Pillow Packable Puffer Jacket - Peacoat Navy
10 reviews
$206.00
XXS/XS S/M L/XL 1X/3X
New
Quick buy
Sherpa Sloane Tote - Black
2 reviews
$146.00
New
Quick buy
Find Your Inner Fleece Jacket - Forestwood
10 reviews
$230.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Refine Long Sleeve Top - Rose Clay
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X

Quick buy
Bungee Sklegging - Black
24 reviews
$124.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Small Sherpa Sloane Tote - Warm Ash
No reviews
$119.00
New
Quick buy
Refine Long Sleeve Top - Woodland Taupe
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Cloud Romper - Heather Grey
17 reviews
$128.00
XXS/XS S/M L/XL 1X/3X
New
Quick buy
Find Your Inner Fleece Jacket - Ice Cream
10 reviews
$230.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Refine Long Sleeve Top - Black
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Sherpa Sloane Tote - Brown Bear
2 reviews
$146.00

Quick buy
Pillow Packable Puffer Jacket - Orchid Ice
10 reviews
$206.00
XXS/XS S/M L/XL 1X/3X
New
Quick buy
Find Your Inner Fleece Jacket - Chocolate
10 reviews
$230.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Refine Long Sleeve Top - Coconut Cream
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Cloud Romper - Collegiate Blue
17 reviews
$128.00
XXS/XS S/M L/XL 1X/3X
New
Quick buy
Refine Long Sleeve Top - Stormy Blue
No reviews
$49.00
XXS XS S M L XL 1X 2X 3X

Quick buy
Ooey Gooey Half Zip Sweater - Almond Milk
55 reviews
$124.00
XXS/XS S/M L/XL 1X/3X



WORK OUT, BUT MAKE IT CUTE.

Active fashion made to function. Designed by Blogilates. XXS-3X.

Read Our Story →


PREVIOUS BEST SELLERS NEXT

View all

Quick buy
Zip Cloud Hoodie - Black
1397 reviews
$98.00
XXS/XS S/M L/XL 1X/3X
New
Quick buy
Cloud Romper - Dusty Mauve
17 reviews
$128.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Ooey Gooey Half Zip Sweater - Turquoise
55 reviews
$124.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Crisscross Hourglass® Sklegging - Black
58 reviews
$109.00
XXS XS S M L XL 1X 2X 3X

Quick buy
2024 Fit Planner - Black Metallic
44 reviews
From $55.00

Quick buy
Sloane Tote - Black
129 reviews
$132.00

Quick buy
Cloud Crewneck Sweater - Heather Grey
21 reviews
$91.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Crisscross Hourglass® Bell Bottom with Pockets (Soft Touch) - Black
56 reviews
$105.00
XXS XS S M L XL 1X 2X 3X
New
Quick buy
Cloud Romper - Red Wine
17 reviews
$128.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Pillow Packable Puffer Jacket - Peacoat Navy
10 reviews
$206.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Ooey Gooey Sweatpant - Soft Beige
33 reviews
$109.00
XXS XS S M L XL 1X 2X 3X

Quick buy
Pirouette Tiered Skort - Blue Mist
524 reviews
$84.00
XXS XS S M L XL 1X 2X 3X

Quick buy
Ooey Gooey Half Zip Sweater - Canyon Clay
55 reviews
$124.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Pillow Packable Puffer Jacket - Black
10 reviews
$206.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Pullover Cloud Hoodie - Crimson
599 reviews
$105.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Zip Cloud Hoodie - Blue Steel
1397 reviews
$98.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Sloane Tote - Taupe
129 reviews
$132.00

Quick buy
CloudCushion Vegan Suede Yoga Mat - Prismatic 0.5” Thick
242 reviews
$110.00

Quick buy
Ooey Gooey Half Zip Sweater - Almond Milk
55 reviews
$124.00
XXS/XS S/M L/XL 1X/3X

Quick buy
Pillow Packable Puffer Jacket - Orchid Ice
10 reviews
$206.00
XXS/XS S/M L/XL 1X/3X



LEGGINGS


BRAS


HOODIES


TOPS


SHORTS


SKORTS


GYM IN STYLE WITH THE PRETTIEST WORKOUT EQUIPMENT.


HATS


YOGA MATS


BOTTLES


GYM BAGS

Real Customer Feedback
Real Customer Feedback

> Highly recommend. Worth every penny. I was complaining to my husband the last
> time I wore them that I didn’t want to take them off lol.

— Claire

Shop Crisscross Hourglass Flared Leggings →
Real Customer Feedback

> I mostly do powerlifting and this bra kept everything in place. Cute,
> comfortable, and functional.

— Veronica H.

Shop the Corset Bra →
Previous Next


AS FEATURED IN



Gift cards
Free US Shipping on orders $100+
Rewards Program
Sizing
 * Find your Fit
 * Size Chart

Info
 * Our Story
 * Our Sustainability Journey
 * Rewards Program
 * Gift Cards
 * Wholesale
 * Collaborate
 * Blog

Help
 * Help Center
 * Start an Exchange/Return
 * Personal Information
 * Terms + Conditions
 * Privacy Policy

Newsletter

Sign up to get the latest on sales, new releases and more



Sign Up
 * Facebook
 * YouTube
 * Instagram
 * TikTok
 * Twitter
 * Threads

Amazon American Express Apple Pay Discover Google Pay Mastercard PayPal Shop Pay
Venmo Visa
Country/Region
Canada (CAD $)
 * Canada (CAD $)

© 2023 POPFLEX®. For PR Inquiries: Press@blogilates.com
Your cart
Close




Checkout
Close
Your cart is empty
Start shopping



Judge.me Judge.me


My Wishlist0


Close dialog 1

TIS' THE SEASON TO GET

 15% OFF 


YOUR FIRST ORDER


Unwrap My Gift >
No Thanks