{"id":3713,"date":"2022-11-14T19:27:20","date_gmt":"2022-11-14T19:27:20","guid":{"rendered":"https:\/\/dev.rental.software\/concierge989\/?page_id=3713"},"modified":"2026-03-27T15:28:34","modified_gmt":"2026-03-27T15:28:34","slug":"all-items","status":"publish","type":"page","link":"https:\/\/dev.rental.software\/concierge989\/all-items\/","title":{"rendered":"All Items"},"content":{"rendered":"\r\n<!-- Start Shortcoder content --><!-- Cart -->\r\n<div class=\"cartInfo\" style=\"display:none\">\r\n    <i class=\"cartIcon fas fa-shopping-cart\"><\/i><!--no linebreak bc elementor--> <span class=\"simpleCart_quantity\"><\/span> items\r\n<\/div>\r\n\r\n<div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n    <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n        <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n        <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n    <\/div>\r\n<\/div>\r\n<div class=\"io_category_wrapper elementor-widget-heading\">\r\n    <h1 class=\"catNameIO elementor-heading-title elementor-size-default\">Items<span class=\"io_forrent io_forrent_Items\"> for Rent<\/span><\/h1>\r\n<\/div>\r\n\r\n<!-- Add View Toggle Buttons -->\r\n<div class=\"io_view_toggle_container\" style=\"display:none;\">\r\n    <div class=\"io_view_toggle_buttons\">\r\n        <button class=\"io_view_toggle_btn active\" data-view=\"tile\" title=\"Tile View\">\r\n            <i class=\"fas fa-th-large\"><\/i>\r\n        <\/button>\r\n        <button class=\"io_view_toggle_btn\" data-view=\"list\" title=\"List View\">\r\n            <i class=\"fas fa-list\"><\/i>\r\n        <\/button>\r\n    <\/div>\r\n<\/div>\r\n<div class=\"category_id\" style=\"display: none\">Items<\/div>\r\n<div class=\"cat_div_wrapper\"><div class=\"io_cat_description io_cat_description_Items elementor-widget-text-editor catDescriptionIO\"><\/div><\/div>\r\n<div class=\"io_catdiv2\"><\/div>\r\n<div class=\"io_landingpages io_landingpages_Items elementor-widget-text-editor\"><!-- Start Shortcoder content -->Professional delivery to <span class=\\\"io_city_list\\\">Milton DE<\/span> and surrounding areas. Please submit a quote or contact us to be sure we service your area.<!-- End Shortcoder content --><\/div>\r\n<div class=\"io_cat_longdescription io_cat_longdescription_Items elementor-widget-text-editor\"><\/div>\r\n<script>\r\n    function CategoryGallery(rental_id, rental_name, images_arr){\r\n        var rid = rental_id;\r\n        var rentalName = rental_name;\r\n\r\n        \/\/ Normalize images_arr: it may arrive as a JSON string, an object, or be undefined\r\n        try {\r\n            if (typeof images_arr === 'string' && images_arr.length) {\r\n                images_arr = JSON.parse(images_arr);\r\n            }\r\n        } catch (e) {\r\n            images_arr = {};\r\n        }\r\n        if (!images_arr) images_arr = {};\r\n\r\n        \/\/ Where to append anchors and thumbs\r\n        var $bigAfter = jQuery('#io_img_big2_' + rid);\r\n        var $thumbAfter = jQuery('#io_img_thumb1_' + rid);\r\n\r\n        if ($bigAfter.length && $thumbAfter.length) {\r\n            var relVal = $bigAfter.attr('rel') || 'img_group noopener';\r\n\r\n            \/\/ Helper to validate a URL-like value (non-empty and not literal placeholders)\r\n            var isValid = function (u) {\r\n                if (!u) return false;\r\n                var s = String(u).trim();\r\n                if (!s) return false;\r\n                if (s.indexOf('%%') !== -1) return false; \/\/ ignore unreplaced placeholders\r\n                if (s === '0' || s.toLowerCase() === 'null' || s.toLowerCase() === 'undefined') return false;\r\n                return true;\r\n            };\r\n\r\n            var addedThumbs = 0;\r\n\r\n            \/\/ Iterate image map and append missing big anchors and thumbs\r\n            for (var key in images_arr) {\r\n                if (!images_arr.hasOwnProperty(key)) continue;\r\n                var imgObj = images_arr[key] || {};\r\n                var href = imgObj[\"rentalimage_imagelocbig\"] || imgObj[\"imagelocbig\"] || imgObj[\"big\"];\r\n                var src  = imgObj[\"rentalimage_imageloc\"]    || imgObj[\"imageloc\"]    || imgObj[\"thumb\"];\r\n\r\n                \/\/ Compute index consistent with existing templates\r\n                var n = parseInt(key, 10);\r\n                if (isNaN(n)) {\r\n                    \/\/ Try to derive from position by incrementing a counter if keys are not numeric\r\n                    n = 1;\r\n                }\r\n                \/\/ Category templates already include big1, big2, and thumb1; gallery adds 2+ when missing\r\n                var bigIndex = n + 1;   \/\/ matches io_cart_shortcode.html pattern\r\n                var thumbIndex = n + 1; \/\/ thumb id series aligns with big series in newer code\r\n\r\n                \/\/ Add big anchor if valid and not already present\r\n                if (isValid(href)) {\r\n                    var bigId = '#io_img_big' + bigIndex + '_' + rid;\r\n                    if (jQuery(bigId).length === 0) {\r\n                        var $a = jQuery('<a\/>', {\r\n                            rel: relVal,\r\n                            href: href,\r\n                            id: 'io_img_big' + bigIndex + '_' + rid\r\n                        });\r\n                        $bigAfter.after($a);\r\n                        $bigAfter = $a; \/\/ maintain insertion point\r\n                    }\r\n                }\r\n\r\n                \/\/ Add thumbnail if valid and not already present\r\n                if (isValid(src)) {\r\n                    var thumbId = '#io_img_thumb' + thumbIndex + '_' + rid;\r\n                    if (jQuery(thumbId).length === 0) {\r\n                        var $img = jQuery('<img\/>', {\r\n                            'class': 'io_image_thumb skip-lazy',\r\n                            title: rentalName,\r\n                            src: src,\r\n                            alt: rentalName,\r\n                            id: 'io_img_thumb' + thumbIndex + '_' + rid\r\n                        }).on('mouseover', function () {\r\n                            if (typeof updateMainPic === 'function') {\r\n                                updateMainPic(this);\r\n                            }\r\n                        });\r\n                        $thumbAfter.after($img);\r\n                        $thumbAfter = $img; \/\/ maintain insertion point\r\n                        addedThumbs++;\r\n                    }\r\n                }\r\n            }\r\n\r\n            \/\/ Reveal the thumbnail box if we added any extra thumbnails\r\n            if (addedThumbs > 0) {\r\n                jQuery('#io_img_thumb1_' + rid).closest('.io_image_thumbbox').show();\r\n            }\r\n        }\r\n    }\r\n\r\n    \/\/ Function to generate list view content on demand (global scope)\r\n    generateListViewContent = function() {\r\n        console.log('[IO List View] Generating list view content dynamically');\r\n        \r\n        jQuery('.io_item2_list').each(function() {\r\n            var $item = jQuery(this);\r\n            \r\n            \/\/ Skip if already generated\r\n            if ($item.find('.io_list_view_content').length > 0) {\r\n                return;\r\n            }\r\n            \r\n            \/\/ Extract rental_id from the item\r\n            var rentalId = $item.find('.item_rentalid').text().trim();\r\n            if (!rentalId) {\r\n                console.warn('[IO List View] No rental_id found for item, skipping');\r\n                return;\r\n            }\r\n            \r\n            \/\/ Read data from dynamically named global variables\r\n            \/\/ var description = String(window['data_description_' + rentalId] || \"\").replace(\/[\\r\\n]+\/g, \"\").trim();\r\n            var indoorOutdoor = String(window.io_category_data[rentalId][\"indoor_outdoor\"] || \"\").replace(\/[\\r\\n]+\/g, \"\").trim();\r\n            var staff = String(window.io_category_data[rentalId][\"staff\"] || \"\").replace(\/[\\r\\n]+\/g, \"\").trim();\r\n            var electric = String(window.io_category_data[rentalId][\"electric\"] || \"\").replace(\/[\\r\\n]+\/g, \"\").trim();\r\n            var dimensions = String(window.io_category_data[rentalId][\"dimensions\"] || \"\").replace(\/[\\r\\n]+\/g, \"\").trim();\r\n            \r\n            \/\/ Helper function to strip HTML tags from text\r\n            var stripHtml = function(html) {\r\n                var tmp = document.createElement(\"DIV\");\r\n                tmp.innerHTML = html;\r\n                return (tmp.textContent || tmp.innerText || \"\").trim();\r\n            };\r\n            \r\n            \/\/ Helper function to escape HTML to prevent XSS\r\n            var escapeHtml = function(text) {\r\n                var map = {\r\n                    '&': '&amp;',\r\n                    '<': '&lt;',\r\n                    '>': '&gt;',\r\n                    '\"': '&quot;',\r\n                    \"'\": '&#039;'\r\n                };\r\n                return text.replace(\/[&<>\"']\/g, function(m) { return map[m]; });\r\n            };\r\n            \r\n            \/\/ Strip HTML tags from description\r\n            \/\/ description = stripHtml(description);\r\n            \r\n            \/\/ Build the HTML structure with escaped content\r\n            var html = '<div class=\"io_list_view_content\">';\r\n            \/\/ html += '<div class=\"io_item_description_line\">' + escapeHtml(description) + '<\/div>';\r\n            html += '<div class=\"io_item_details_labeled\">';\r\n            \r\n            \/\/ Setup field - only add if valid\r\n            if (indoorOutdoor && indoorOutdoor !== '0' && indoorOutdoor.length > 0) {\r\n                html += '<div class=\"io_detail_item io_detail_setup\">';\r\n                html += '<span class=\"io_detail_label\">Setup:<\/span>';\r\n                html += '<span class=\"io_detail_value\">' + escapeHtml(indoorOutdoor) + '<\/span>';\r\n                html += '<\/div>';\r\n            }\r\n            \r\n            \/\/ Operators field - only add if valid\r\n            var operatorsText = staff ? staff + ' Adult Supervision Required' : \"\";\r\n            if (operatorsText &&\r\n                operatorsText !== '0 Adult Supervision Required' && \r\n                operatorsText !== 'Adult Supervision Required' &&\r\n                operatorsText !== '0') {\r\n                html += '<div class=\"io_detail_item io_detail_operators\">';\r\n                html += '<span class=\"io_detail_label\">Operators:<\/span>';\r\n                html += '<span class=\"io_detail_value\">' + escapeHtml(operatorsText) + '<\/span>';\r\n                html += '<\/div>';\r\n            }\r\n            \r\n            \/\/ Power field - only add if valid\r\n            var powerText = electric ? electric + ' Outlets' : \"\";\r\n            if (powerText &&\r\n                powerText !== '0 Outlets' && \r\n                powerText !== '0.00 Outlets' && \r\n                powerText !== 'Outlets' &&\r\n                powerText !== '0') {\r\n                html += '<div class=\"io_detail_item io_detail_power\">';\r\n                html += '<span class=\"io_detail_label\">Power:<\/span>';\r\n                html += '<span class=\"io_detail_value\">' + escapeHtml(powerText) + '<\/span>';\r\n                html += '<\/div>';\r\n            }\r\n            \r\n            \/\/ Size field - only add if valid\r\n            if (dimensions && dimensions !== '0' && dimensions.length > 0) {\r\n                html += '<div class=\"io_detail_item io_detail_size\">';\r\n                html += '<span class=\"io_detail_label\">Size:<\/span>';\r\n                html += '<span class=\"io_detail_value\">' + escapeHtml(dimensions) + '<\/span>';\r\n                html += '<\/div>';\r\n            }\r\n            \r\n            html += '<\/div>'; \/\/ close io_item_details_labeled\r\n            html += '<\/div>'; \/\/ close io_list_view_content\r\n            \r\n            \/\/ Insert before the buttons container\r\n            $item.find('.io_buttons_container').before(html);\r\n        });\r\n    }\r\n\r\n    jQuery(document).ready(function($) {\r\n\r\n    jQuery(\".io_item2_list\").each(function(){\r\n        var rentalId = jQuery(this).find('.item_rentalid').text().trim();\r\n        if (io_categoryVariantImages == 'on'){\r\n            CategoryGallery(rentalId, window.io_category_data[rentalId]['rental_name'], window.io_category_data[rentalId][\"images_arr\"]);\r\n        }\r\n    });\r\n\r\n\r\n    console.log('[IO View Toggle] Document ready, initializing view toggle functionality');\r\n    \r\n    \/\/ Check if category_id has a numeric value to identify actual category pages\r\n    \/\/ This must happen before any view state is applied\r\n    var categoryId = $('.category_id').text().trim();\r\n    var hasNumericCategoryId = categoryId && !isNaN(categoryId) && categoryId.length > 0;\r\n    \r\n    if (!hasNumericCategoryId) {\r\n        console.log('[IO View Toggle] No valid numeric category ID found, this is not a category page - skipping initialization');\r\n        return;\r\n    }\r\n    \r\n    console.log('[IO View Toggle] Category page detected with categoryId:', categoryId);\r\n    $('body').addClass('io-has-category-id');\r\n    \r\n    \/\/ Show the toggle buttons on category pages\r\n    $('.io_view_toggle_container').show();\r\n    console.log('[IO View Toggle] Toggle buttons displayed for category page');\r\n    \r\n    \/\/ Track if view toggle has been initialized\r\n    var isInitialized = false;\r\n    \r\n    \/\/ Initialize view toggle functionality\r\n    function initViewToggle(force) {\r\n        \/\/ Skip if already initialized unless forced\r\n        if (isInitialized && !force) {\r\n            console.log('[IO View Toggle] Already initialized, skipping');\r\n            return;\r\n        }\r\n        \r\n        console.log('[IO View Toggle] Initializing view toggle functionality');\r\n        \r\n        \/\/ Check if toggle buttons exist\r\n        if ($('.io_view_toggle_btn').length === 0) {\r\n            console.warn('[IO View Toggle] Toggle buttons not found in DOM');\r\n            return;\r\n        }\r\n        console.log('[IO View Toggle] Found', $('.io_view_toggle_btn').length, 'toggle buttons');\r\n        \r\n        \/\/ Check if category container exists\r\n        if ($('.io_catdiv2').length === 0) {\r\n            console.warn('[IO View Toggle] Category container (.io_catdiv2) not found');\r\n            return;\r\n        }\r\n        console.log('[IO View Toggle] Found', $('.io_catdiv2').length, 'category containers');\r\n        \r\n        \/\/ Get saved view preference from localStorage\r\n        var savedView = localStorage.getItem('io_category_view') || 'tile';\r\n        console.log('[IO View Toggle] Retrieved saved view preference:', savedView);\r\n        \r\n        \/\/ Set initial view\r\n        $('.io_catdiv2').removeClass('tile-view list-view').addClass(savedView + '-view');\r\n        console.log('[IO View Toggle] Applied initial view class:', savedView + '-view');\r\n        \r\n        \/\/ Update button states\r\n        $('.io_view_toggle_btn').removeClass('active');\r\n        $('.io_view_toggle_btn[data-view=\"' + savedView + '\"]').addClass('active');\r\n        console.log('[IO View Toggle] Updated button states, active button:', savedView);\r\n        \r\n        \/\/ Generate list view content if initial view is list\r\n        if (savedView === 'list') {\r\n            if (typeof generateListViewContent === 'function') {\r\n                generateListViewContent();\r\n            } else {\r\n                console.warn('[IO View Toggle] generateListViewContent function not available yet');\r\n            }\r\n        }\r\n        \r\n        \/\/ Log current items count\r\n        var itemCount = $('.io_item2_list').length;\r\n        console.log('[IO View Toggle] Found', itemCount, 'items in category');\r\n        \r\n        \/\/ Handle toggle button clicks using native JavaScript for better compatibility\r\n        \/\/ Remove any existing event listeners first\r\n        $('.io_view_toggle_btn').off('click.viewToggle');\r\n        \r\n        \/\/ Use native JavaScript addEventListener for more reliable event handling\r\n        var buttons = document.querySelectorAll('.io_view_toggle_btn');\r\n        console.log('[IO View Toggle] Attaching event listeners to', buttons.length, 'buttons using native JS');\r\n        \r\n        buttons.forEach(function(button) {\r\n            \/\/ Remove any existing listener\r\n            var newButton = button.cloneNode(true);\r\n            button.parentNode.replaceChild(newButton, button);\r\n            \r\n            \/\/ Add fresh event listener\r\n            newButton.addEventListener('click', function(e) {\r\n                e.preventDefault();\r\n                e.stopPropagation();\r\n                \r\n                var view = this.getAttribute('data-view');\r\n                console.log('[IO View Toggle] Button clicked (native listener), switching to view:', view);\r\n                \r\n                \/\/ Generate list view content if switching to list view\r\n                if (view === 'list') {\r\n                    if (typeof generateListViewContent === 'function') {\r\n                        generateListViewContent();\r\n                    } else {\r\n                        console.warn('[IO View Toggle] generateListViewContent function not available');\r\n                    }\r\n                }\r\n                \r\n                \/\/ Update button states\r\n                document.querySelectorAll('.io_view_toggle_btn').forEach(function(btn) {\r\n                    btn.classList.remove('active');\r\n                });\r\n                this.classList.add('active');\r\n                console.log('[IO View Toggle] Updated button active states');\r\n                \r\n                \/\/ Update grid view\r\n                var catdiv = document.querySelector('.io_catdiv2');\r\n                if (catdiv) {\r\n                    catdiv.classList.remove('tile-view', 'list-view');\r\n                    catdiv.classList.add(view + '-view');\r\n                    console.log('[IO View Toggle] Applied view class:', view + '-view');\r\n                }\r\n                \r\n                \/\/ Save preference\r\n                localStorage.setItem('io_category_view', view);\r\n                console.log('[IO View Toggle] Saved view preference to localStorage:', view);\r\n                \r\n                \/\/ Debug: Log current layout state\r\n                setTimeout(function() {\r\n                    if (catdiv) {\r\n                        var containerClasses = catdiv.className;\r\n                        var visibleItems = document.querySelectorAll('.io_item2_list:not([style*=\"display: none\"])').length;\r\n                        console.log('[IO View Toggle] Layout updated - Container classes:', containerClasses);\r\n                        console.log('[IO View Toggle] Visible items after view change:', visibleItems);\r\n                        \r\n                        \/\/ Check if list view content is properly shown\/hidden\r\n                        if (view === 'list') {\r\n                            var visibleListContent = document.querySelectorAll('.io_list_view_content:not([style*=\"display: none\"])').length;\r\n                            console.log('[IO View Toggle] Visible list content elements:', visibleListContent);\r\n                        }\r\n                    }\r\n                }, 100);\r\n            }, true); \/\/ Use capture phase\r\n            \r\n            console.log('[IO View Toggle] Event listener attached to button:', newButton.getAttribute('data-view'));\r\n        });\r\n        \r\n        console.log('[IO View Toggle] Event handlers attached successfully');\r\n        \r\n        \/\/ Mark as initialized\r\n        isInitialized = true;\r\n    }\r\n    \r\n    \/\/ Initialize when page loads\r\n    console.log('[IO View Toggle] Starting initial setup');\r\n    initViewToggle();\r\n    \r\n    \/\/ Also initialize after dynamic content loads (if applicable)\r\n    $(document).on('io_content_loaded', function() {\r\n        console.log('[IO View Toggle] Dynamic content loaded event detected, reinitializing');\r\n        initViewToggle();\r\n    });\r\n    \r\n    \/\/ Debug: Monitor for DOM changes that might affect our functionality\r\n    if (typeof MutationObserver !== 'undefined') {\r\n        var mutationTimeout;\r\n        var lastItemCount = $('.io_item2_list').length;\r\n        \r\n        var observer = new MutationObserver(function(mutations) {\r\n            \/\/ Debounce: clear existing timeout and set a new one\r\n            clearTimeout(mutationTimeout);\r\n            \r\n            mutationTimeout = setTimeout(function() {\r\n                var currentItemCount = $('.io_item2_list').length;\r\n                \r\n                \/\/ Only trigger if we have new items that weren't there before\r\n                if (currentItemCount > lastItemCount) {\r\n                    console.log('[IO View Toggle] New items detected in DOM (' + lastItemCount + ' -> ' + currentItemCount + ')');\r\n                    lastItemCount = currentItemCount;\r\n                    \r\n                    \/\/ If already initialized, just generate list view content for new items if in list view\r\n                    if (isInitialized) {\r\n                        var currentView = localStorage.getItem('io_category_view') || 'tile';\r\n                        if (currentView === 'list') {\r\n                            console.log('[IO View Toggle] Generating list view content for new items');\r\n                            if (typeof generateListViewContent === 'function') {\r\n                                generateListViewContent();\r\n                            } else {\r\n                                console.warn('[IO View Toggle] generateListViewContent function not available');\r\n                            }\r\n                        }\r\n                    } else {\r\n                        \/\/ Not initialized yet, so initialize\r\n                        console.log('[IO View Toggle] Initializing due to new items');\r\n                        initViewToggle();\r\n                    }\r\n                }\r\n            }, 250); \/\/ 250ms debounce\r\n        });\r\n        \r\n        observer.observe(document.body, {\r\n            childList: true,\r\n            subtree: true\r\n        });\r\n        console.log('[IO View Toggle] DOM mutation observer started');\r\n    }\r\n    \r\n    \/\/ Debug: Log window resize events that might affect responsive layout\r\n    $(window).on('resize.viewToggle', function() {\r\n        var windowWidth = $(window).width();\r\n        var currentView = $('.io_catdiv2').hasClass('list-view') ? 'list' : 'tile';\r\n        console.log('[IO View Toggle] Window resized to:', windowWidth, 'px, current view:', currentView);\r\n    });\r\n    \r\n    console.log('[IO View Toggle] Initialization complete');\r\n});\r\n<\/script><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Bath Mat $5 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-mat\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bath Mat_1741630654.jfif\" alt=\"Bath Mat $5 ea\" title=\"Bath Mat $5 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-mat\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Bath Mat $5 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Bath+Mat+%245+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714893<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714893\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Bath Towels - $5 \u2013 $8 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-towels-5-00-180-00\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Towel Single Bundle Deluxe_1741632504_1744350314.jpg\" alt=\"Bath Towels - $5 \u2013 $8 ea\" title=\"Bath Towels - $5 \u2013 $8 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-towels-5-00-180-00\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Bath Towels - $5 \u2013 $8 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Bath+Towels+-+%245+%E2%80%93+%248+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2781137<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Textbox<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2781137\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach & Bath Towel Bundle $240-$270\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-bath-towel-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Towel Beach and Bath Bundle_1741632945.jpg\" alt=\"Beach & Bath Towel Bundle $240-$270\" title=\"Beach & Bath Towel Bundle $240-$270\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-bath-towel-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach & Bath Towel Bundle $240-$270<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+%26+Bath+Towel+Bundle+%24240-%24270<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715273<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715273\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Towels $8 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-towels\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Beach Towel 2_1741632795.jpg\" alt=\"Beach Towels $8 ea\" title=\"Beach Towels $8 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-towels\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Towels $8 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Towels+%248+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715347<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715347\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Bed Making (Up to 10 Beds)- S155\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/bed-making-up-to-10-beds\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bed Making_1741634861.jpg\" alt=\"Bed Making (Up to 10 Beds)- S155\" title=\"Bed Making (Up to 10 Beds)- S155\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/bed-making-up-to-10-beds\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Bed Making (Up to 10 Beds)- S155<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Bed+Making+%28Up+to+10+Beds%29-+S155<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2716211<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$155.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2716211\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Blankets - $20 - $24\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/blankets\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Blankets 2_1741632927.jpg\" alt=\"Blankets - $20 - $24\" title=\"Blankets - $20 - $24\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/blankets\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Blankets - $20 - $24<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Blankets+-+%2420+-+%2424<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715379<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715379\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/deluxe-bed-bath-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bundle_1741635306.jpg\" alt=\"Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00\" title=\"Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/deluxe-bed-bath-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Deluxe+Bed+%26+Bath+Bundle+-+%2438.00+%E2%80%93+%2493.00<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715011<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715011\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Deluxe Sheet Set- $24-$27\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/deluxe-sheet-set\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Sheet Set 1_1741630892.jpg\" alt=\"Deluxe Sheet Set- $24-$27\" title=\"Deluxe Sheet Set- $24-$27\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/deluxe-sheet-set\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Deluxe Sheet Set- $24-$27<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Deluxe+Sheet+Set-+%2424-%2427<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714687<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714687\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Dish Cloths $2 ea \/ week\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/dish-cloths\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0215_1746376399.png\" alt=\"Dish Cloths $2 ea \/ week\" title=\"Dish Cloths $2 ea \/ week\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/dish-cloths\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Dish Cloths $2 ea \/ week<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Dish+Cloths+%242+ea+%2F+week<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722059<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722059\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Double Bath Bundle - $23 - $34\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/double-bath-bundle-23-00-66-00\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Sheet-Towel-Bundles_1744322489_1744354320.jpg\" alt=\"Double Bath Bundle - $23 - $34\" title=\"Double Bath Bundle - $23 - $34\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/double-bath-bundle-23-00-66-00\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Double Bath Bundle - $23 - $34<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Double+Bath+Bundle+-+%2423+-+%2434<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2781119<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2781119\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Hand Towel $4 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/towels\/hand-towel\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Hand Towel Single_1741631345.jpg\" alt=\"Hand Towel $4 ea\" title=\"Hand Towel $4 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/towels\/hand-towel\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Hand Towel $4 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Hand+Towel+%244+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714877<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714877\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_King Pillow Cases\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/king-pillow-cases\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Pillow Case_1741634705_1744354263.jpg\" alt=\"King Pillow Cases\" title=\"King Pillow Cases\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/king-pillow-cases\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">King Pillow Cases<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">King+Pillow+Cases<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2721971<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2721971\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Kitchen Towels $3 ea \/ week\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/kitchen-towels\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0214_1746376301.jpeg\" alt=\"Kitchen Towels $3 ea \/ week\" title=\"Kitchen Towels $3 ea \/ week\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/kitchen-towels\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Kitchen Towels $3 ea \/ week<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Kitchen+Towels+%243+ea+%2F+week<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722069<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722069\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Sheets for the Entire House (up to 10 Sets)\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/sheets-for-the-entire-house-10-sets\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Linens for the entire house_1741635734.jpg\" alt=\"Sheets for the Entire House (up to 10 Sets)\" title=\"Sheets for the Entire House (up to 10 Sets)\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/sheets-for-the-entire-house-10-sets\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Sheets for the Entire House (up to 10 Sets)<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Sheets+for+the+Entire+House+%28up+to+10+Sets%29<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2716161<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2716161\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Single Bath Bundle $18 - $21\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/single-bath-bundle-11-50-36-00\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bundle2_1741635953 (1)_1744354365.jpg\" alt=\"Single Bath Bundle $18 - $21\" title=\"Single Bath Bundle $18 - $21\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/single-bath-bundle-11-50-36-00\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Single Bath Bundle $18 - $21<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Single+Bath+Bundle+%2418+-+%2421<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2781117<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2781117\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Sponges\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/sponges\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"\" alt=\"Sponges\" title=\"Sponges\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/sponges\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Sponges<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Sponges<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722065<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722065\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Standard Bed & Bath Bundle - $23 \u2013 $44\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-bed-bath-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bundle2_1741635953.jpg\" alt=\"Standard Bed & Bath Bundle - $23 \u2013 $44\" title=\"Standard Bed & Bath Bundle - $23 \u2013 $44\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-bed-bath-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Standard Bed & Bath Bundle - $23 \u2013 $44<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Standard+Bed+%26+Bath+Bundle+-+%2423+%E2%80%93+%2444<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714971<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714971\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Standard Pillowcase\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-pillowcase\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Pillow Case_1741634705.jpg\" alt=\"Standard Pillowcase\" title=\"Standard Pillowcase\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-pillowcase\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Standard Pillowcase<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Standard+Pillowcase<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715771<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715771\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Standard Sheet Set $14 - $17 ea \/ week\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-sheet-set\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Sheet Set 2_1741631000.jpg\" alt=\"Standard Sheet Set $14 - $17 ea \/ week\" title=\"Standard Sheet Set $14 - $17 ea \/ week\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-sheet-set\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Standard Sheet Set $14 - $17 ea \/ week<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Standard+Sheet+Set+%2414+-+%2417+ea+%2F+week<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714655<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714655\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Wash Cloth $3 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/wash-cloth\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Washcloth 2_1741631036.jpg\" alt=\"Wash Cloth $3 ea\" title=\"Wash Cloth $3 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/wash-cloth\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Wash Cloth $3 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Wash+Cloth+%243+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714853<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714853\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Linens & Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Welcome Package\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/welcome-package\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"\" alt=\"Welcome Package\" title=\"Welcome Package\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/welcome-package\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Welcome Package<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Welcome+Package<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722353<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$50.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722353\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Ax \/ Ball Throwing- Inflatable\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/ax-ball-throwing-inflatable\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/71q4XUfcAhL._AC_SX466__1753189107.jpg\" alt=\"Ax \/ Ball Throwing- Inflatable\" title=\"Ax \/ Ball Throwing- Inflatable\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/ax-ball-throwing-inflatable\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Ax \/ Ball Throwing- Inflatable<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Ax+%2F+Ball+Throwing-+Inflatable<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2934917<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$85.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2934917\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach & Bath Towel Bundle $240-$270\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-bath-towel-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Towel Beach and Bath Bundle_1741632945.jpg\" alt=\"Beach & Bath Towel Bundle $240-$270\" title=\"Beach & Bath Towel Bundle $240-$270\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-bath-towel-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach & Bath Towel Bundle $240-$270<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+%26+Bath+Towel+Bundle+%24240-%24270<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715273<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715273\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Chair\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-chair\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0222_1746386718.png\" alt=\"Beach Chair\" title=\"Beach Chair\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-chair\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Chair<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Chair<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722299<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722299\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Chair & Wagon Package\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-chair-wagon-package\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/2 Chair Wagon_1746388603.png\" alt=\"Beach Chair & Wagon Package\" title=\"Beach Chair & Wagon Package\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-chair-wagon-package\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Chair & Wagon Package<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Chair+%26+Wagon+Package<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722695<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$230.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722695\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Towels $8 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-towels\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Beach Towel 2_1741632795.jpg\" alt=\"Beach Towels $8 ea\" title=\"Beach Towels $8 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-towels\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Towels $8 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Towels+%248+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715347<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715347\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Umbrella\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-umbrella\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Umbrella_1745512640.jpg\" alt=\"Beach Umbrella\" title=\"Beach Umbrella\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-umbrella\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Umbrella<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Umbrella<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722305<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722305\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Wagon\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-wagon\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Wagon_1745508941.jpg\" alt=\"Beach Wagon\" title=\"Beach Wagon\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/beach-wagon\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Wagon<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Wagon<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722311<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722311\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Corn Hole\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/corn-hole\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Cornhole_1745511673.jpg\" alt=\"Corn Hole\" title=\"Corn Hole\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/corn-hole\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Corn Hole<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Corn+Hole<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722315<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$35.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722315\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Dog Crate\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/dog-kennel\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Dog Crate_1745510487.jpg\" alt=\"Dog Crate\" title=\"Dog Crate\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/dog-kennel\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Dog Crate<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Dog+Crate<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722331<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722331\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Double Beach Chair Package\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/double-beach-chair-package\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/2 Chair Package_1746388196.png\" alt=\"Double Beach Chair Package\" title=\"Double Beach Chair Package\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/double-beach-chair-package\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Double Beach Chair Package<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Double+Beach+Chair+Package<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722689<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722689\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Ladder Ball\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/ladder-ball\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/61Ajv1MhbeL._AC_SX466__1753189637.jpg\" alt=\"Ladder Ball\" title=\"Ladder Ball\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/ladder-ball\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Ladder Ball<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Ladder+Ball<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2934957<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$25.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2934957\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Single Metal Beach Chair Package\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/single-beach-chair-package\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Chair Package_1746388152.png\" alt=\"Single Metal Beach Chair Package\" title=\"Single Metal Beach Chair Package\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/single-beach-chair-package\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Single Metal Beach Chair Package<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Single+Metal+Beach+Chair+Package<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722683<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$90.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722683\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Umbrella Sand Anchor\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/umbrella-sand-anchor\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0232_1746390748.jpeg\" alt=\"Umbrella Sand Anchor\" title=\"Umbrella Sand Anchor\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/umbrella-sand-anchor\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Umbrella Sand Anchor<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Umbrella+Sand+Anchor<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722307<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$6.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722307\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beach Gear<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Vevor Beach Cart\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/vevor-beach-cart\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0221_1746384966.jpeg\" alt=\"Vevor Beach Cart\" title=\"Vevor Beach Cart\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beach-gear\/vevor-beach-cart\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Vevor Beach Cart<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Vevor+Beach+Cart<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2819055<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$50.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2819055\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Baby Gate\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/baby-gate\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Gate 1_1748549120.png\" alt=\"Baby Gate\" title=\"Baby Gate\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/baby-gate\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Baby Gate<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Baby+Gate<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2858563<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$20.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2858563\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Booster Seat\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/booster-seat\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Booster Seat 1_1745435121.jpg\" alt=\"Booster Seat\" title=\"Booster Seat\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/booster-seat\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Booster Seat<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Booster+Seat<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722729<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722729\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Double Running Stroller\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/double-running-stroller\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Double Running 1_1745436852.jpg\" alt=\"Double Running Stroller\" title=\"Double Running Stroller\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/double-running-stroller\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Double Running Stroller<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Double+Running+Stroller<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722733<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722733\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Full Size Crib\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/full-size-crib\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Crib1_1745438151.jpg\" alt=\"Full Size Crib\" title=\"Full Size Crib\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/full-size-crib\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Full Size Crib<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Full+Size+Crib<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722719<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722719\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Pack & Play\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/pack-play\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Pack and Play1_1745438495.jpg\" alt=\"Pack & Play\" title=\"Pack & Play\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/pack-play\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Pack & Play<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Pack+%26+Play<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722723<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722723\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Plastic 3 in 1 High Chair\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/plastic-3-in-1-high-chair\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/High Chair 1_1745435509.jpg\" alt=\"Plastic 3 in 1 High Chair\" title=\"Plastic 3 in 1 High Chair\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/plastic-3-in-1-high-chair\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Plastic 3 in 1 High Chair<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Plastic+3+in+1+High+Chair<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722725<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722725\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Single Running Stroller\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/single-running-stroller\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/SIngle Running 1_1745438274.jpg\" alt=\"Single Running Stroller\" title=\"Single Running Stroller\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/single-running-stroller\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Single Running Stroller<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Single+Running+Stroller<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722731<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722731\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Baby Equipment<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Wooden High Chair\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/wooden-high-chair\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Wooden High Chair 1_1745435987.jpg\" alt=\"Wooden High Chair\" title=\"Wooden High Chair\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/baby-equipment\/wooden-high-chair\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Wooden High Chair<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Wooden+High+Chair<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722727<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722727\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Kitchen Linen<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Dish Cloths $2 ea \/ week\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/dish-cloths\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0215_1746376399.png\" alt=\"Dish Cloths $2 ea \/ week\" title=\"Dish Cloths $2 ea \/ week\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/dish-cloths\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Dish Cloths $2 ea \/ week<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Dish+Cloths+%242+ea+%2F+week<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722059<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722059\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Kitchen Linen<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Kitchen Towels $3 ea \/ week\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/kitchen-towels\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/IMG_0214_1746376301.jpeg\" alt=\"Kitchen Towels $3 ea \/ week\" title=\"Kitchen Towels $3 ea \/ week\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/kitchen-towels\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Kitchen Towels $3 ea \/ week<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Kitchen+Towels+%243+ea+%2F+week<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722069<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722069\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Kitchen Linen<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Sponges\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/sponges\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"\" alt=\"Sponges\" title=\"Sponges\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/kitchen-linen\/sponges\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Sponges<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Sponges<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722065<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722065\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Bed Making (Up to 10 Beds)- S155\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/bed-making-up-to-10-beds\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bed Making_1741634861.jpg\" alt=\"Bed Making (Up to 10 Beds)- S155\" title=\"Bed Making (Up to 10 Beds)- S155\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/bed-making-up-to-10-beds\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Bed Making (Up to 10 Beds)- S155<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Bed+Making+%28Up+to+10+Beds%29-+S155<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2716211<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$155.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2716211\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Blankets - $20 - $24\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/blankets\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Blankets 2_1741632927.jpg\" alt=\"Blankets - $20 - $24\" title=\"Blankets - $20 - $24\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/blankets\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Blankets - $20 - $24<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Blankets+-+%2420+-+%2424<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715379<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715379\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/deluxe-bed-bath-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bundle_1741635306.jpg\" alt=\"Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00\" title=\"Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/deluxe-bed-bath-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Deluxe Bed & Bath Bundle - $38.00 \u2013 $93.00<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Deluxe+Bed+%26+Bath+Bundle+-+%2438.00+%E2%80%93+%2493.00<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715011<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715011\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Deluxe Sheet Set- $24-$27\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/deluxe-sheet-set\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Sheet Set 1_1741630892.jpg\" alt=\"Deluxe Sheet Set- $24-$27\" title=\"Deluxe Sheet Set- $24-$27\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/deluxe-sheet-set\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Deluxe Sheet Set- $24-$27<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Deluxe+Sheet+Set-+%2424-%2427<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714687<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714687\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_King Pillow Cases\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/king-pillow-cases\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Pillow Case_1741634705_1744354263.jpg\" alt=\"King Pillow Cases\" title=\"King Pillow Cases\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/king-pillow-cases\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">King Pillow Cases<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">King+Pillow+Cases<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2721971<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2721971\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Sheets for the Entire House (up to 10 Sets)\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/sheets-for-the-entire-house-10-sets\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Linens for the entire house_1741635734.jpg\" alt=\"Sheets for the Entire House (up to 10 Sets)\" title=\"Sheets for the Entire House (up to 10 Sets)\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/sheets-for-the-entire-house-10-sets\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Sheets for the Entire House (up to 10 Sets)<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Sheets+for+the+Entire+House+%28up+to+10+Sets%29<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2716161<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2716161\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Standard Bed & Bath Bundle - $23 \u2013 $44\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-bed-bath-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bundle2_1741635953.jpg\" alt=\"Standard Bed & Bath Bundle - $23 \u2013 $44\" title=\"Standard Bed & Bath Bundle - $23 \u2013 $44\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-bed-bath-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Standard Bed & Bath Bundle - $23 \u2013 $44<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Standard+Bed+%26+Bath+Bundle+-+%2423+%E2%80%93+%2444<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714971<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714971\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Standard Pillowcase\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-pillowcase\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Pillow Case_1741634705.jpg\" alt=\"Standard Pillowcase\" title=\"Standard Pillowcase\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-pillowcase\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Standard Pillowcase<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Standard+Pillowcase<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715771<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715771\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Standard Sheet Set $14 - $17 ea \/ week\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-sheet-set\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Sheet Set 2_1741631000.jpg\" alt=\"Standard Sheet Set $14 - $17 ea \/ week\" title=\"Standard Sheet Set $14 - $17 ea \/ week\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/standard-sheet-set\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Standard Sheet Set $14 - $17 ea \/ week<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Standard+Sheet+Set+%2414+-+%2417+ea+%2F+week<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714655<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714655\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Beds<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Welcome Package\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/welcome-package\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"\" alt=\"Welcome Package\" title=\"Welcome Package\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/beds\/welcome-package\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Welcome Package<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Welcome+Package<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2722353<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$50.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2722353\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Bath Mat $5 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-mat\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bath Mat_1741630654.jfif\" alt=\"Bath Mat $5 ea\" title=\"Bath Mat $5 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-mat\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Bath Mat $5 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Bath+Mat+%245+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714893<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Unlimited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714893\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Bath Towels - $5 \u2013 $8 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-towels-5-00-180-00\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Towel Single Bundle Deluxe_1741632504_1744350314.jpg\" alt=\"Bath Towels - $5 \u2013 $8 ea\" title=\"Bath Towels - $5 \u2013 $8 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/bath-towels-5-00-180-00\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Bath Towels - $5 \u2013 $8 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Bath+Towels+-+%245+%E2%80%93+%248+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2781137<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Textbox<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2781137\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach & Bath Towel Bundle $240-$270\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-bath-towel-bundle\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Towel Beach and Bath Bundle_1741632945.jpg\" alt=\"Beach & Bath Towel Bundle $240-$270\" title=\"Beach & Bath Towel Bundle $240-$270\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-bath-towel-bundle\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach & Bath Towel Bundle $240-$270<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+%26+Bath+Towel+Bundle+%24240-%24270<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715273<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715273\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Beach Towels $8 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-towels\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Beach Towel 2_1741632795.jpg\" alt=\"Beach Towels $8 ea\" title=\"Beach Towels $8 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/beach-towels\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Beach Towels $8 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Beach+Towels+%248+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2715347<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2715347\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Double Bath Bundle - $23 - $34\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/double-bath-bundle-23-00-66-00\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Sheet-Towel-Bundles_1744322489_1744354320.jpg\" alt=\"Double Bath Bundle - $23 - $34\" title=\"Double Bath Bundle - $23 - $34\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/double-bath-bundle-23-00-66-00\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Double Bath Bundle - $23 - $34<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Double+Bath+Bundle+-+%2423+-+%2434<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2781119<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2781119\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Hand Towel $4 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/towels\/hand-towel\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Hand Towel Single_1741631345.jpg\" alt=\"Hand Towel $4 ea\" title=\"Hand Towel $4 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/towels\/hand-towel\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Hand Towel $4 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Hand+Towel+%244+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714877<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714877\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Single Bath Bundle $18 - $21\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/single-bath-bundle-11-50-36-00\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Bundle2_1741635953 (1)_1744354365.jpg\" alt=\"Single Bath Bundle $18 - $21\" title=\"Single Bath Bundle $18 - $21\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/single-bath-bundle-11-50-36-00\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Single Bath Bundle $18 - $21<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Single+Bath+Bundle+%2418+-+%2421<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2781117<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2781117\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n<!-- Start Shortcoder content --><div class=\"pageDateRangeWrapper elementor-widget-button\">\r\n  <div class=\"elementor-button elementor-animation-grow\" onclick=\"checkAvailDateClick()\" style=\"display:block\">\r\n    <div class=\"ioDateRangeHeader\">Set Event Date<\/div>\r\n    <div id=\"pageDateRange\" class=\"ioDateRange\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n<h2 class=\"io_all_item_cat elementor-heading-title\">Bath Towels<\/h2>\r\n<div class=\"io_item2_listrent elementor-widget-heading simpleCart_ioShelfItem\" name=\"maindiv_Wash Cloth $3 ea\">\r\n  <a class=\"item_href\" href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/wash-cloth\/\">\r\n    <div class=\"cat_div\">\r\n      <img decoding=\"async\" class=\"cat_img item_image\" src=\"https:\/\/rental.software\/users\/ShoreStore\/images\/Washcloth 2_1741631036.jpg\" alt=\"Wash Cloth $3 ea\" title=\"Wash Cloth $3 ea\" \/>\r\n    <\/div>\r\n  <\/a>\r\n  <div class=\"cat_div_inner\">\r\n    <a href=\"https:\/\/dev.rental.software\/concierge989\/rentals\/linens-towels\/wash-cloth\/\">\r\n      <p class=\"elementor-heading-title rentNameIO item_name\">Wash Cloth $3 ea<\/p>\r\n      <p class=\"item_encoded\" style=\"display:none;\">Wash+Cloth+%243+ea<\/p>\r\n      <p class=\"item_rentalid\" style=\"display:none;\">2714853<\/p>\r\n      <p class=\"item_qtytype\" style=\"display:none;\">Limited<\/p>\r\n      <p class=\"item_inputtype\" style=\"display:none;\">Dropdown<\/p>\r\n      <span class=\"item_qtyincrement\" style=\"display:none;\">1<\/span>\r\n      <div class=\"item_timeslots\" style=\"display:none;\"><\/div>\r\n      <p class=\"rentNameIO_price\"><span style=\"font-style:italic;font-size:smaller;\">from<\/span> <span class=\"rentNameIO_pricespan\">$0.00<\/span><\/p>\r\n      <div class=\"elementor-widget-button add_cart_2714853\" style=\"display:inline-block;\">\r\n        <a class=\"item_add elementor-button elementor-size-sm elementor-animation-grow io_button rentNameIO_button\"\r\n           href=\"javascript:;\"><!--no linebreak bc elementor--> <i class=\"fas fa-shopping-cart\"><\/i><\/a>\r\n      <\/div>\r\n      <div class=\"unavailable_message\"  onclick=\"checkAvailDateClick()\">item unavailable (change date)<\/div>\r\n    <\/a>\r\n  <\/div>\r\n  <script>\r\n    jQuery(document).ready(function () {\r\n      jQuery(\".rentNameIO_pricespan\").each(function () {\r\n        if( !Number( this.textContent.replace(\/[^0-9.-]+\/g,\"\") ) ){\r\n          jQuery(this.parentElement).hide();\r\n        }\r\n      });\r\n    });\r\n  <\/script>\r\n<\/div><!-- End Shortcoder content -->\n\r\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"io_meta_description":"","footnotes":""},"class_list":["post-3713","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/pages\/3713","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/comments?post=3713"}],"version-history":[{"count":136,"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/pages\/3713\/revisions"}],"predecessor-version":[{"id":6644,"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/pages\/3713\/revisions\/6644"}],"wp:attachment":[{"href":"https:\/\/dev.rental.software\/concierge989\/wp-json\/wp\/v2\/media?parent=3713"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}