X

6'x14' Stealth Trailers Enclosed Cargo S25TT614SA 72"

2025 Stealth 6x14 Enclosed Trailer

16″ O/C Floor C-Channel Crossmembers

16″ O/C Steel Tube Wall Studs

24″ O/C Tube Steel Roof Bows

48″ Tongue Length on 5w & 6w

2,000# Drop Leg Jack

Spring Axle w/4″ Drop

Silver Radial Tires & Wheels w/Chrome Center Caps

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

TA4 Models include 6000# Axles w/ST235/80R16 Tires

2″ Coupler on SA

4-Way Electrical Plug on SA

.030 Screwless Exterior Aluminum

Plastic Corner Blocks on Top Trim

(1) Pair Plastic Flo-Thru Vents

Seamless Aluminum Flat Top Roof

3″ Flat Top Trim

3″ Flat Bottom Trim

ATP Fenders

24″ Slanted Embossed Stone guard 24″ Slant Wedge on 5-6w Models

3/4″ Drymax Floor

3/8″ Drymax Walls

32W x 68H Side Door w/Barlock on 6w & 7w

Aluminum Door Holdback

Rear Ramp Door w/Flap & Spring Assist

Stainless Steel Door Hardware

LED Marker Lights & LED Strip Tail Lights

(2) 12V LED Dome Lights w/Switch

Limited 3 Year Structural Warranty

6'x14' Stealth Trailers Enclosed Cargo S25TT614SA 72"
Price: $6,050 On Sale! $5,149
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 101247
VIN: 52LBE1417SE101247
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: S25TT614SA
Length: 14'
Width: 6'
Height: 72"
GVWR (lbs): 2,990
Weight (lbs): 1,285
Payload (lbs): 1,705
Features:

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