Performance Fleece 1/4-Zip Pullover

$40.00$44.00

We accept

30-days Free Returns

See policies

This Port & Company performance fleece pullover promises warmth and comfort. Made with a 50/50 cotton/poly blend, this fleece features moisture-wicking technology, a cadet collar, and a smooth YKK zipper. Customers love its softness and optimal fit!

Features

  • 100% polyester
  • Dry Zone moisture-wicking technology.
  • Taped neck
  • Cadet collar
  • Dyed-to-match YKK zipper
  • Self-fabric cuffs and hem

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

  • Available in: 7-10 Business Days

  • Local Pickup Only (Shakopee, MN) - Shipping Not Available

SKU: Categories: PulloversTags: Prior Lake Jays
/* -- The root styles must go in the element of the structure with the name "Add to cart". --*/ 

.single-product-3__add-cart{
  /* Styles for when the product is sold individually */
  &:has(.input-text[type="hidden"]){
    .woocommerce-variation-add-to-cart, .cart{
      flex-direction: column;
    }
  }

  /*-- Styles applied to the container containing the quantity form and the button may vary depending on whether it has variations or not. --*/
  .variations_button, .cart:not(:has(.variations_button)){
    display:flex;
    gap: var(--space-xs);

    /*-- Button styles "Add to cart" --*/
    .button{
      margin-top:0;
      flex: 1;
    }
  }
}
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility. 
 You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.single-product-3__accordion-heading');
const contentFaq = document.querySelectorAll('.single-product-3__accordion-description');

btnFaq.forEach((button) => {
  button.addEventListener('click', () => {
    // Gets the current state of the button
    const isExpanded = button.getAttribute('aria-expanded') === 'true';

    // Reset all buttons to "false".
    btnFaq.forEach((currentBtn) => {
      currentBtn.setAttribute('aria-expanded', 'false');
    });

    // Changes the status of the current button
    button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
  });
});

// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
  // Make a tour on each button there is
  btnFaq.forEach((button, i) => {
    const contentId = contentFaq[i].getAttribute('id');
    button.setAttribute('aria-controls', contentId);
  });
});