X

8.5'x12' Alcom Snowmobile HFS101X12CROSS-LMSD25

2026 Alcom High Country 8.5x12 Snowmobile Crossover Trailer

Model Number

HFS101X12CROSSOVER

Subframe

2"x3"

Floor Studs

24" O/C

Wall & Roof Studs

16" O/C

Box (WxLxH)

101"x12'x66"

Interior (WxLxH)

98"x11'10"x64"

Overall (WxLxH)

102"x16'2"x7'8"

Deck Height

25"

Hitch Height

23"

Rear Door Opening (WxH)

93"x62"

Axle(s) - Qty/Rating

1-3500# Idler

GVWR

2990#

Wheels

12" E-Rated

Tires

ST145/R12E Aluminum

Side Door

26"x58"

Front Door

32"x70"

Power Connection

4-Way Flat

Coupler Rating/Ball Size

3500# / 2" Ball

Jack

1200# Wheel Jack

Safety Chains

(2) 5000#

Curb Weight

1058#

Payload

1932#

8.5'x12' Alcom Snowmobile HFS101X12CROSS-LMSD25
Price: $8,700 On Sale! $7,499
Silver - Snowmobile
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 034595
VIN: 5WFBW121XTS034595
Condition: New
Year: 2026
Manufacturer: Alcom Inc.
Model: HFS101X12CROSS-LMSD25
Length: 12'
Width: 8.5'
Height:
GVWR (lbs): 2,990
Weight (lbs): 1,956
Payload (lbs): 1,034
Features: 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'; }); });