X

8.5'x20' Stealth Trailers Enclosed Cargo S25TTTA2

2025 Stealth 8.5x20 Enclosed Trailer 

100" Overall Height
102" Overall Width
78" Interior Height
95.5" Interior Width
77.5" Rear Opening Height
93.75" Rear Opening Width
.190 Double Hollow Aluminum Tube
16" OC Walls
3/8" Water Resistant Walls
16" OC Roof
16" OC Floor
3/4" Water Resistant Floor
16" OC .125x1.5x3 Tube CM
Aluminum Wheels, ST205/75R15LRD
2-5/16" Coupler
ATP Fenders
5000# Jack
24" ATP Rock Shield
.030 Aluminum Skin
Screwless Trim and Skin
3500# Axles Tandem
Spring Suspension
Electric Brakes on both axles
2- 800 Lumens Dome Lights
1- Switch and Cover Plate
4 D-rings
Ramp Door Extension
2- Plastic Sidewall Vents
Curbside Side Door


8.5'x20' Stealth Trailers Enclosed Cargo S25TTTA2
Price: $15,440 On Sale! $11,999
Green - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 101006
VIN: 52LBE2021SE101006
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: S25TTTA2
Length: 20'
Width: 8.5'
Height:
GVWR (lbs): 9,990
Weight (lbs): 3,120
Payload (lbs): 6,870
Features: Barlock on Door, BLACK OUT PKG, Ramp Gate, Rock Shield, Screwless Exterior, 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'; }); });