Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
This item may ship from a different location therefore only eligible for ground shipping. Additionally, this item is not eligible for APO/FPO delivery.
STYLE IT WITH
about this product
SKU: 106914126
ITEM: 2140-010216
Carry your gear in the Century® Premium Sport Bag, which is made of 800-denier polyester to help ensure lasting use. This bag features an internal zip pocket, 2 outer side pockets and 1 additional front pocket to give ample space for your gear. Carry handles and a shoulder strap offer easy transport options.
Features and Benefits
Made of tough 800-denier polyester to withstand rugged use
Internal zip pocket, 2 outer side pockets and 1 additional front pocket offer ample space for your gear
Carry handles and a shoulder strap help make transport easy
Specifications
Manufacturer warranty - general: 90 days limited
What's in the Box
Century® Premium Sport Bag
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();