Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 161101486
ITEM: IR7640
Add variety and intensity to your workout routine wearing this Apollo Athletics Adjustable 40 lb. Weighted Vest. Its sand-filled, polyester-nylon fleece fabric, embossed SBR and iron construction is 3.9 inches thick and stands up to stretching, providing durability during exercises, and its 2-lb. weights remove in increments, simplifying customizing bulk for strength training, walking, running and more.
Features and Benefits
Designed for strength training, rucking and general exercise, including walking, running and body-weighted workouts, indoors and out
Durable sand-filled, polyester-nylon fleece fabric, embossed SBR and iron construction measures 3.9 inches thick and resists stretching to provide long-lasting wear
Removable 2-lb. weights let you conveniently customize bulk in increments
Adjustable via hook-and-loop fastener and high-strength polyester tape for a snug, comfortable fit
Specifications
Product Type: Fitness Accessories
Activity: Strength Training
Material: Polyester, SBR, sand, nylon
Product width (in.): 12.6
What's in the Box
Apollo Athletics Adjustable 40 lb. Weighted Vest
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();