X

7'x16' Stealth Enclosed Cargo STT716TA2

2025 Stealth 7x16 Enclosed Trailer 

72" Interior Height
Color: Arctic Green Front/ Black Back
Top: 30" Slant Wedge Front/ Flat Top

UTV Steel Package
-12" Extra Height
-(1) LED Loading Light w/switch
-(4) 5000# Recessed D-Rings
-(1) Pair Rear Fold Down Stabilizer Jacks
-RV Flush Mount Locks w/Barlock on Side door

7.5 Wide Upgrade
-Uses 8.5w Axles and 68" Crossmembers
-Uses 2x5 Main Rails and 5" Wheel Wells

Black-out Package
-Black Exterior Trim
-Black Trim on Side Door
-Black Fenders
-Black Stoneguard
-Black Wheels
-Black Door Hardware

Rear Flare w/(2) 12V Loading Lights w/switch
4" Brite Divider Strip
7'x16' Stealth Enclosed Cargo STT716TA2
Price: $11,500 On Sale! $7,999
Green - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 101048
VIN: 52LBE1624SE101048
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: STT716TA2
Length: 16'
Width: 7'
Height:
GVWR (lbs): 6,990
Weight (lbs): 2,225
Payload (lbs): 4,765
Features: 2 Tone Color, Barlock on Door, BLACK OUT PKG, Ramp Gate, Rear Load Lights, Rear Spoiler w/ Load Lights, Rock Shield

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