X

8.5'x16' RC Trailers Concession RDLX8.5X16TA3 78"

2024 RC 8.5x16 Enclosed Food/Concession Trailer

#### **Hitch**

* 2-5/16" Coupler - Tandem Axle Models
* 2,000 lb. Top Wind Jack w/ Sand Pad
* Safety Chains

**Axle**

* 5,200 lb. Spring Brake Axle

**Tires and Rims**

* ST225/75R15 Radial w/ White Wheels on 5,200 lb Axles

**Frame**

* 24" On Center Floor, Roof, and Walls
* Note: 16" On-Center Floor with TA3
* 18" Wedge Nose
* Undercoated Frame

**Side Door - All Doors with NO Step**

* 36" Door wBarlock on 16'

**Rear Door**

* 8.5' - Double Door - 3,000 lb. Ramp Door
* *Light Duty Ramp Door has a 1,000 lb. capacity.

**Interior**

* 3/4" Engineered Wood Flooring
* 3/8" Plywood Walls Trimmed with Lauan

Interior Heights
6' 6"

**Exterior**

* Flow-Thru Sidewall Vents
* .030 Exterior Metal
* Inverted ATP Stoneguard
* Galvanized Steel Roof
* Mill Finish Rear Corners and Header
* ATP Fenders
* 1-1/2" Lower Trim
* 3" Top Rail

**Electrical**

* (1) 12-Volt LED Dome Light
* 4-Way Plug on Idler Axles
* 7-Way Plug on Electric Brake Axles
* Breakaway Box, Battery, & Switch
* LED Strip Tail Light/Brake Lights, Surf Mounted
* LED Surface Mounted Clearance Lights

**UPGRADES INCLUDED:**
Additional 6 inches of height
6Long x4High Concession window with screens
White Aluminum Straight Base Cabinet
LED Electric Package - Includes: 4 LED 12" C-Brite single light, 2 Interior Lights, 12 Volt Light Switches, 4 110 Volt Interior Recepts, 1 110 Volt GFI Exterior Recept 1 50 Amp Service, Converter, 110 Volt to 12Volt w/110 Volt Recept, and brace & Wired for A/C, 12 Volt Battery & Box
8.5'x16' RC Trailers Concession RDLX8.5X16TA3 78"
Price: $16,600 On Sale! $12,999
White - Concession/Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 675341
VIN: 56VBE1627RM675341
Condition: New
Year: 2024
Manufacturer: RC Trailers
Model: RDLX8.5X16TA3
Length: 16'
Width: 8.5'
Height: 78"
GVWR (lbs): 7,000
Weight (lbs): 2,930
Payload (lbs): 4,070
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'; }); });