SurgeFX Nimbus Cloud Maker
/* ============================================ SURGEFX RESPONSIVE TABS/ACCORDION HYBRID - Desktop: Horizontal tabs - Mobile: Accordion ============================================ */ .surgefx-product-info { margin: 24px 0; font-family: inherit; } .surgefx-intro { margin-bottom: 24px; line-height: 1.7; } .surgefx-tagline { font-size: 1.15em; font-weight: 700; color: #000000; margin-bottom: 16px; letter-spacing: 0.5px; } .surgefx-product-info h4 { color: #1a1a1a !important; margin: 24px 0 12px 0; font-size: 1.05em; font-weight: 700; padding-bottom: 8px; border-bottom: 2px solid #00d1b2; display: inline-block; } .surgefx-product-info h4:first-child { margin-top: 0; } .surgefx-product-info table { width: 100%; border-collapse: collapse; margin: 16px 0; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06); } .surgefx-product-info th, .surgefx-product-info td { text-align: left; padding: 12px 16px; border-bottom: 1px solid #eee; } .surgefx-product-info tr:last-child td { border-bottom: none; } .surgefx-product-info th { font-weight: 600; background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%); color: #00d1b2; } .surgefx-product-info tbody tr:nth-child(even) { background: rgba(0, 0, 0, 0.02); } .surgefx-product-info ul { padding-left: 20px; margin: 12px 0; } .surgefx-product-info li { margin-bottom: 8px; } .surgefx-product-info .highlight { background: linear-gradient(135deg, rgba(0, 209, 178, 0.08) 0%, rgba(0, 209, 178, 0.15) 100%); border-left: 4px solid #00d1b2; padding: 16px 20px; margin: 20px 0; border-radius: 0 8px 8px 0; box-shadow: 0 2px 8px rgba(0, 209, 178, 0.1); } .surgefx-product-info .warning { background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0.15) 100%); border-left: 4px solid #ffc107; padding: 16px 20px; margin: 20px 0; border-radius: 0 8px 8px 0; box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1); } .surgefx-product-info a { color: #000000; text-decoration: underline; } .surgefx-product-info a:hover { color: #00d1b2; } .surgefx-footer { text-align: center; margin-top: 28px; padding: 16px; color: #666; font-style: italic; font-size: 0.95em; background: linear-gradient(180deg, transparent 0%, rgba(0, 209, 178, 0.05) 100%); border-radius: 8px; } /* ============================================ DESKTOP: HORIZONTAL TABS ============================================ */ .surgefx-tabs { display: block; } .surgefx-tabs input[type="radio"] { display: none !important; position: absolute; opacity: 0; pointer-events: none; } .surgefx-tabs-nav { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; gap: 0; margin: 0; padding: 0; list-style: none; background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%); border-radius: 10px 10px 0 0; overflow: hidden; } .surgefx-tabs-nav label { flex: 1; display: block !important; padding: 16px 10px; cursor: pointer; font-weight: 600; font-size: 0.85em; color: #999; background: transparent; border: none; border-right: 1px solid #3a3a3a; margin: 0; transition: all 0.25s ease; white-space: nowrap; text-align: center; position: relative; } .surgefx-tabs-nav label:last-child { border-right: none; } .surgefx-tabs-nav label:hover { color: #00d1b2; background: rgba(0, 209, 178, 0.1); } #tab1:checked ~ .surgefx-tabs-nav label[for="tab1"], #tab2:checked ~ .surgefx-tabs-nav label[for="tab2"], #tab3:checked ~ .surgefx-tabs-nav label[for="tab3"], #tab4:checked ~ .surgefx-tabs-nav label[for="tab4"], #tab5:checked ~ .surgefx-tabs-nav label[for="tab5"] { color: #00d1b2; background: linear-gradient(180deg, rgba(0, 209, 178, 0.2) 0%, rgba(0, 209, 178, 0.05) 100%); } #tab1:checked ~ .surgefx-tabs-nav label[for="tab1"]::after, #tab2:checked ~ .surgefx-tabs-nav label[for="tab2"]::after, #tab3:checked ~ .surgefx-tabs-nav label[for="tab3"]::after, #tab4:checked ~ .surgefx-tabs-nav label[for="tab4"]::after, #tab5:checked ~ .surgefx-tabs-nav label[for="tab5"]::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #00d1b2; } .surgefx-tabs-panels { position: relative; } .surgefx-tabs-content { display: none; padding: 28px; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); border: 1px solid #e0e0e0; border-top: none; border-radius: 0 0 10px 10px; line-height: 1.7; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); } #tab1:checked ~ .surgefx-tabs-panels .content-1, #tab2:checked ~ .surgefx-tabs-panels .content-2, #tab3:checked ~ .surgefx-tabs-panels .content-3, #tab4:checked ~ .surgefx-tabs-panels .content-4, #tab5:checked ~ .surgefx-tabs-panels .content-5 { display: block; } /* ============================================ MOBILE: ACCORDION ============================================ */ .surgefx-accordion { display: none; } .surgefx-accordion details { background: transparent; border: none; border-radius: 10px; margin-bottom: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); } .surgefx-accordion summary { padding: 16px 20px; font-weight: 700; font-size: 1em; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%); color: #ffffff; border-bottom: 1px solid transparent; transition: all 0.25s ease; } .surgefx-accordion summary::-webkit-details-marker { display: none; } .surgefx-accordion summary::after { content: "+"; font-size: 1.4em; color: #00d1b2; font-weight: 400; } .surgefx-accordion details[open] summary::after { content: "−"; } .surgefx-accordion details[open] summary { background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%); border-bottom: 3px solid #00d1b2; } .surgefx-accordion summary:hover { background: linear-gradient(180deg, #252525 0%, #333333 100%); } .surgefx-accordion .accordion-content { padding: 24px; line-height: 1.7; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); border: 1px solid #e0e0e0; border-top: none; border-radius: 0 0 10px 10px; } /* ============================================ RESPONSIVE BREAKPOINT ============================================ */ @media (max-width: 768px) { .surgefx-tabs { display: none; } .surgefx-accordion { display: block; } } Floating Cloud Shapes. Heart-Shaped Outlet. Built for Unforgettable Moments. The SurgeFX Nimbus Cloud Maker creates lightweight floating cloud shapes for weddings, reveals, grand entrances, brand activations, photo moments, and special-event scenes that need something softer than confetti and more memorable than standard bubbles. The signature heart-shaped outlet gives Nimbus its distinctive look. Load the approved cloud/foam consumable, connect the required gas source, place the pattern mold, and the machine creates cloud forms that rise and drift upward for a whimsical visual effect. Nimbus is built into a portable road-case style body with protective aluminum edging, durable latches, and an integrated carry handle. It is designed for operators who need a specialty effect that looks clean on-site, packs down quickly, and travels without a fragile shell. Best use: Nimbus is made for slow, eye-catching floating cloud moments, not high-volume room filling. Use it for reveals, wedding photos, send-offs, product moments, and guest-interaction effects where the shape itself is the feature. ☁️ Features 📐 Specs 🎛️ Operation ❓ FAQ 💡 Tips Floating Cloud Effect Nimbus creates lightweight cloud forms that rise and drift upward, giving events a floating visual effect that feels playful, polished, and camera-friendly. Signature Heart-Shaped Outlet The top outlet gives the machine its recognizable look and helps create eye-catching floating cloud shapes. It is especially strong for wedding, reveal, and photo/video moments. Pattern Mold Support The reference product includes pattern molds and supports custom template shapes. Use the included molds for standard effects or explore custom mold options for branded activations and themed events. Road-Ready Case Design The protective case-style body includes aluminum edging, durable latches, and an integrated carry handle. It is built to move between venues without looking like a fragile novelty prop. Perfect For Application Why Nimbus Works Weddings Floating hearts and clouds for photos, entrances, first dances, and send-offs Reveals Slow rising cloud shapes create a clear focal point for product, gender, or stage reveals Corporate events Customizable shape concept works well for brand moments and guest interaction Photo & video Cloud shapes add a soft visual element that reads well on camera Parties & celebrations A unique effect guests can see, film, and remember Venue activations Portable case design makes it easier to set up, move, and store Known Specifications Specification Detail Product SurgeFX Nimbus Cloud Maker Effect Type Floating cloud / foam-bubble shape effect Available Sizes 40 × 40 cm, 60 × 60 cm, 80 × 80 cm Control Mode Manual control Electrical Power No electric power required Material Fire-retardant body material Consumables Compatible cloud/foam consumables Gas Source Requires an external helium or nitrogen source Included Accessories 3 m hose, intake connector, 3 pattern molds Template Patterns Customizable mold/pattern support Warranty 1-Year Limited Warranty Gas and consumable note: Nimbus requires the correct gas source and Compatible consumables. Do not use unapproved mixtures or substitute materials. Manual Operation Nimbus is a manual-control specialty effect. It does not run like a standard fog machine or DMX bubble machine. The operator prepares the approved solution/consumable setup, connects the external gas source, places the pattern mold, and releases the cloud form. Pattern Molds The reference product includes three pattern molds. Custom mold/pattern options are possible, making Nimbus a strong fit for weddings, brand activations, and themed events. Gas Source Required The effect relies on an external helium or nitrogen source. Confirm gas selection, fittings, transport, and operating procedure before booking the effect for an event. Is Nimbus a fog machine? No. Nimbus is a floating cloud/foam-bubble shape effect. It is designed to create rising cloud forms, not fill a room with fog. Does it need electricity? The unit lists no electric power requirement. It uses an external gas source instead. What gas does it use? The reference product is designed for use with helium or nitrogen. Always follow the manufacturer instructions and local handling requirements for compressed gas. Can it make custom shapes? The platform supports pattern molds, and custom template patterns are listed by the supplier. Shape quality depends on mold design, setup, consumables, and environment. Is it for outdoor use? It can be used in the right outdoor setting, but wind affects floating cloud shapes. Calm indoor or sheltered spaces usually give the operator more control. What consumables should I use? Use only approved consumables recommended for this style of cloud maker. Do not substitute homemade mixtures or unapproved materials. Use Calm Air When Possible Nimbus looks best when the cloud shape can rise and drift. Heavy wind or strong HVAC airflow can break up the shape quickly. Plan the Moment This effect works best as a featured cue. Use it for a reveal, photo moment, entrance, or guest-facing activation where people have time to see the shape form and float. Confirm Gas Logistics Make sure the correct gas source, connector, transport plan, and operator procedure are ready before the event. Do not leave compressed-gas planning until load-in. Keep the Case Clean Wipe down the top surface and inside area after use. Cloud/foam residue can build up if the machine is packed away dirty. Pair With Bubble FX — Add standard bubbles around Nimbus for a fuller party look Stage Lighting — Light the floating shapes for photo and video moments Haze FX — Add light atmosphere to make beams visible around the effect Confetti FX — Pair cloud shapes with celebration cues and finales ☁️ Features Floating Cloud Shapes Creates lightweight cloud forms that rise and drift upward. Heart-Shaped Outlet Signature top opening for eye-catching floating shapes. Road-Ready Case Protective edging, latches, and integrated carry handle. Perfect For Weddings Reveals Corporate events Photo/video moments Parties and celebrations 📐 Specs Type Floating cloud / foam-bubble shape effect Reference Sizes 80×80 cm Control Manual Power No electric power required by unit Gas External helium or nitrogen source required Included 3 m hose, intake connector, 3 pattern molds 🎛️ Operation Manual specialty effect. Prepare approved consumables, connect the gas source, place the mold, then release the cloud form. ❓ FAQ Is it a fog machine? No. It makes floating cloud/foam-bubble shapes. Does it need gas? Yes. The unit uses helium or nitrogen. Can it make custom shapes? Yes, the platform supports pattern molds and custom template concepts. 💡 Tips Use calm air when possible Feature it as a planned moment Confirm gas logistics before the event Clean the top surface after use SurgeFX Nimbus Cloud Maker — Floating Cloud Shapes. Heart-Shaped Outlet. Built for Special Events.