
TriggerFish/Barracuda Power and Powerpole Assembly Kit
Product Details .menu-container { font-family: 'Montserrat', sans-serif; } .menu-container h2 { font-size: 24px; color: #EE7024; font-weight: 800; } .menu-container .accordion button { width: 100%; padding: 10px; text-align: left; border: none; background: none; color: #1B4175; font-size: 18px; cursor: pointer; outline: none; display: flex; align-items: center; font-weight: 800; } .menu-container .accordion button span { margin-right: 10px; font-weight: 800; color: #1B4175; } .menu-container .panel { display: none; padding: 10px; margin-top: 5px; font-size: 16px; font-weight: 400; color: black; } .menu-container .panel.open { display: block; } .menu-container .panel a { color: #1B4175; } /* Bold the headers without changing font size */ .menu-container .panel h3 { font-weight: bold; font-size: 16px; /* Same size as paragraphs */ } Product Details + Product Description This kit provides the necessary connection from your ROV to your power supply. + What's Included 15 Amp Fuse – 1 ea 30 Amp Powerpole Connector Housings (One RED/BLACK bonded pair with two 30amp crimp lugs) (requires Powerwerx TRIcrimp Powerpole Connector for installation) – 1 ea Velcro Closures – 1 ea 7mm Black Heat Shrink – 7.6cm Power Cord 16 Ga. (blk/red zip cord) – 2.4m 30 Amp Powerpole Connectors (crimp lug only) – 2 ea Powerpole Connector Housings (RED/BLACK bonded pair housings only - without crimp lugs) – 1 bonded pair 14 Ga. Blade Fuse Holder – 1 ea Yellow Solder & Seal Connector – 1 ea function togglePanel(button) { const allPanels = document.querySelectorAll('.panel'); const allSymbols = document.querySelectorAll('.toggle-symbol'); const panel = button.nextElementSibling; const symbol = button.querySelector('.toggle-symbol'); const isOpen = panel.classList.contains('open'); allPanels.forEach(p => p.classList.remove('open')); allSymbols.forEach(s => s.textContent = '+'); if (!isOpen) { panel.classList.add('open'); symbol.textContent = '-'; setTimeout(() => { const headerOffset = 250; const elementPosition = button.getBoundingClientRect().top + window.pageYOffset; const offsetPosition = elementPosition - headerOffset; window.scrollTo({ top: offsetPosition, behavior: 'smooth' }); }, 0); } }