{"id":1999,"date":"2023-09-21T09:26:57","date_gmt":"2023-09-21T09:26:57","guid":{"rendered":"https:\/\/pinstripe.preview.aquarorke.co.za\/price-calculator\/"},"modified":"2023-10-08T21:56:13","modified_gmt":"2023-10-08T21:56:13","slug":"price-calculator","status":"publish","type":"page","link":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/","title":{"rendered":"Price Calculator"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1999\" class=\"elementor elementor-1999 elementor-1931\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-eb9c9ce e-flex e-con-boxed e-con\" data-id=\"eb9c9ce\" data-element_type=\"container\" data-settings=\"{&quot;content_width&quot;:&quot;boxed&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-89f3e64 elementor-widget elementor-widget-sf_price_calculator\" data-id=\"89f3e64\" data-element_type=\"widget\" data-widget_type=\"sf_price_calculator.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<script>\r\n\/\/ jQuery(document).ready(function() {\r\ndocument.addEventListener('DOMContentLoaded', function() {\r\n    \r\n    const touchscreenPerUnit = [\r\n        { description: 'touchscreen-Registration-Terminal', cost: 500 },\r\n        { description: 'printer-Rental-Touchscreen-Selection', cost: 40 },\r\n        { description: 'delivery-Collection-Touchscreen-Selection', cost: 75 },\r\n        { description: 'setup-Fee-Touchscreen-Selection', cost: 25 },\r\n        { description: 'onsite-Registration-Staff', cost: 130 },\r\n        { description: 'custom-Vinyl-Branding-Wrap', cost: 90 },\r\n    ];\r\n    const laptopPerUnit = [\r\n        { description: 'laptop-Rental', cost: 75 },\r\n        { description: 'printer-Rental-Laptop-Selection', cost: 40 },\r\n    ];\r\n    const laptopOnceOff = [\r\n        { description: 'delivery-Collection-Laptop-Selection', cost: 75 },\r\n        { description: 'setup-Fee-Laptop-Selection', cost: 25 },  \r\n    ];\r\n    const fixedCosts = [\r\n        { description: 'artwork-Setup-Fee', cost: 300 },\r\n        { description: 'registration-Software', cost: 425 },\r\n        { description: 'onsite-Technician-Manager', cost: 175 },\r\n        { description: 'database-Upload-Formating-Reporting', cost: 150 },\r\n    ];\r\n    const costsPerBadge = [\r\n        { description: 'branded-Double-Sided-Name-Cards-Inc-Pouch', cost: 0.95 },\r\n        { description: 'branded-Lanyards', cost: 1.00 },\r\n    ];\r\n\r\n    var costPerUnit = 0;\r\n    var fixedCostGeneral = 0;\r\n    var fixedCostLaptop = 0;\r\n    var badgeCost = 0;\r\n\r\n    var isLaptop = false;\r\n\r\n    jQuery(\"#touchscreen\").change(function() {\r\n\r\n        fixedCostLaptop = 0;\r\n        costPerUnit = 0;\r\n\r\n        touchscreenPerUnit.forEach((item) => {\r\n            var id = \"#\" + item.description;\r\n            jQuery('[name=\"' + item.description + '\"]').removeAttr(\"hidden\");\r\n            jQuery(id).text(item.cost);\r\n            costPerUnit+=item.cost;\r\n        });\r\n\r\n        \r\n        laptopPerUnit.forEach((item) => {\r\n            jQuery('[name=\"' + item.description + '\"]').attr(\"hidden\", true);\r\n        });\r\n\r\n        laptopOnceOff.forEach((item) => {\r\n            jQuery('[name=\"' + item.description + '\"]').attr(\"hidden\", true);\r\n            console.log(item.description);\r\n        });\r\n        proceedToStep(2);\r\n        isLaptop = false;\r\n    });\r\n\r\n    jQuery(\"#laptop\").change(function() {\r\n\r\n        fixedCostLaptop = 0;\r\n        costPerUnit = 0;\r\n\r\n        laptopPerUnit.forEach((item) => {\r\n            var id = \"#\" + item.description;\r\n            jQuery('[name=\"' + item.description + '\"]').removeAttr(\"hidden\");\r\n            jQuery(id).text(item.cost);\r\n            costPerUnit+=item.cost;\r\n        });\r\n\r\n        laptopOnceOff.forEach((item) => {\r\n            var id = \"#\" + item.description;\r\n            jQuery('[name=\"' + item.description + '\"]').removeAttr(\"hidden\");\r\n            jQuery(id).text(item.cost);\r\n            fixedCostLaptop+=item.cost;\r\n        });\r\n\r\n        touchscreenPerUnit.forEach((item) => {\r\n            jQuery('[name=\"' + item.description + '\"]').attr(\"hidden\", true);\r\n        });\r\n        console.log('fixedCostLaptop1 are ', fixedCostLaptop);\r\n\r\n        proceedToStep(2);\r\n        isLaptop = true;\r\n    });\r\n\r\n    jQuery(\"#calculate\").click(function() {\r\n\r\n        fixedCostGeneral = 0;\r\n        badgeCost = 0;\r\n        \r\n        var attendeesValue = jQuery(\"#attendees\").val();\r\n\t\t\r\n\t\tjQuery(\"#wpforms-2021-field_4\").val(attendeesValue);\r\n        if (attendeesValue === \"1000\") {\r\n            window.location.href = \"\/contact\/\";\r\n        } else {\r\n            var results = getXYValues(attendeesValue);\r\n            var stations = results[0];\r\n            var badges = results[1];\r\n            jQuery(\"#estimate-badge-recommendations\").text(badges);\r\n            jQuery(\"#estimate-station-recommendations\").text(stations);\r\n            jQuery(\"#estimate-stationType-recommendations\").text((isLaptop ? 'Laptops' : 'Touch Screens'));\r\n\r\n            fixedCosts.forEach((item) => {\r\n                var id = \"#\" + item.description;\r\n                jQuery('[name=\"' + item.description + '\"]').removeAttr(\"hidden\");\r\n               \/\/ jQuery(id).text(item.cost);\r\n                fixedCostGeneral+=item.cost;\r\n            });\r\n\r\n            costsPerBadge.forEach((item) => {\r\n                var id = \"#\" + item.description;\r\n                jQuery('[name=\"' + item.description + '\"]').removeAttr(\"hidden\");\r\n                \/\/jQuery(id).text(item.cost);\r\n                badgeCost+=item.cost;\r\n            });\r\n\r\n            var totalPrice = (stations*costPerUnit) + fixedCostGeneral + fixedCostLaptop + (badgeCost * badges);\r\n            \/\/ My JS\r\n            jQuery(\"#side-bar-total-price\").text(totalPrice);\r\n            jQuery(\"#type_of_device_sidebar\").text((isLaptop ? 'Laptops' : 'Touch Screens'));\r\n\t\t\tjQuery(\"#wpforms-2021-field_3\").val((isLaptop ? 'Laptops' : 'Touch Screens'));\r\n            jQuery(\"#amount-station-sidebar\").text(stations);\r\n            jQuery(\"#attendees_sidebar\").text(badges);\r\n            jQuery(\"#total-fixed-cost-price\").text(fixedCostGeneral + fixedCostLaptop);\r\n            jQuery(\"#total-cost-per-unit-price\").text(stations*costPerUnit);\r\n            jQuery(\"#total-badge-price\").text(badgeCost * badges);\r\n            jQuery(\"#total-price\").text(totalPrice);\r\n\t\t\tjQuery(\"#wpforms-2021-field_5\").val(totalPrice);\r\n            proceedToStep(3);\r\n        }\r\n    });\r\n\r\n    jQuery(\".stationType\").change(function() {\r\n        \/\/ yes\r\n        proceedToStep(4);\r\n        \/\/ no \r\n        proceedToStep(5);\r\n    });\r\n\r\n    jQuery(\".clearButton\").click(function() {\r\n        jQuery(\"#side-bar-total-price\").text(\"\");\r\n        jQuery(\"#type_of_device_sidebar\").text(\"\");\r\n        jQuery(\"#attendees_sidebar\").text(\"\");\r\n        jQuery(\"#amount-station-sidebar\").text(\"\");\r\n        jQuery(\"#total-fixed-cost-price\").text(\"\");\r\n        jQuery(\"#total-cost-per-unit-price\").text(\"\");\r\n        jQuery(\"#total-badge-price\").text(\"\");\r\n        jQuery(\"#total-price\").text(\"\");\r\n        jQuery(\"#step2\").addClass('estimation-hidden');\r\n        jQuery(\"#step3\").addClass('estimation-hidden');\r\n        jQuery(\"#step4\").css('display', 'none');\r\n        jQuery(\"#step5\").css('display', 'none');\r\n    });\r\n    \r\n    document.getElementById(\"no\").addEventListener(\"click\", function() {\r\n        document.getElementById(\"step4\").style.display = \"none\";\r\n        document.getElementById(\"step5\").style.display = \"block\";\r\n        proceedToStep(4);\r\n    });\r\n\r\n    document.getElementById(\"yes\").addEventListener(\"click\", function() {\r\n        document.getElementById(\"step4\").style.display = \"block\";\r\n        document.getElementById(\"step5\").style.display = \"none\";\r\n        document.getElementById(\"feedback-block\").style.display = \"block\";\r\n        proceedToStep(5);\r\n    });\r\n\r\n    document.getElementById(\"emailRadio\").addEventListener(\"change\", function() {\r\n        document.getElementById(\"emailField\").style.display = \"block\";\r\n        document.getElementById(\"phoneField\").style.display = \"none\";\r\n    });\r\n\r\n    document.getElementById(\"phoneRadio\").addEventListener(\"change\", function() {\r\n        document.getElementById(\"phoneField\").style.display = \"block\";\r\n        document.getElementById(\"emailField\").style.display = \"none\";\r\n    });\r\n\r\n    document.getElementById(\"submitContact\").addEventListener(\"click\", function() {\r\n        event.preventDefault();\r\n    });\r\n\r\n    function proceedToStep(step) {\r\n        \/\/$(\".step:not('.estimation-hidden')\").addClass('estimation-hidden');\t\t\r\n        jQuery(\"#step\" + step).removeClass('estimation-hidden');\r\n    }\r\n\r\n    function getXYValues(attendeesValue) {\r\n        var ranges = {\r\n            \"200-250\": [2, 200],\r\n            \"250-350\": [3, 300],\r\n            \"350-450\": [4, 400],\r\n            \"450-550\": [5, 500],\r\n            \"550-650\": [6, 600],\r\n            \"650-750\": [7, 700],\r\n            \"800+\": [10, 800],\r\n        };\r\n        return ranges[attendeesValue];\r\n    }\r\n\r\n    document.getElementById(\"submitContact\").addEventListener(\"click\", function() {\r\n        event.preventDefault();\r\n        \r\n        jQuery.ajax({\r\n            type: \"POST\",\r\n            url: \"\/enterprise\",\r\n            data: $(\"#costEstimationForm\").serialize(),\r\n            success: function(response) {\r\n                console.log(\"POST request successful:\", response);\r\n            },\r\n            error: function(xhr, status, error) {\r\n                console.error(\"POST request failed:\", error);\r\n            }\r\n        });\r\n    });\r\n\r\n    document.getElementById(\"submitFeedback\").addEventListener(\"click\", function(event) {\r\n        event.preventDefault();\r\n        \r\n        jQuery.ajax({\r\n            type: \"POST\",\r\n            url: \"\/enterprise\",\r\n            data: $(\"#costEstimationForm\").serialize(),\r\n            success: function(response) {\r\n                console.log(\"POST request successful:\", response);\r\n            },\r\n            error: function(xhr, status, error) {\r\n                console.error(\"POST request failed:\", error);\r\n            }\r\n        });\r\n    });\r\n    \r\n});\r\n\r\n<\/script>\r\n<div class=\"estimation-form\">\r\n\t<div id=\"step1\" class=\"step\">\r\n\t\t<div class = 'all-cards'>\r\n\t\t\t<div class = 'form-cards'>\r\n\t\t\t\t<div class='disclaimer-card'>\r\n\t\t\t\t\t<h5>Thank you for using our Event Registration Cost Estimate Calculator. This tool is designed to provide you with an initial estimate of the costs associated with our services for your event. Please note the following:<\/h5>\r\n\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t<li>The figures generated by this calculator are for estimation purposes only and are intended to give you a general idea of potential costs.<\/li>\r\n\t\t\t\t\t\t<li>All events are unique, and the actual pricing may vary based on specific requirements, event size, duration, location, and additional services.<\/li>\r\n\t\t\t\t\t\t<li>This estimate does not constitute a final quotation.<\/li>\r\n\t\t\t\t\t\t<li>To receive an accurate and personalised quotation tailored to your event's needs, we recommend contacting our team for a detailed consultation.<\/li>\r\n\t\t\t\t\t<\/ul>\r\n\t\t\t\t\t<p>Feel free to play around and experiment with the various options below. Our goal is to assist you in understanding the range of costs associated with our services and to help you plan your event effectively. We look forward to working with you to create a successful event.<\/p>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<h1>Choose a Hardware Option<\/h1>\r\n\t\t\t\t<div class=\"cards-right\">\r\n\t\t\t\t\t<div id='selection-card' class=\"card\">\r\n\t\t\t\t\t\t<label for=\"touchscreen\">\r\n\t\t\t\t\t\t\t<!-- <img decoding=\"async\" class=\"card-img\" src=\"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/07\/32inch-touch-1-169x300.png\"> -->\r\n\t\t\t\t\t\t\t<img decoding=\"async\" class=\"card-img\" src=\"https:\/\/pinstripe-group.com\/wp-content\/uploads\/2023\/10\/IMG-20170816-WA0015-e1696703395708.jpg\">\r\n\t\t\t\t\t\t\t<h3>Custom Branded Touch Screen Kiosks<\/h3>\r\n\t\t\t\t\t\t\t<p>Customised Branding<br>Highly adaptable and scalable<br>User-friendly Interfaces<br>Fully Customised Branding provides a sleek and modern appearance<br>Interactive solution for enhanced attendee experience<br>Highly adaptable and scalable<\/p>\r\n\t\t\t\t\t\t<\/label>\r\n\t\t\t\t\t\t<input class=\"screenSelect\" type=\"radio\" name=\"stationType\" value=\"touchscreen\" id=\"touchscreen\">\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div div id='selection-card' class=\"card\">\r\n\t\t\t\t\t\t<label for=\"laptop\">\r\n\t\t\t\t\t\t\t<img decoding=\"async\" class=\"card-img\" src=\"https:\/\/pinstripe-group.com\/wp-content\/uploads\/2023\/07\/laptop-offering.png\">\r\n\t\t\t\t\t\t\t<h3>Laptop Check-In Solution<\/h3>\r\n\t\t\t\t\t\t\t<p>Easy Access Control<br>Quick Check-in<br>Budget Friendly<br>Cost effective option, ideal for smaller events & limited budgets<br>Lightweight and mobile solution<br>Hassel Free Access Control<\/p>\r\n\t\t\t\t\t\t<\/label>\r\n\t\t\t\t\t\t<input class=\"screenSelect\" type=\"radio\" name=\"stationType\" value=\"laptop\" id=\"laptop\">\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<div id=\"step2\" class=\"step estimation-hidden card\">\r\n\t\t\t\t\t<h1>How many attendees are you expecting to process on the day of the event?<\/h1>\r\n\t\t\t\t\t<select id=\"attendees\">\r\n\t\t\t\t\t\t<option value=\"200-250\">200-250<\/option>\r\n\t\t\t\t\t\t<option value=\"250-350\">250-350<\/option>\r\n\t\t\t\t\t\t<option value=\"350-450\">350-450<\/option>\r\n\t\t\t\t\t\t<option value=\"450-550\">450-550<\/option>\r\n\t\t\t\t\t\t<option value=\"550-650\">550-650<\/option>\r\n\t\t\t\t\t\t<option value=\"650-750\">650-750<\/option>\r\n\t\t\t\t\t\t<option value=\"800+\">800+<\/option>\r\n\t\t\t\t\t<\/select>\r\n\t\t\t\t\t<button type=\"button\" id=\"calculate\">Next &gt;<\/button>\r\n\t\t\t\t\t<a id = 'guest-count-1000' href=\"\/\">More than 1000 Guests<\/a>       \r\n\t\t\t\t<\/div>\r\n\t\t\t\t<div id=\"step3\" class=\"step card estimation-hidden\">\r\n\t\t\t\t\t<h1>Estimate<\/h1>\r\n\t\t\t\t\t<div id=\"estimate\">\r\n\t\t\t\t\t\t<p id = 'estimate-summary'>We would recommend using \r\n\t\t\t\t\t\t\t<strong>\r\n\t\t\t\t\t\t\t\t<span id=\"estimate-station-recommendations\"><\/span>\r\n\t\t\t\t\t\t\t\t<span id=\"estimate-stationType-recommendations\"><\/span>\r\n\t\t\t\t\t\t\t<\/strong> \r\n\t\t\t\t\t\tin order to be able to support around \r\n\t\t\t\t\t\t\t<strong>\r\n\t\t\t\t\t\t\t\t<span id=\"estimate-badge-recommendations\"><\/span>\r\n\t\t\t\t\t\t\t\tattendees.\r\n\t\t\t\t\t\t\t<\/strong>\r\n\t\t\t\t\t\t\t<br>\r\n\t\t\t\t\t\t\t<br>\r\n\t\t\t\t\t\tBelow is a breakdown of costs, based on an estimate of 1 day:\r\n\t\t\t\t\t\t\t<ol>\r\n\t\t\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t\tOnce-off fixed costs\r\n\t\t\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"artwork-Setup-Fee\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\t Artwork Setup Fee\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"registration-Software\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\t Registration Software\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"onsite-Technician-Manager\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\t Onsite Technician\/Manager\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"database-Upload-Formating-Reporting\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\t Database Upload, Formating & Reporting\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"delivery-Collection-Laptop-Selection\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\t Delivery & Collection (associated with laptop selection)\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"setup-Fee-Laptop-Selection\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\t Setup Fee (associated with laptop selection)\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t<\/ul>\r\n\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t\tCosts per station\r\n\t\t\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"touchscreen-Registration-Terminal\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tTouchscreen Registration Terminal\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"printer-Rental-Touchscreen-Selection\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tPrinter Rental\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"delivery-Collection-Touchscreen-Selection\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tDelivery &amp; Collection\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"setup-Fee-Touchscreen-Selection\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tSetup Fee\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"onsite-Registration-Staff\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tOnsite Registration Staff\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"custom-Vinyl-Branding-Wrap\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tCustom Vinyl Branding - Wrap\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"laptop-Rental\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tLaptop Rental\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"printer-Rental-Laptop-Selection\" hidden> \r\n\t\t\t\t\t\t\t\t\t\t\tPrinter Rental\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t<\/ul>\r\n\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t\tCosts per badge\r\n\t\t\t\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"branded-Double-Sided-Name-Cards-Inc-Pouch\" hidden>\r\n\t\t\t\t\t\t\t\t\t\t\tBranded Double Sided Name Cards (inc Pouch)\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t\t<li name=\"branded-Lanyards\" hidden>\r\n\t\t\t\t\t\t\t\t\t\t\tBranded Lanyards\r\n\t\t\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t\t\t<\/ul>\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t<\/li>\r\n\t\t\t\t\t\t\t<\/ol>\r\n\t\t\t\t\t\tBased on the number of stations and attendees, the estimated total cost would be <strong>&pound;<span id=\"total-price\"><\/span><\/strong>, \r\n\t\t\t\t\t\tcomprised of <strong>&pound;<span id=\"total-fixed-cost-price\"><\/span><\/strong> fixed costs, <strong>&pound;<span id=\"total-cost-per-unit-price\"><\/span><\/strong>\r\n\t\t\t\t\t\tstation costs, and <strong>&pound;<span id=\"total-badge-price\"><\/span><\/strong> badge costs. Please note that all prices exclude vat.\r\n\t\t\t\t\t\t<br>\r\n\t\t\t\t\t\t<\/p>\r\n\t\t\t\t\t\tIf you\u2019d like to make a formal inquiry or check availability, please provide your details below.\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<label for=\"yes\">Yes<\/label>\r\n\t\t\t\t\t<input type=\"radio\" class=\"stationType\" name=\"YesNo\" value=\"yes\" id=\"yes\">\r\n\t\t\t\t\t<label for=\"laptop\">No<\/label>\r\n\t\t\t\t\t<input type=\"radio\" class=\"stationType\" name=\"YesNo\" value=\"no\" id=\"no\">\r\n\t\t\t\t<\/div>\r\n\t\t\t\t<div id=\"step4\" class=\"step estimation-hidden\">\r\n\t\t\t\t\t<h1>Contact Information<\/h1>\r\n\t\t\t\t\t<div class=\"wpforms-container \" id=\"wpforms-2021\"><form id=\"wpforms-form-2021\" class=\"wpforms-validate wpforms-form wpforms-ajax-form\" data-formid=\"2021\" method=\"post\" enctype=\"multipart\/form-data\" action=\"\/en-gb\/wp-json\/wp\/v2\/pages\/1999\" data-token=\"d3fb28ea161ea45511c8702174f464cc\"><noscript class=\"wpforms-error-noscript\">Please enable JavaScript in your browser to complete this form.<\/noscript><div class=\"wpforms-field-container\"><div id=\"wpforms-2021-field_3-container\" class=\"wpforms-field wpforms-field-hidden\" data-field-id=\"3\"><input type=\"hidden\" id=\"wpforms-2021-field_3\" name=\"wpforms[fields][3]\"><\/div><div id=\"wpforms-2021-field_4-container\" class=\"wpforms-field wpforms-field-hidden\" data-field-id=\"4\"><input type=\"hidden\" id=\"wpforms-2021-field_4\" name=\"wpforms[fields][4]\"><\/div><div id=\"wpforms-2021-field_5-container\" class=\"wpforms-field wpforms-field-hidden\" data-field-id=\"5\"><input type=\"hidden\" id=\"wpforms-2021-field_5\" name=\"wpforms[fields][5]\"><\/div><div id=\"wpforms-2021-field_0-container\" class=\"wpforms-field wpforms-field-name\" data-field-id=\"0\"><label class=\"wpforms-field-label\" for=\"wpforms-2021-field_0\">Name <span class=\"wpforms-required-label\">*<\/span><\/label><div class=\"wpforms-field-row wpforms-field-medium\"><div class=\"wpforms-field-row-block wpforms-first wpforms-one-half\"><input type=\"text\" id=\"wpforms-2021-field_0\" class=\"wpforms-field-name-first wpforms-field-required\" name=\"wpforms[fields][0][first]\" required><label for=\"wpforms-2021-field_0\" class=\"wpforms-field-sublabel after \">First<\/label><\/div><div class=\"wpforms-field-row-block wpforms-one-half\"><input type=\"text\" id=\"wpforms-2021-field_0-last\" class=\"wpforms-field-name-last wpforms-field-required\" name=\"wpforms[fields][0][last]\" required><label for=\"wpforms-2021-field_0-last\" class=\"wpforms-field-sublabel after \">Last<\/label><\/div><\/div><\/div><div id=\"wpforms-2021-field_1-container\" class=\"wpforms-field wpforms-field-email\" data-field-id=\"1\"><label class=\"wpforms-field-label\" for=\"wpforms-2021-field_1\">Email <span class=\"wpforms-required-label\">*<\/span><\/label><input type=\"email\" id=\"wpforms-2021-field_1\" class=\"wpforms-field-medium wpforms-field-required\" name=\"wpforms[fields][1]\" spellcheck=\"false\" required><\/div><\/div><!-- .wpforms-field-container --><div class=\"wpforms-submit-container\" ><input type=\"hidden\" name=\"wpforms[id]\" value=\"2021\"><input type=\"hidden\" name=\"wpforms[author]\" value=\"1\"><button type=\"submit\" name=\"wpforms[submit]\" id=\"wpforms-submit-2021\" class=\"wpforms-submit\" data-alt-text=\"Sending\u2026\" data-submit-text=\"Submit\" aria-live=\"assertive\" value=\"wpforms-submit\">Submit<\/button><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/pinstripe-group.com\/wp-content\/plugins\/wpforms\/assets\/images\/submit-spin.svg\" class=\"wpforms-submit-spinner\" style=\"display: none;\" width=\"26\" height=\"26\" alt=\"Loading\"><\/div><\/form><\/div>  <!-- .wpforms-container -->  \r\n\t\t\t\t<\/div>\r\n\t\t\t\t<div id=\"step5\" class=\"step estimation-hidden\">\r\n\t\t\t\t\t<h1>Feedback<\/h1>\r\n\t\t\t\t\t<div class=\"wpforms-container \" id=\"wpforms-2025\"><form id=\"wpforms-form-2025\" class=\"wpforms-validate wpforms-form wpforms-ajax-form\" data-formid=\"2025\" method=\"post\" enctype=\"multipart\/form-data\" action=\"\/en-gb\/wp-json\/wp\/v2\/pages\/1999\" data-token=\"1b91420186cc6241fa4dc87b7342c284\"><noscript class=\"wpforms-error-noscript\">Please enable JavaScript in your browser to complete this form.<\/noscript><div class=\"wpforms-field-container\"><div id=\"wpforms-2025-field_1-container\" class=\"wpforms-field wpforms-field-textarea\" data-field-id=\"1\"><label class=\"wpforms-field-label\" for=\"wpforms-2025-field_1\">Feedback <span class=\"wpforms-required-label\">*<\/span><\/label><textarea id=\"wpforms-2025-field_1\" class=\"wpforms-field-medium wpforms-field-required\" name=\"wpforms[fields][1]\" required><\/textarea><div class=\"wpforms-field-description\">Let us know what you were expecting or how we can do better in future.<\/div><\/div><\/div><!-- .wpforms-field-container --><input type=\"hidden\" name=\"wpforms[recaptcha]\" value=\"\"><div class=\"wpforms-submit-container\" ><input type=\"hidden\" name=\"wpforms[id]\" value=\"2025\"><input type=\"hidden\" name=\"wpforms[author]\" value=\"1\"><button type=\"submit\" name=\"wpforms[submit]\" id=\"wpforms-submit-2025\" class=\"wpforms-submit\" data-alt-text=\"Sending\u2026\" data-submit-text=\"Submit\" aria-live=\"assertive\" value=\"wpforms-submit\">Submit<\/button><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/pinstripe-group.com\/wp-content\/plugins\/wpforms\/assets\/images\/submit-spin.svg\" class=\"wpforms-submit-spinner\" style=\"display: none;\" width=\"26\" height=\"26\" alt=\"Loading\"><\/div><\/form><\/div>  <!-- .wpforms-container -->\t\t\t\t<\/div>\r\n\t\t\t\t<div class = 'clear-button-block'>\r\n\t\t\t\t\t<button class = \"clearButton\" type=\"reset\" value=\"Reset\">clear<\/button> \r\n\t\t\t\t<\/div>\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"total-card\" id=\"total-card\">\r\n\t\t\t\t<div class=\"total-card-inner\">\r\n\t\t\t\t\t<img decoding=\"async\" class=\"card-img\" src=\"https:\/\/pinstripe-group.com\/wp-content\/uploads\/2023\/06\/pinstripe_logo_transparent-300x141.png\">\r\n\t\t\t\t\t<h3 id=\"total-heading\">Total<\/h3>\r\n\t\t\t\t\t<hr id=\"total-divider\">\r\n\t\t\t\t\t<h3 id=\"side-bar-price\">\u00a3<span id=\"side-bar-total-price\"><\/span><\/h3>\r\n\t\t\t\t\t<h4 style=\"font-size:0.95em;\">All prices exclude VAT<\/h4>\r\n\t\t\t\t\t<p><span id=\"amount-station-sidebar\"><\/span> <span id=\"type_of_device_sidebar\"><\/span> <\/p>\r\n\t\t\t\t\t<p id = 'attendees-count'><\/span><span id=\"attendees_sidebar\"><\/span> Attendees<\/p>\r\n\t\t\t\t\t<hr id=\"total-divider\">\r\n\t\t\t\t\t<button class = \"clearButton\" type=\"reset\" value=\"Reset\">clear<\/button> \r\n\t\t\t\t<\/div>                               \r\n\t\t\t<\/div>  \r\n\t\t<\/div>\r\n\t<\/div>\r\n<\/div>\r\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Product Cost Estimator Choose an Option 32-inch Touch Screens Customised BrandingHighly adaptable and scalableUser-friendly Interfaces Laptop Solution Easy Access ControlQuick Check-inBudget Friendly How many people will be attending? 200-250250-350350-450450-550550-650650-750800+ More than 1000? Next &gt; Estimate We would recommend using in order to be able to support around attendees Based on an estimate of 1 day &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/\"> <span class=\"screen-reader-text\">Price Calculator<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","footnotes":""},"class_list":["post-1999","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.11 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Price Calculator - Pinstripe Group<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Price Calculator - Pinstripe Group\" \/>\n<meta property=\"og:description\" content=\"Product Cost Estimator Choose an Option 32-inch Touch Screens Customised BrandingHighly adaptable and scalableUser-friendly Interfaces Laptop Solution Easy Access ControlQuick Check-inBudget Friendly How many people will be attending? 200-250250-350350-450450-550550-650650-750800+ More than 1000? Next &gt; Estimate We would recommend using in order to be able to support around attendees Based on an estimate of 1 day &hellip; Price Calculator Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Pinstripe Group\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/pinstripegroup\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-08T21:56:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/07\/32inch-touch-1-169x300.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@pinstripe_group\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/\",\"url\":\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/\",\"name\":\"Price Calculator - Pinstripe Group\",\"isPartOf\":{\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/#website\"},\"datePublished\":\"2023-09-21T09:26:57+00:00\",\"dateModified\":\"2023-10-08T21:56:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/pinstripe-group.com\/en-gb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Price Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/#website\",\"url\":\"https:\/\/pinstripe-group.com\/en-gb\/\",\"name\":\"Pinstripe\",\"description\":\"Conference &amp; Event Registration Specialists\",\"publisher\":{\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pinstripe-group.com\/en-gb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/#organization\",\"name\":\"Pinstripe Group\",\"url\":\"https:\/\/pinstripe-group.com\/en-gb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/06\/pinstripe_logo_transparent.png\",\"contentUrl\":\"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/06\/pinstripe_logo_transparent.png\",\"width\":1280,\"height\":600,\"caption\":\"Pinstripe Group\"},\"image\":{\"@id\":\"https:\/\/pinstripe-group.com\/en-gb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/pinstripegroup\",\"https:\/\/twitter.com\/pinstripe_group\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Price Calculator - Pinstripe Group","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/","og_locale":"en_GB","og_type":"article","og_title":"Price Calculator - Pinstripe Group","og_description":"Product Cost Estimator Choose an Option 32-inch Touch Screens Customised BrandingHighly adaptable and scalableUser-friendly Interfaces Laptop Solution Easy Access ControlQuick Check-inBudget Friendly How many people will be attending? 200-250250-350350-450450-550550-650650-750800+ More than 1000? Next &gt; Estimate We would recommend using in order to be able to support around attendees Based on an estimate of 1 day &hellip; Price Calculator Read More &raquo;","og_url":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/","og_site_name":"Pinstripe Group","article_publisher":"https:\/\/www.facebook.com\/pinstripegroup","article_modified_time":"2023-10-08T21:56:13+00:00","og_image":[{"url":"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/07\/32inch-touch-1-169x300.png"}],"twitter_card":"summary_large_image","twitter_site":"@pinstripe_group","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/","url":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/","name":"Price Calculator - Pinstripe Group","isPartOf":{"@id":"https:\/\/pinstripe-group.com\/en-gb\/#website"},"datePublished":"2023-09-21T09:26:57+00:00","dateModified":"2023-10-08T21:56:13+00:00","breadcrumb":{"@id":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pinstripe-group.com\/en-gb\/price-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pinstripe-group.com\/en-gb\/"},{"@type":"ListItem","position":2,"name":"Price Calculator"}]},{"@type":"WebSite","@id":"https:\/\/pinstripe-group.com\/en-gb\/#website","url":"https:\/\/pinstripe-group.com\/en-gb\/","name":"Pinstripe","description":"Conference &amp; Event Registration Specialists","publisher":{"@id":"https:\/\/pinstripe-group.com\/en-gb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pinstripe-group.com\/en-gb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/pinstripe-group.com\/en-gb\/#organization","name":"Pinstripe Group","url":"https:\/\/pinstripe-group.com\/en-gb\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/pinstripe-group.com\/en-gb\/#\/schema\/logo\/image\/","url":"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/06\/pinstripe_logo_transparent.png","contentUrl":"https:\/\/pinstripe.preview.aquarorke.co.za\/wp-content\/uploads\/2023\/06\/pinstripe_logo_transparent.png","width":1280,"height":600,"caption":"Pinstripe Group"},"image":{"@id":"https:\/\/pinstripe-group.com\/en-gb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/pinstripegroup","https:\/\/twitter.com\/pinstripe_group"]}]}},"_links":{"self":[{"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/pages\/1999","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/comments?post=1999"}],"version-history":[{"count":1,"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/pages\/1999\/revisions"}],"predecessor-version":[{"id":2000,"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/pages\/1999\/revisions\/2000"}],"wp:attachment":[{"href":"https:\/\/pinstripe-group.com\/en-gb\/wp-json\/wp\/v2\/media?parent=1999"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}