X

7.5'x16' Alcom-Stealth Enclosed Cargo C716STEALTH-7'1" 85"

7.5'x16' Alcom-Stealth C716STEALTH-7'1" Enclosed Cargo



Standard Trailer Feature and Upgrade

  • All-Aluminum Construction, Integrated Frame Design

  • 7.5' Wide Frame Design

  • 24" Sloped V-Nose Front

  • 2"x4" Integrated Frame

  • 24" O/C Floor & Roof Studs

  • 16" O/C Wall Studs

  • Screwless .030" Bonded Sides

  • One Piece Aluminum Roof

  • 2-3K Braked Torsion Ride Axles

  • Spread Axle Design

  • 24" Stone Guard

  • 2-5/16" Coupler w/Safety Chains

  • 2000lb Center Jack w/Foot

  • 3/8" Water Resistant Interior Walls

  • 3/4" Water Resistant Decking

  • (2) Rows of Slide Track w/(4) Sliding D-Rings

  • Interior Cove Trim

  • 3" Exterior Trim

  • (2) Dome Lights w/Switch

  • Exterior LED Lighting

  • Plastic Salem Vents

  • Rear Ramp w/Spring Assist w/Aluminum Hardware

  • 32"x78" Side Door w/Paddle Handle & Piano Hinge

  • 4-Year Limited Warranty

  • 85" Interior Height

  • 81" Rear Door Opening

7.5'x16' Alcom-Stealth Enclosed Cargo C716STEALTH-7'1" 85"
Price: $12,000 On Sale! $10,800
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: S00279
VIN: 4TCSE1624SHS00279
Condition: New
Year: 2025
Manufacturer: Alcom-Stealth
Model: C716STEALTH-7'1"
Length: 16'
Width: 7.5'
Height: 85"
GVWR (lbs): 7,000
Weight (lbs): 1,980
Payload (lbs): 5,020
Features: Ramp Gate, Rock Shield, Screwless Exterior, Side Door
// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });