X

7'x16' Alcom Enclosed Cargo C716STEALTH 78"

2024 Alcom Stealth 7x16 Enclosed Trailer 

  • 2×5 Aluminum Tube Main Rails
    Aluminum Flat Top Roof
  • 16″ O/C Floor Tube Crossmembers ATP Fenders
  • 16″ O/C Tube Wall Studs 24″ Slanted Embossed Stoneguard (16″ Straight on 4w)
  • 24″ O/C Tube Roof Bows 24″ Slant Wedge on 5-6w Models
  • 54″ Tongue Length
  • Triple Tube A-frame 3/8″ Drymax Walls
  • 2,000# Drop Leg Jack Plastic Corner Blocks on Top Trim
  • Spring Axle w/4″ Drop 
    78" Interior Height

  • Aluminum Star Radial Tires & Wheels 
    Side Door 
     Includes 3500# Axles w/ST205/75R15 Tires
    Aluminum Door Holdback
  • Wide Track Axles – No interior wheel wells 
  • Electric Brakes w/7-way Plug 
  • (2)12V LED Dome Lights w/Switch
  • 2-5/16 Coupler 
    LED Marker Lights
  • 7-Way Electrical Plug o
    DOT/CSA Approved Safety Equipment
  • Frame for Roof Vent Limited
    3 Year Structural Warranty
7'x16' Alcom Enclosed Cargo C716STEALTH 78"
Price: $9,100 On Sale! $7,999
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: S80115
VIN: 4TCSE1628RHS80115
Condition: New
Year: 2024
Manufacturer: Alcom Inc.
Model: C716STEALTH
Length: 16'
Width: 7'
Height: 78"
GVWR (lbs): 7,000
Weight (lbs): 1,630
Payload (lbs): 5,370
Features: Ramp Gate, Rear Load Lights, Rock Shield, Side Door

Other Recommendations

// 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'; }); });