X

7'x14' Stealth Trailers Enclosed Cargo SAFW714TA All Aluminum 72"

2025 Stealth 7x14 Enclosed Trailer 

2x5 Aluminum Tube Main Rails

Seamless Aluminum Flat Top Roof

16" O/C Floor Tube Crossmembers ATP Fenders

16" O/C Tube Wall Studs

24" Slanted Embossed Stoneguard

24" O/C Tube Roof Bows

30" Slant Wedge

54" Tongue Length

3/4" Drymax Floor

Triple Tube A-frame

3/8" Drymax Walls

2,000# Drop Leg Jack

Plastic Corner Blocks on Top Trim

Spring Axle w/4" Drop

Aluminum Star Radial Tires & Wheels w/SS Center Caps

32W x 68H Side Door w/Barlock

Models include 3500# Axles w/ST205/75R15 Tires

Aluminum Door Holdback

Rear Ramp Door w/Flap & Spring Assist

Stainless Steel Door Hardware

Wide Track Axle/s on 7wide - No interior wheel wells

Electric Brakes w/7-way Plug

LED Dome Lights w/Switch

2-5/16 Coupler

LED Marker Lights

7-Way Electrical Plug on TA & SAE DOT/CSA Approved Safety Equipment

Frame for Roof Vent

72" interior height

Limited 3 Year Structural Warranty

7'x14' Stealth Trailers Enclosed Cargo SAFW714TA All Aluminum 72"
Price: $10,999 On Sale! $8,499
Red - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 001751
VIN: 52LBE1427SW001751
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: SAFW714TA All Aluminum
Length: 14'
Width: 7'
Height: 72"
GVWR (lbs): 6,990
Weight (lbs): 1,990
Payload (lbs): 5,000
Features: 2 Tone Color, Barlock on Door, BLACK OUT PKG, Ramp Gate, Rock Shield, Roof Vent, 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'; }); });