Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 163675951
ITEM: 202925551
Embrace the ultimate game day outfit while you cheer on the Wisconsin Badgers to cross the goal line with this Oversized Waist-Length Crewneck Sweatshirt Made by Pressbox it features a cozy fleece lining that provides an extra layer of warmth for those cooler game days at the stadium or chilly mornings at home The ribbed high-low hem and dropped shoulders create a flattering and on-trend silhouette that's perfect for cheering on your team as they march up the national rankings
Features and Benefits
Dropped shoulder seams provide a relaxed fit
Officially licensed
Brand: Pressbox
Crew neck
High hip length (Measures approx. 22)
Material: 55% Cotton/45% Polyester
Midweight sweatshirt suitable for moderate temperatures
Machine wash, tumble dry low
Tagless collar with interior taping for a more comfortable feel
Ribbed high-low hem hits at waist
Screen-print team wordmark and logo
Imported
Specifications
Sleeve length: Long Sleeve
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();