Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock Out of stock
Custom Cut Out printed on 3/16" Foamboard. Choose your favorite model and size — custom design available for $50 extra.
Select Size
Select Model
Quantity
Our custom Cut Outs are printed on high-quality 3/16" foamboard , offering a lightweight yet durable finish.
Here's how to order:
Choose your model (e.g., safari design, cartoon characters, birthday themes, etc.)
Select the size that best fits your event (available from 2ft to 6ft tall)
📌 Perfect for:
💡 Want something unique? Add a custom design for an additional $50 , and we'll bring your idea to life!
Items have been added to cart.
One or more items could not be added to cart due to certain restrictions.
- There was an error adding to cart. Please try again.
Quantity updated
- An error occurred. Please try again later.
Deleted from cart
- Can't delete this product from the cart at the moment. Please try again later.
JavaScript is disabled in your browser. Please enable JavaScript to continue.
// --- OCULTAR CAMPOS DE ENVÍO SI PICK-UP ESTÁ SELECCIONADO --- document.addEventListener("DOMContentLoaded", function () { function updateShippingVisibility() { const shippingOptions = document.querySelectorAll("input[name='shippingMethod']"); const shippingFields = document.querySelectorAll( "input[name='shippingAddress.firstName'], input[name='shippingAddress.lastName'], textarea[name='shippingAddress.address1'], input[name='shippingAddress.city'], select[name='shippingAddress.stateOrProvince'], input[name='shippingAddress.postalCode'], input[name='shippingAddress.phone']" ); let isPickup = false; shippingOptions.forEach(opt => { if (opt.checked && opt.value.toLowerCase().includes("pick")) { isPickup = true; } }); shippingFields.forEach(field => { const fieldWrapper = field.closest("div"); if (fieldWrapper) { fieldWrapper.style.display = isPickup ? "none" : "block"; } }); // Mensaje opcional let notice = document.getElementById("pickupNotice"); if (!notice) { notice = document.createElement("p"); notice.id = "pickupNotice"; notice.style.color = "green"; notice.style.fontWeight = "bold"; document.querySelector(".shipping-address")?.prepend(notice); } notice.innerText = isPickup ? "📍 You selected Store Pickup. Shipping address is not required." : ""; } const observer = new MutationObserver(updateShippingVisibility); observer.observe(document.body, { childList: true, subtree: true }); document.addEventListener("change", updateShippingVisibility); setTimeout(updateShippingVisibility, 500); });