X

7'x12' Stealth Enclosed Cargo S25AFW712TA2

2025 Stealth 7x12 Enclosed Trailer

* .030 Screwless Exterior Aluminum
* (1) Pair Plastic Flo-Thru Vents
* Seamless Aluminum Flat Top Roof
* 3" Flat Top Trim
* 3" Flat Bottom Trim
* ATP Fenders
* Slanted Embossed Stoneguard
* 30" Slant Wedge
* 3/4" Drymax Floor
* 3/8" Drymax Walls
* Plastic Corner Blocks on Top Trim
* 32W x 68H Side Door w/Barlock
* Aluminum Door Holdback
* Rear Ramp Door w/Flap & Spring Assist
* Stainless Steel Door Hardware
* (2) 12V LED Dome Lights w/Switch
* LED Marker Lights
* LED Strip Tailights
* DOT/CSA Approved Safety Equipment
* Limited 3 Year Structural Warranty
* 2x4 Aluminum Tube Main Rails
* 16" O/C Floor Tube Crossmembers
* 16" O/C Tube Wall Studs 24"
* 24" O/C Tube Roof Bows
* 54" Tongue Length
* Triple Tube A-frame
* 2,000# Drop Leg Jack
* Spring Axle w/4" Drop
* Aluminum Star Radial Tires & Wheels w/SS Center Cap
* 3500# Axles w/ST205/75R15 Tires
* Wide Track Axle/s
* Electric Brakes w/7-way Plug
* 2-5/16 Coupler
* 7-Way Electrical Plug
* Frame for Roof Vent

CHANGES AND UPGRADES

* Color: Victory Red
* 6" Extra Height
* Blackout Package

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

* Poly Composite .080 Sidewall Metal Upgrade
7'x12' Stealth Enclosed Cargo S25AFW712TA2
Price: $10,100 On Sale! $7,999
Red - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 01738
VIN: 52LBE1220SW001738
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: S25AFW712TA2
Length: 12'
Width: 7'
Height:
GVWR (lbs): 6,990
Weight (lbs): 1,840
Payload (lbs): 5,150
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'; }); });