X

7'x16' CellTech Enclosed Cargo 7x16TA3 84"

7'x16' CellTech 7x16TA3 Enclosed Cargo


7x16 Cell Tech Enclosed Cargo Trailer
Interior Dimensions 16' x 6'9" x 7'
Overall Dimensions 2"
21' x 8'10"
Rear Openeing 6'1" x 6'10"
Barn Doors
6000lb Torsion Axle
BLACKOUT PKG
Spare Tire 6-Lug ST225/75R15 LRD 8ply



Galvanized Frame (Backed by a 10-Year Structural Warranty)
4″ Steel Tube Main Frame (Double Tube) & 16″ On-Center Crossmembers

HD Drop Leg Jack
2 5/16″ Coupler

Interior & Exterior

Electric Brakes on Both Axles
Flow-Through Ventilation System
Wall-Mounted Vertical E-Tracks (8 total)
Roof-Mounted Vertical E-Tracks (2 total)
All LED Lighting – Interior & Exterior
7-Way Bergman Electrical Plug
LED Breakaway Safety Kit
Heavy-Duty Ramp Door with ramp handle & bar locks
36″ Side Access Door with flush lock & bar lock
Anti-Skid Coated Flooring & Ramp
WARRANTY
  • Structural Frame: 5-year warranty on the structural frame.
  • Dexter Axles: 5-year warranty on Dexter axles.
Panels: 10-year CellTech Metals panel delamination warranty.

7'x16' CellTech Enclosed Cargo 7x16TA3 84"
Our Price! $17,400
Black - Enclosed Cargo
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 001517
VIN: 7XXE12127SE001517
Condition: New
Year: 2025
Manufacturer: CellTech
Model: 7x16TA3
Length: 16'
Width: 7'
Height: 84"
GVWR (lbs): 9,990
Weight (lbs): 2,475
Payload (lbs): 7,515
Features: Barn Doors, BLACK OUT PKG, Rock Shield, Screwless Exterior, Side Door, Spare Mount, Spare Tire

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