{"products":"\n            <section>\n            <div x-data=\"initToolbar()\"\n         class=\"toolbar toolbar-products flex justify-between items-center mb-[25px] sm:mt-0 mt-6\">\n                                    <p class=\"toolbar-amount text-sm leading-5 text-custom-lighter col-span-2 gap-x-1\" id=\"toolbar-amount\">\n            Items <span class=\"toolbar-number\">1<\/span>-<span class=\"toolbar-number\">20<\/span> of <span class=\"toolbar-number\">63<\/span>    <\/p>\n                \n                <div class=\"modes w-20 order-1 col-span-1 sm:col-span-2 md:col-span-1 lg:col-span-2\"><\/div>\n                    <div class=\"toolbar-sorter sorter flex items-center order-1 col-span-3 sm:col-span-6\n        md:col-span-3 lg:col-span-6 justify-end\">\n    <span class=\"mr-2 md:inline hidden sorter-label text-sm leading-5 font-normal text-custom-lighter\">\n        Sort By    <\/span>\n    <select data-role=\"sorter\"\n            class=\"form-select sorter-options mr-3 rounded-none bg-[#f0f0f0] pl-2.5 pr-6 text-sm leading-5 font-normal\"\n            aria-label=\"Sort By\"\n            @change=\"changeUrl(\n                'product_list_order',\n                $event.currentTarget.options[$event.currentTarget.selectedIndex].value,\n                options.orderDefault\n            )\">\n                    <option value=\"position\"\n                            >\n                Position            <\/option>\n                    <option value=\"name\"\n                            >\n                Product Name            <\/option>\n                    <option value=\"price\"\n                                    selected=\"selected\"\n                            >\n                Price            <\/option>\n            <\/select>\n            <a title=\"Set&#x20;Descending&#x20;Direction\"\n           href=\"#\"\n           class=\"action sorter-action sort-asc\"\n           @click.prevent=\"changeUrl('product_list_dir', 'desc', options.directionDefault)\"\n        >\n            <span class=\"text-[#757575] hover:text-custom-lighter\">\n                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"22\" viewBox=\"0 0 1200 1200\">\n                    <path fill=\"currentColor\" d=\"M599.992 0L131.243 703.131h252.546V1200h432.422V703.131h252.546L599.992 0z\"\/>\n                <\/svg>\n            <\/span>\n        <\/a>\n    <\/div>\n                        <\/div>\n<script>\n    function initToolbar() {\n        return {\n            options: {\"productListToolbarForm\":{\"mode\":\"product_list_mode\",\"direction\":\"product_list_dir\",\"order\":\"product_list_order\",\"limit\":\"product_list_limit\",\"modeDefault\":\"grid\",\"directionDefault\":\"asc\",\"orderDefault\":\"price\",\"limitDefault\":20,\"url\":\"https:\\\/\\\/www.tsport.ca\\\/dress-shirt.html\",\"formKey\":\"i3zxOi6gFwE9AMKL\",\"post\":false,\"page\":\"p\"}}.productListToolbarForm || {},\n            getUrlParams: function () {\n                let decode = window.decodeURIComponent,\n                    \/\/ urlPaths = this.options.url.split('?'),\n                    urlPaths = location.href.split('?'),\n                    urlParams = urlPaths[1] ? urlPaths[1].split('&') : [],\n                    params = {},\n                    parameters, i;\n\n                for (i = 0; i < urlParams.length; i++) {\n                    parameters = urlParams[i].split('=');\n                    params[decode(parameters[0])] = parameters[1] !== undefined ?\n                        decode(parameters[1].replace(\/\\+\/g, '%20')) :\n                        '';\n                }\n\n                return params;\n            },\n\n            getCurrentLimit: function () {\n                return this.getUrlParams()[this.options.limit] || this.options.limitDefault;\n            },\n\n            getCurrentPage: function () {\n                return this.getUrlParams()[this.options.page] || 1;\n            },\n\n            changeUrl(paramName, paramValue, defaultValue) {\n                let urlPaths = this.options.url.split('?'),\n                    baseUrl = urlPaths[0],\n                    paramData = this.getUrlParams(),\n                    currentPage = this.getCurrentPage(),\n                    newPage;\n                \/**\n                 * calculates the page on which the first item of the current page will\n                 * be with the new limit and sets that number as the new page\n                 *\/\n                if (currentPage > 1 && paramName === this.options.limit) {\n                    newPage = Math.floor(this.getCurrentLimit() * (currentPage - 1) \/ paramValue) + 1;\n                    if (newPage > 1) {\n                        paramData[this.options.page] = newPage;\n                    } else {\n                        delete paramData[this.options.page];\n                    }\n                }\n\n                paramData[paramName] = paramValue;\n                if (this.options.post) {\n                    hyva.postForm({action: baseUrl, data: paramData, skipUenc: true});\n                } else {\n                    if (paramValue === defaultValue.toString()) {\n                        delete paramData[paramName];\n                    }\n                    paramData = Object.keys(paramData).length === 0\n                        ? ''\n                        : '?' + (new URLSearchParams(paramData));\n                    this.updateUrl(baseUrl + paramData);\n                    this.ajaxSubmit(baseUrl + paramData);\n                }\n            },\n\n            ajaxSubmit: function (submitUrl, isChangeUrl) {\n\n                var self = this,\n                    productContainer = document.getElementById(\"layer-product-list\"),\n                    layerContainer = document.getElementById(\"layered-filter-block-container\"),\n                    quickViewContainer = document.getElementById(\"mpquickview-popup\"),\n                    formKey = hyva.getFormKey();\n\n                \/** start loader *\/\n                this.startLoader();\n                fetch(submitUrl, {\n                    headers: {\n                        'X-Requested-With': 'XMLHttpRequest'\n                    },\n                    body: \"form_key=\" + formKey + \"&uenc=\" + hyva.getUenc(),\n                    method: \"POST\",\n                    mode: \"cors\",\n                    credentials: \"include\"\n                }).then(response => response.json())\n                    .then(function (response) {\n                        if (response.navigation) {\n                            layerContainer.innerHTML = response.navigation;\n                        }\n                        if (response.products) {\n                            productContainer.innerHTML = response.products;\n                        }\n                        if (response.quickview) {\n                            quickViewContainer.innerHTML = (response.quickview);\n                        }\n                        self.stopLoader();\n                    }).catch(function (error) {\n                    typeof window.dispatchMessages !== \"undefined\" && window.dispatchMessages(\n                        [{\n                            type: \"error\",\n                            text: error\n                        }], 5000\n                    );\n                    self.stopLoader();\n                    window.location.reload();\n\n                });\n            },\n\n            updateUrl: function (submitUrl, isChangeUrl) {\n                \/** change browser url *\/\n                if (typeof window.history.pushState === 'function' && (typeof isChangeUrl === 'undefined')) {\n                    window.history.pushState({url: submitUrl}, '', submitUrl);\n                }\n            },\n\n            \/**\n             * Stop full page loader action\n             *\/\n            startLoader: function () {\n                document.querySelector('.ln_overlay').style.display = 'block';\n            },\n\n            \/**\n             * Stop full page loader action\n             *\/\n            stopLoader: function () {\n                document.querySelector('.ln_overlay').style.display = 'none';\n            }\n        }\n    }\n<\/script>\n                        <div class=\"products wrapper mode-grid products-grid\">\n            <div class=\"mx-auto grid gap-y-5 mdx:gap-x-[30px] gap-x-5 grid-cols-2 sm:grid-cols-3 mdx:grid-cols-4 lg1:grid-cols-5\">\n                \r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/78486\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"WbCGQwQJgTC05iRY\" \/>    <input type=\"hidden\" name=\"product\" value=\"78486\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m897-adult-restore-4-9-oz-scrub-top.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-78486.window=\"$root.src = $event.detail\"\n            loading=\"eager\"\n            fetchpriority=\"high\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/8\/m897.jpg\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M897&#x20;&#x20;-&#x20;&#x20;Adult&#x20;Restore&#x20;4.9&#x20;oz.&#x20;Scrub&#x20;Top\"\n    title=\"Harriton&#x20;&#x20;M897&#x20;&#x20;-&#x20;&#x20;Adult&#x20;Restore&#x20;4.9&#x20;oz.&#x20;Scrub&#x20;Top\"\n\/>\n                                                <span style=\"display: none;\" class=\"clearance-label\">Clearance<\/span>\r\n                        <span style=\"display: none;\" class=\"clearance-img absolute top-0 -left-2 w-20 z-10\">\r\n                                     <img class=\"float-right\"\r\n                                          src=\"https&#x3A;&#x2F;&#x2F;www.tsport.ca&#x2F;static&#x2F;version1782388409&#x2F;frontend&#x2F;ET&#x2F;tsport_hvya&#x2F;en_US&#x2F;images&#x2F;tsport-clearance-label.png\"\r\n                                          alt=\"Payment ico\"\r\n                                          width=\"72\"\r\n                                          height=\"72\"\r\n                                          loading=\"lazy\">\r\n                        <\/span>\r\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m897-adult-restore-4-9-oz-scrub-top.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M897<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M897  -  Adult Restore 4.9 oz. Scrub Top<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d8f33ede99()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d8f33ede99()\"\r\n                 @update-prices-78486.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"78486\" data-price-box=\"product-id-78486\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-78486\"                data-price-amount=\"9.49\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$9.49<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76454\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76454\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m500-men-s-easy-blend-long-sleeve-twillshirt-withstain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76454.window=\"$root.src = $event.detail\"\n            loading=\"eager\"\n            fetchpriority=\"high\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m500.jpg\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M500&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Easy&#x20;Blend&#x20;Long-Sleeve&#x20;TwillShirt&#x20;withStain-Release\"\n    title=\"Harriton&#x20;&#x20;M500&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Easy&#x20;Blend&#x20;Long-Sleeve&#x20;TwillShirt&#x20;withStain-Release\"\n\/>\n                                                <span style=\"display: none;\" class=\"clearance-label\">Clearance<\/span>\r\n                        <span style=\"display: none;\" class=\"clearance-img absolute top-0 -left-2 w-20 z-10\">\r\n                                     <img class=\"float-right\"\r\n                                          src=\"https&#x3A;&#x2F;&#x2F;www.tsport.ca&#x2F;static&#x2F;version1782388409&#x2F;frontend&#x2F;ET&#x2F;tsport_hvya&#x2F;en_US&#x2F;images&#x2F;tsport-clearance-label.png\"\r\n                                          alt=\"Payment ico\"\r\n                                          width=\"72\"\r\n                                          height=\"72\"\r\n                                          loading=\"lazy\">\r\n                        <\/span>\r\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m500-men-s-easy-blend-long-sleeve-twillshirt-withstain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M500<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M500  -  Men&#039;s Easy Blend Long-Sleeve TwillShirt withStain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d912fd767a()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d912fd767a()\"\r\n                 @update-prices-76454.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76454\" data-price-box=\"product-id-76454\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76454\"                data-price-amount=\"13.63\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$13.63<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/68040\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"68040\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core-365-88194-men-s-optimum-short-sleeve-twill-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-68040.window=\"$root.src = $event.detail\"\n            loading=\"eager\"\n            fetchpriority=\"high\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/8\/8\/88194.jpg\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Core&#x20;365&#x20;88194&#x20;-&#x20;Men&#x27;s&#x20;Optimum&#x20;Short-Sleeve&#x20;Twill&#x20;Shirt\"\n    title=\"Core&#x20;365&#x20;88194&#x20;-&#x20;Men&#x27;s&#x20;Optimum&#x20;Short-Sleeve&#x20;Twill&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core-365-88194-men-s-optimum-short-sleeve-twill-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">88194<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Core 365  88194  -  Men&#039;s Optimum Short-Sleeve Twill Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d913012509()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d913012509()\"\r\n                 @update-prices-68040.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"68040\" data-price-box=\"product-id-68040\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-68040\"                data-price-amount=\"23.29\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.29<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/181472\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"181472\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core365-78194-women-s-optimum-short-sleeve-twill-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-181472.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/7\/8\/78194_config_2.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"CORE365&#x20;78194&#x20;-&#x20;Women&#x27;s&#x20;Optimum&#x20;Short&#x20;Sleeve&#x20;Twill&#x20;Shirt\"\n    title=\"CORE365&#x20;78194&#x20;-&#x20;Women&#x27;s&#x20;Optimum&#x20;Short&#x20;Sleeve&#x20;Twill&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core365-78194-women-s-optimum-short-sleeve-twill-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">78194<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">CORE365 78194 - Women&#039;s Optimum Short Sleeve Twill Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n                    title=\"Be&#x20;the&#x20;first&#x20;to&#x20;review&#x20;this&#x20;product\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                        <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d913025c6c()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d913025c6c()\"\r\n                 @update-prices-181472.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"181472\" data-price-box=\"product-id-181472\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-181472\"                data-price-amount=\"23.29\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.29<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76503\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76503\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m500s-men-s-easy-blend-short-sleeve-twill-shirt-withstain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76503.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m500s.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M500S&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Easy&#x20;Blend&#x20;Short-Sleeve&#x20;Twill&#x20;Shirt&#x20;withStain-Release\"\n    title=\"Harriton&#x20;&#x20;M500S&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Easy&#x20;Blend&#x20;Short-Sleeve&#x20;Twill&#x20;Shirt&#x20;withStain-Release\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m500s-men-s-easy-blend-short-sleeve-twill-shirt-withstain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M500S<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M500S  -  Men&#039;s Easy Blend Short-Sleeve Twill Shirt withStain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130395a3()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130395a3()\"\r\n                 @update-prices-76503.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76503\" data-price-box=\"product-id-76503\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76503\"                data-price-amount=\"23.72\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.72<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76546\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76546\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m500sw-ladies-easy-blend-short-sleeve-twill-shirt-withstain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76546.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m500sw.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M500SW&#x20;&#x20;-&#x20;&#x20;Ladies&#x27;&#x20;Easy&#x20;Blend&#x20;Short-Sleeve&#x20;Twill&#x20;Shirt&#x20;withStain-Release\"\n    title=\"Harriton&#x20;&#x20;M500SW&#x20;&#x20;-&#x20;&#x20;Ladies&#x27;&#x20;Easy&#x20;Blend&#x20;Short-Sleeve&#x20;Twill&#x20;Shirt&#x20;withStain-Release\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m500sw-ladies-easy-blend-short-sleeve-twill-shirt-withstain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M500SW<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M500SW  -  Ladies&#039; Easy Blend Short-Sleeve Twill Shirt withStain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d91304a7cb()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d91304a7cb()\"\r\n                 @update-prices-76546.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76546\" data-price-box=\"product-id-76546\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76546\"                data-price-amount=\"23.72\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.72<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76833\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76833\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m550-men-s-6-5-oz-long-sleeve-denim-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76833.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m550.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M550&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;6.5&#x20;oz.&#x20;Long-Sleeve&#x20;Denim&#x20;Shirt\"\n    title=\"Harriton&#x20;&#x20;M550&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;6.5&#x20;oz.&#x20;Long-Sleeve&#x20;Denim&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m550-men-s-6-5-oz-long-sleeve-denim-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M550<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton M550 - Men&#039;s 6.5 oz. Long-Sleeve Denim Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d91305a66a()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d91305a66a()\"\r\n                 @update-prices-76833.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76833\" data-price-box=\"product-id-76833\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76833\"                data-price-amount=\"23.72\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.72<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76848\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76848\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m550s-men-s-6-5-oz-short-sleeve-denim-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76848.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m550s_55_z_1_.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;M550S&#x20;-&#x20;Men&#x27;s&#x20;6.5&#x20;oz.&#x20;Short-Sleeve&#x20;Denim&#x20;Shirt\"\n    title=\"Harriton&#x20;M550S&#x20;-&#x20;Men&#x27;s&#x20;6.5&#x20;oz.&#x20;Short-Sleeve&#x20;Denim&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m550s-men-s-6-5-oz-short-sleeve-denim-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M550S<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton M550S - Men&#039;s 6.5 oz. Short-Sleeve Denim Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d913067698()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d913067698()\"\r\n                 @update-prices-76848.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76848\" data-price-box=\"product-id-76848\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76848\"                data-price-amount=\"23.72\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.72<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76877\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76877\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m550w-ladies-6-5-oz-long-sleeve-denim-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76877.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m550w.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;M550W&#x20;-&#x20;Ladies&#x27;&#x20;6.5&#x20;oz.&#x20;Long-Sleeve&#x20;Denim&#x20;Shirt\"\n    title=\"Harriton&#x20;M550W&#x20;-&#x20;Ladies&#x27;&#x20;6.5&#x20;oz.&#x20;Long-Sleeve&#x20;Denim&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m550w-ladies-6-5-oz-long-sleeve-denim-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M550W<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M550W  -  Ladies&#039; 6.5 oz. Long-Sleeve Denim Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d913076ad3()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d913076ad3()\"\r\n                 @update-prices-76877.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76877\" data-price-box=\"product-id-76877\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76877\"                data-price-amount=\"23.72\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.72<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/100371\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"100371\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m585-men-s-advantage-il-short-sleeve-work-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-100371.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m585.png\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;M585&#x20;-&#x20;Men&#x27;s&#x20;Advantage&#x20;IL&#x20;Short-Sleeve&#x20;Work&#x20;Shirt\"\n    title=\"Harriton&#x20;M585&#x20;-&#x20;Men&#x27;s&#x20;Advantage&#x20;IL&#x20;Short-Sleeve&#x20;Work&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m585-men-s-advantage-il-short-sleeve-work-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M585<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M585  -  Men&#039;s Advantage IL Short-Sleeve Work Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d913087233()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d913087233()\"\r\n                 @update-prices-100371.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"100371\" data-price-box=\"product-id-100371\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-100371\"                data-price-amount=\"23.72\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$23.72<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/77562\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"77562\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m600s-men-s-short-sleeve-oxford-with-stain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-77562.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/6\/m600s.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M600S&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Short-Sleeve&#x20;Oxford&#x20;with&#x20;Stain-Release\"\n    title=\"Harriton&#x20;&#x20;M600S&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Short-Sleeve&#x20;Oxford&#x20;with&#x20;Stain-Release\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m600s-men-s-short-sleeve-oxford-with-stain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M600S<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M600S  -  Men&#039;s Short-Sleeve Oxford with Stain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d913095f09()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d913095f09()\"\r\n                 @update-prices-77562.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"77562\" data-price-box=\"product-id-77562\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-77562\"                data-price-amount=\"24.15\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$24.15<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/63948\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"63948\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core-365-78193-ladies-operate-long-sleeve-twill-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-63948.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/7\/8\/78193.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Core&#x20;365&#x20;78193&#x20;-&#x20;Ladies&#x27;&#x20;Operate&#x20;Long-Sleeve&#x20;Twill&#x20;Shirt&#x0D;&#x0A;\"\n    title=\"Core&#x20;365&#x20;78193&#x20;-&#x20;Ladies&#x27;&#x20;Operate&#x20;Long-Sleeve&#x20;Twill&#x20;Shirt&#x0D;&#x0A;\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core-365-78193-ladies-operate-long-sleeve-twill-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">78193<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Core 365  78193  -  Ladies&#039; Operate Long-Sleeve Twill Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130a238f()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130a238f()\"\r\n                 @update-prices-63948.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"63948\" data-price-box=\"product-id-63948\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-63948\"                data-price-amount=\"25.45\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.45<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/67940\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"67940\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core-365-88193-men-s-operate-long-sleeve-twillshirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-67940.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/8\/8\/88193.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Core&#x20;365&#x20;88193&#x20;-&#x20;Men&#x27;s&#x20;Operate&#x20;Long-Sleeve&#x20;TwillShirt\"\n    title=\"Core&#x20;365&#x20;88193&#x20;-&#x20;Men&#x27;s&#x20;Operate&#x20;Long-Sleeve&#x20;TwillShirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core-365-88193-men-s-operate-long-sleeve-twillshirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">88193<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Core 365 88193 - Men&#039;s Operate Long-Sleeve TwillShirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130af64b()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130af64b()\"\r\n                 @update-prices-67940.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"67940\" data-price-box=\"product-id-67940\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-67940\"                data-price-amount=\"25.45\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.45<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/76657\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"76657\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m500w-ladies-easy-blend-long-sleeve-twillshirt-with-stain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-76657.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m500w.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M500W&#x20;&#x20;-&#x20;&#x20;Ladies&#x27;&#x20;Easy&#x20;Blend&#x20;Long-Sleeve&#x20;TwillShirt&#x20;with&#x20;Stain-Release\"\n    title=\"Harriton&#x20;&#x20;M500W&#x20;&#x20;-&#x20;&#x20;Ladies&#x27;&#x20;Easy&#x20;Blend&#x20;Long-Sleeve&#x20;TwillShirt&#x20;with&#x20;Stain-Release\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m500w-ladies-easy-blend-long-sleeve-twillshirt-with-stain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M500W<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M500W  -  Ladies&#039; Easy Blend Long-Sleeve TwillShirt with Stain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130bf687()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130bf687()\"\r\n                 @update-prices-76657.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"76657\" data-price-box=\"product-id-76657\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-76657\"                data-price-amount=\"25.45\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.45<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/124970\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"124970\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m585l-men-s-advantage-il-long-sleeve-workshirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-124970.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/5\/m585l_n8_z_1.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M585L&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Advantage&#x20;IL&#x20;Long-Sleeve&#x20;Workshirt\"\n    title=\"Harriton&#x20;&#x20;M585L&#x20;&#x20;-&#x20;&#x20;Men&#x27;s&#x20;Advantage&#x20;IL&#x20;Long-Sleeve&#x20;Workshirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m585l-men-s-advantage-il-long-sleeve-workshirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M585L<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M585L  -  Men&#039;s Advantage IL Long-Sleeve Workshirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n                    title=\"Be&#x20;the&#x20;first&#x20;to&#x20;review&#x20;this&#x20;product\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                        <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130ce2b1()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130ce2b1()\"\r\n                 @update-prices-124970.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"124970\" data-price-box=\"product-id-124970\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-124970\"                data-price-amount=\"25.45\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.45<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/77529\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"77529\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m600-men-s-long-sleeve-oxford-with-stain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-77529.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/6\/m600.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;M600&#x20;-&#x20;Men&#x27;s&#x20;Long-Sleeve&#x20;Oxford&#x20;with&#x20;Stain-Release\"\n    title=\"Harriton&#x20;M600&#x20;-&#x20;Men&#x27;s&#x20;Long-Sleeve&#x20;Oxford&#x20;with&#x20;Stain-Release\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m600-men-s-long-sleeve-oxford-with-stain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M600<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton M600 - Men&#039;s Long-Sleeve Oxford with Stain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130ddd61()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130ddd61()\"\r\n                 @update-prices-77529.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"77529\" data-price-box=\"product-id-77529\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-77529\"                data-price-amount=\"25.88\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.88<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/77595\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"77595\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/harriton-m600w-ladies-long-sleeve-oxford-with-stain-release.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-77595.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/m\/6\/m600w.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Harriton&#x20;&#x20;M600W&#x20;&#x20;-&#x20;&#x20;Ladies&#x27;&#x20;Long-Sleeve&#x20;Oxford&#x20;with&#x20;Stain-Release\"\n    title=\"Harriton&#x20;&#x20;M600W&#x20;&#x20;-&#x20;&#x20;Ladies&#x27;&#x20;Long-Sleeve&#x20;Oxford&#x20;with&#x20;Stain-Release\"\n\/>\n                                                <span style=\"display: none;\" class=\"clearance-label\">Clearance<\/span>\r\n                        <span style=\"display: none;\" class=\"clearance-img absolute top-0 -left-2 w-20 z-10\">\r\n                                     <img class=\"float-right\"\r\n                                          src=\"https&#x3A;&#x2F;&#x2F;www.tsport.ca&#x2F;static&#x2F;version1782388409&#x2F;frontend&#x2F;ET&#x2F;tsport_hvya&#x2F;en_US&#x2F;images&#x2F;tsport-clearance-label.png\"\r\n                                          alt=\"Payment ico\"\r\n                                          width=\"72\"\r\n                                          height=\"72\"\r\n                                          loading=\"lazy\">\r\n                        <\/span>\r\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/harriton-m600w-ladies-long-sleeve-oxford-with-stain-release.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">M600W<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Harriton  M600W  -  Ladies&#039; Long-Sleeve Oxford with Stain-Release<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"fill-current w-[1.1rem] h-5 pr-[1px]\" viewBox=\"3 0 20 20\"\n                     style=\"color: #f7ba55\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                                                            <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Harriton<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9130ec8f2()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9130ec8f2()\"\r\n                 @update-prices-77595.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"77595\" data-price-box=\"product-id-77595\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-77595\"                data-price-amount=\"25.88\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.88<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/133440\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"133440\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core365-ce510w-ladies-ultra-uvp-marina-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-133440.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/c\/e\/ce510w.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Core365&#x20;CE510W&#x20;-&#x20;Ladies&#x27;&#x20;Ultra&#x20;UVP&#x20;Marina&#x20;Shirt\"\n    title=\"Core365&#x20;CE510W&#x20;-&#x20;Ladies&#x27;&#x20;Ultra&#x20;UVP&#x20;Marina&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core365-ce510w-ladies-ultra-uvp-marina-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">CE510W<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Core365  CE510W  -  Ladies&#039; Ultra UVP Marina Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n                    title=\"Be&#x20;the&#x20;first&#x20;to&#x20;review&#x20;this&#x20;product\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                        <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9131058cb()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9131058cb()\"\r\n                 @update-prices-133440.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"133440\" data-price-box=\"product-id-133440\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-133440\"                data-price-amount=\"25.88\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.88<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/133473\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"133473\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core365-ce510-men-s-ultra-uvp-marina-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-133473.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/c\/e\/ce510.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"Core365&#x20;CE510&#x20;-&#x20;Men&#x27;s&#x20;Ultra&#x20;UVP&#x20;Marina&#x20;Shirt\"\n    title=\"Core365&#x20;CE510&#x20;-&#x20;Men&#x27;s&#x20;Ultra&#x20;UVP&#x20;Marina&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core365-ce510-men-s-ultra-uvp-marina-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">CE510<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">Core365 CE510 - Men&#039;s Ultra UVP Marina Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n                    title=\"Be&#x20;the&#x20;first&#x20;to&#x20;review&#x20;this&#x20;product\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                        <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d9131124e4()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d9131124e4()\"\r\n                 @update-prices-133473.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"133473\" data-price-box=\"product-id-133473\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-133473\"                data-price-amount=\"25.88\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.88<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n\r\n<form method=\"post\"\r\n      action=\"https:\/\/www.tsport.ca\/checkout\/cart\/add\/uenc\/%25uenc%25\/product\/207108\/\"\r\n      class=\"group item product product-item product_addtocart_form flex flex-col  relative w-full \"\r\n    >\r\n    <input name=\"form_key\" type=\"hidden\" value=\"i3zxOi6gFwE9AMKL\" \/>    <input type=\"hidden\" name=\"product\" value=\"207108\"\/>\r\n                        <a href=\"https:\/\/www.tsport.ca\/core365-ce520-men-s-ultrauvp-shoreline-short-sleeve-staff-shirt.html\"\r\n           class=\"product photo min-h-[210px] border border-[#ccc] hover:background-overlay rounded relative product-item-photo block mx-auto \"\r\n           tabindex=\"-1\"\r\n        >\r\n            <img class=\"hover:shadow-sm w-full object-contain product-image-photo\"\n     x-data=\"\"\n     @update-gallery-207108.window=\"$root.src = $event.detail\"\n        src=\"https:\/\/www.tsport.ca\/media\/catalog\/product\/cache\/596a784b817d6ed563dc3effff64fbc3\/c\/o\/config-ce520.jpg\"\n        loading=\"lazy\"\n        width=\"250\"\n    height=\"400\"\n    alt=\"CORE365&#x20;CE520&#x20;-&#x20;Men&#x27;s&#x20;UltraUVP&#x20;Shoreline&#x20;Short&#x20;Sleeve&#x20;Staff&#x20;Shirt\"\n    title=\"CORE365&#x20;CE520&#x20;-&#x20;Men&#x27;s&#x20;UltraUVP&#x20;Shoreline&#x20;Short&#x20;Sleeve&#x20;Staff&#x20;Shirt\"\n\/>\n                                                <div class=\"group-hover:opacity-70 absolute bottom-0 left-0 right-0 top-0 h-full w-full overflow-hidden bg-[rgba(0,0,0,0.4)] opacity-0 transition duration-300 ease-in-out\"><\/div>\r\n        <\/a>\r\n        <div class=\"product-info flex flex-col grow\">\r\n                        <div class=\"mt-3 mb-1.5 items-center justify-center text-center \">\r\n                <a class=\"product-item-link font-normal text-sm text-black hover:text-light-blue relative z-[5]\"\r\n                   href=\"https:\/\/www.tsport.ca\/core365-ce520-men-s-ultrauvp-shoreline-short-sleeve-staff-shirt.html\">\r\n                    <strong class=\"text-black text-sm font-bold\">CE520<\/strong><br>\r\n                    <h3 style=\"line-height: 1.6;\">CORE365 CE520 - Men&#039;s UltraUVP Shoreline Short Sleeve Staff Shirt<\/h3>\r\n                <\/a>\r\n            <\/div>\r\n\r\n                            <div class=\"text-star-gray py-1 mb-2.5 mx-auto \">\r\n                        <div class=\"rating-summary flex cursor-pointer\"\n         onclick=\"(\n              document.getElementById('customer-review-list') ||\n              document.getElementById('customer-reviews') ||\n              document.getElementById('review-form')).scrollIntoView({behavior: 'smooth'}\n              )\"\n                    title=\"Be&#x20;the&#x20;first&#x20;to&#x20;review&#x20;this&#x20;product\"\n        >\n                                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n                     class=\"fill-current text-gray-200 w-[1.1rem] h-5 pr-[1px]\"\n                     viewBox=\"3 0 20 20\"\n                     fill=\"currentColor\">\n                    <path fill=\"currentColor\" d=\"m5.825 22l1.625-7.025L2 10.25l7.2-.625L12 3l2.8 6.625l7.2.625l-5.45 4.725L18.175 22L12 18.275L5.825 22Z\"\/>\n                <\/svg>\n                                        <\/div>\n                <\/div>\r\n                                        <span class=\"inline-block bg-gray-light text-custom-lighter text-xs font-bold mb-1 py-0.5 px-2\n            mx-auto border-[#e1e1e1] border\">\n    <span class=\"list-brand-label\">Core 365<\/span><\/span>                        <script>\r\n                function initPriceBox__6a3d91311fb69()\r\n                {\r\n                    return {\r\n                        updatePrice(priceData) {\r\n                            const regularPriceLabel = this.$root.querySelector('.normal-price .price-label');\r\n                            const regularPriceElement = this.$root.querySelector('.normal-price [data-price-type=finalPrice].price-wrapper .price');\r\n                            const basePriceElement = this.$root.querySelector('.normal-price [data-price-type=basePrice].price-wrapper .price');\r\n                            if (priceData.finalPrice.amount < priceData.oldPrice.amount) {\r\n                                regularPriceLabel.classList.add('hidden');\r\n                            } else {\r\n                                regularPriceLabel.classList.remove('hidden');\r\n                            }\r\n                            regularPriceElement.innerText = hyva.formatPrice(priceData.finalPrice.amount);\r\n                            basePriceElement && (basePriceElement.innerText = hyva.formatPrice(priceData.basePrice.amount));\r\n                        }\r\n                    }\r\n                }\r\n            <\/script>\r\n            <div class=\"pt-1 text-gray-900 text-center\"\r\n                 x-data=\"initPriceBox__6a3d91311fb69()\"\r\n                 @update-prices-207108.window=\"updatePrice($event.detail);\"\r\n            >\r\n                <div class=\"price-box price-final_price\" data-role=\"priceBox\" data-product-id=\"207108\" data-price-box=\"product-id-207108\">    <span class=\"normal-price\">\n\n\n<span class=\"price-container price-final_price&#x20;tax&#x20;weee\"\n    >\n            <span class=\"price-label text-sm leading-5 text-light-blue\">Starting at:<\/span>\n        <span  id=\"product-price-207108\"                data-price-amount=\"25.88\"\n        data-price-type=\"finalPrice\"\n        class=\"price-wrapper \"\n    ><span class=\"price\">CA$25.88<\/span><\/span>\n        <\/span>\n<style>\n    .product-item .price-container .price {\n        font-size: 14px;\n        line-height: 20px;\n        color: #fa381d;\n        font-weight: 700;\n    }\n<\/style>\n<\/span>\n\n\n<\/div>            <\/div>\r\n        <\/div>\r\n        <\/form>\r\n            <\/div>\n        <\/div>\n            <div x-data=\"initToolbar()\"\n         class=\"toolbar toolbar-products flex justify-between items-center mb-[25px] sm:mt-0 mt-6\">\n                    \n    \n    \n    <div class=\"flex justify-center order-2 col-span-4\">\n                    <nav class=\"inline-flex items-center pages\" aria-label=\"pagination\">\n                <ol class=\"relative z-0 inline-flex shadow-sm items pages-items\">\n                    <li class=\"item mr-1 pages-item-previous\">\n                                                                            <strong\n                                class=\"previous relative inline-flex items-center text-xs font-medium leading-5 border border-gray-300 justify-center h-[34px] w-[34px] hidden hover:text-white text-gray-400\n                                 border-gray-200\"\n                                aria-disabled=\"true\"\n                            >\n                                <span\n                                    aria-label=\"Previous\"\n                                ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"12\" height=\"12\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M15 19l-7-7 7-7\"\/>\n<title>chevron-left<\/title><\/svg>\n<\/span>\n                            <\/strong>\n                                            <\/li>\n\n                    \n                    \n                                                                        <li\n                                class=\"item mr-1 -ml-px\"\n                                aria-label=\"Page 1\"\n                            >\n                                <a\n                                    href=\"https:\/\/www.tsport.ca\/dress-shirt.html\"\n                                    class=\"page relative inline-flex items-center text-xs font-medium leading-5 border border-gray-300 justify-center transition duration-150 ease-in-out hover:text-whiteactive:text-light-blue z-10 h-[34px] w-[34px] hover:text-white hover:bg-light-blue\n                                   text-white bg-light-blue\"\n                                    aria-current=\"page\"\n                                >\n                                    <span class=\"sr-only label\">\n                                        You&#039;re currently reading page                                    <\/span>\n                                    <span>1<\/span>\n                                <\/a>\n                            <\/li>\n                                                                                                <li class=\"item mr-1 -ml-px\">\n                                <a\n                                    href=\"https:\/\/www.tsport.ca\/dress-shirt.html?p=2\"\n                                    class=\"page relative inline-flex items-center text-xs font-medium leading-5 border border-gray-300 justify-center transition duration-150 ease-in-out hover:text-whiteactive:text-light-blue h-[34px] w-[34px] text-custom-lighter hover:text-white hover:bg-light-blue\"\n                                >\n                                    <span class=\"sr-only label\">Page<\/span>\n                                    <span>2<\/span>\n                                <\/a>\n                            <\/li>\n                                                                                                <li class=\"item mr-1 -ml-px\">\n                                <a\n                                    href=\"https:\/\/www.tsport.ca\/dress-shirt.html?p=3\"\n                                    class=\"page relative inline-flex items-center text-xs font-medium leading-5 border border-gray-300 justify-center transition duration-150 ease-in-out hover:text-whiteactive:text-light-blue h-[34px] w-[34px] text-custom-lighter hover:text-white hover:bg-light-blue\"\n                                >\n                                    <span class=\"sr-only label\">Page<\/span>\n                                    <span>3<\/span>\n                                <\/a>\n                            <\/li>\n                                                                                                <li class=\"item mr-1 -ml-px\">\n                                <a\n                                    href=\"https:\/\/www.tsport.ca\/dress-shirt.html?p=4\"\n                                    class=\"page relative inline-flex items-center text-xs font-medium leading-5 border border-gray-300 justify-center transition duration-150 ease-in-out hover:text-whiteactive:text-light-blue h-[34px] w-[34px] text-custom-lighter hover:text-white hover:bg-light-blue\"\n                                >\n                                    <span class=\"sr-only label\">Page<\/span>\n                                    <span>4<\/span>\n                                <\/a>\n                            <\/li>\n                                            \n                    \n                    \n                    <li class=\"item mr-1 pages-item-next -ml-px\">\n                                                                                <a\n                                href=\"https:\/\/www.tsport.ca\/dress-shirt.html?p=2\"\n                                class=\"action  next\n                                    relative inline-flex items-center text-xs font-medium leading-5 border border-gray-300 justify-center transition duration-150 ease-in-out hover:text-whiteactive:text-light-blue h-[34px] w-[34px] text-custom-lighter hover:text-white hover:bg-light-blue\"\n                            >\n                                                                    <span\n                                        aria-label=\"Next\"\n                                    ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"12\" height=\"12\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M9 5l7 7-7 7\"\/>\n<title>chevron-right<\/title><\/svg>\n<\/span>\n                                                            <\/a>\n                                            <\/li>\n                <\/ol>\n            <\/nav>\n            <\/div>\n\n    \n    \n<style>\n    .form-select {\n        &:focus {\n             box-shadow: 0 0 3px 1px #00699d;\n             border: none;\n             outline: none;\n         }\n    }\n<\/style>            \n    <div class=\"field hidden limiter md:flex items-center order-3 sm:order-2 md:order-3 lg:order-2 col-span-2 justify-end\">\n        <div class=\"control\">\n            <label class=\"text-sm label text-sm leading-5 font-normal text-custom-lighter\">\n                <span>Show<\/span>\n\n                <select data-role=\"limiter\" class=\"form-select limiter-options mx-1.5 text-black rounded-none bg-[#f0f0f0] pl-2.5 pr-[28px] text-sm leading-5 font-normal\"\n                        @change=\"changeUrl(\n                    'product_list_limit',\n                    $event.currentTarget.options[$event.currentTarget.selectedIndex].value,\n                    options.limitDefault\n                )\">\n                                            <option value=\"20\"\n                                                            selected=\"selected\"\n                            >\n                            20                        <\/option>\n                                            <option value=\"40\"\n                            >\n                            40                        <\/option>\n                                            <option value=\"60\"\n                            >\n                            60                        <\/option>\n                                            <option value=\"all\"\n                            >\n                            All                        <\/option>\n                                    <\/select>\n            <\/label>\n        <\/div>\n        <span class=\"limiter-text text-sm ml-2 text-sm leading-5 font-normal text-custom-lighter\">\n        per page    <\/span>\n    <\/div>\n            <\/div>\n<script>\n    function initToolbar() {\n        return {\n            options: {\"productListToolbarForm\":{\"mode\":\"product_list_mode\",\"direction\":\"product_list_dir\",\"order\":\"product_list_order\",\"limit\":\"product_list_limit\",\"modeDefault\":\"grid\",\"directionDefault\":\"asc\",\"orderDefault\":\"price\",\"limitDefault\":20,\"url\":\"https:\\\/\\\/www.tsport.ca\\\/dress-shirt.html\",\"formKey\":\"i3zxOi6gFwE9AMKL\",\"post\":false,\"page\":\"p\"}}.productListToolbarForm || {},\n            getUrlParams: function () {\n                let decode = window.decodeURIComponent,\n                    \/\/ urlPaths = this.options.url.split('?'),\n                    urlPaths = location.href.split('?'),\n                    urlParams = urlPaths[1] ? urlPaths[1].split('&') : [],\n                    params = {},\n                    parameters, i;\n\n                for (i = 0; i < urlParams.length; i++) {\n                    parameters = urlParams[i].split('=');\n                    params[decode(parameters[0])] = parameters[1] !== undefined ?\n                        decode(parameters[1].replace(\/\\+\/g, '%20')) :\n                        '';\n                }\n\n                return params;\n            },\n\n            getCurrentLimit: function () {\n                return this.getUrlParams()[this.options.limit] || this.options.limitDefault;\n            },\n\n            getCurrentPage: function () {\n                return this.getUrlParams()[this.options.page] || 1;\n            },\n\n            changeUrl(paramName, paramValue, defaultValue) {\n                let urlPaths = this.options.url.split('?'),\n                    baseUrl = urlPaths[0],\n                    paramData = this.getUrlParams(),\n                    currentPage = this.getCurrentPage(),\n                    newPage;\n                \/**\n                 * calculates the page on which the first item of the current page will\n                 * be with the new limit and sets that number as the new page\n                 *\/\n                if (currentPage > 1 && paramName === this.options.limit) {\n                    newPage = Math.floor(this.getCurrentLimit() * (currentPage - 1) \/ paramValue) + 1;\n                    if (newPage > 1) {\n                        paramData[this.options.page] = newPage;\n                    } else {\n                        delete paramData[this.options.page];\n                    }\n                }\n\n                paramData[paramName] = paramValue;\n                if (this.options.post) {\n                    hyva.postForm({action: baseUrl, data: paramData, skipUenc: true});\n                } else {\n                    if (paramValue === defaultValue.toString()) {\n                        delete paramData[paramName];\n                    }\n                    paramData = Object.keys(paramData).length === 0\n                        ? ''\n                        : '?' + (new URLSearchParams(paramData));\n                    this.updateUrl(baseUrl + paramData);\n                    this.ajaxSubmit(baseUrl + paramData);\n                }\n            },\n\n            ajaxSubmit: function (submitUrl, isChangeUrl) {\n\n                var self = this,\n                    productContainer = document.getElementById(\"layer-product-list\"),\n                    layerContainer = document.getElementById(\"layered-filter-block-container\"),\n                    quickViewContainer = document.getElementById(\"mpquickview-popup\"),\n                    formKey = hyva.getFormKey();\n\n                \/** start loader *\/\n                this.startLoader();\n                fetch(submitUrl, {\n                    headers: {\n                        'X-Requested-With': 'XMLHttpRequest'\n                    },\n                    body: \"form_key=\" + formKey + \"&uenc=\" + hyva.getUenc(),\n                    method: \"POST\",\n                    mode: \"cors\",\n                    credentials: \"include\"\n                }).then(response => response.json())\n                    .then(function (response) {\n                        if (response.navigation) {\n                            layerContainer.innerHTML = response.navigation;\n                        }\n                        if (response.products) {\n                            productContainer.innerHTML = response.products;\n                        }\n                        if (response.quickview) {\n                            quickViewContainer.innerHTML = (response.quickview);\n                        }\n                        self.stopLoader();\n                    }).catch(function (error) {\n                    typeof window.dispatchMessages !== \"undefined\" && window.dispatchMessages(\n                        [{\n                            type: \"error\",\n                            text: error\n                        }], 5000\n                    );\n                    self.stopLoader();\n                    window.location.reload();\n\n                });\n            },\n\n            updateUrl: function (submitUrl, isChangeUrl) {\n                \/** change browser url *\/\n                if (typeof window.history.pushState === 'function' && (typeof isChangeUrl === 'undefined')) {\n                    window.history.pushState({url: submitUrl}, '', submitUrl);\n                }\n            },\n\n            \/**\n             * Stop full page loader action\n             *\/\n            startLoader: function () {\n                document.querySelector('.ln_overlay').style.display = 'block';\n            },\n\n            \/**\n             * Stop full page loader action\n             *\/\n            stopLoader: function () {\n                document.querySelector('.ln_overlay').style.display = 'none';\n            }\n        }\n    }\n<\/script>\n    <\/section>\n\n<script>\n    window.addEventListener('init-external-scripts', () => {\n    var shopBy_css = document.createElement('link');\n    shopBy_css.setAttribute('rel', 'stylesheet');\n    shopBy_css.setAttribute('type', 'text\/css');\n    shopBy_css.setAttribute('media', 'all');\n    shopBy_css.setAttribute('href', 'https:\/\/www.tsport.ca\/static\/version1782388409\/frontend\/ET\/tsport_hvya\/en_US\/Mageplaza_LayeredNavigationPro\/css\/chosen.min.css');\n    document.head.appendChild(shopBy_css);\n    }, {once: true, passive: true});\n<\/script>\n","navigation":"        <div class=\"block filter text-custom-lighter font-semibold relative md:static\" id=\"layered-filter-block\" x-data=\"layeredFilter()\">\n        <div id=\"ln_overlay\" class=\"ln_overlay\" style=\"display: none\">\n            <div class=\"loader\">\n                <div class=\"flex flex-row justify-center items-center w-full h-full fixed select-none\"\n                     style=\"left: 50%;top: 50%;transform: translateX(-50%) translateY(-50%);background: rgba(255,255,255,0.7);\">\n                    <img title=\"Loading\" src=\"https:\/\/www.tsport.ca\/static\/version1782388409\/frontend\/ET\/tsport_hvya\/en_US\/images\/loader-1.gif\" alt=\"Loading..\">\n\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"block-title filter-title md:hidden\" data-count=\"0\"\n             @click=\"options.openFilter = !options.openFilter; options.changeColor = true; $dispatch('toggle-filters')\"\n             @click.outside=\"options.changeColor = false\"\n             @toggle-filters=\"openFilters()\"\n             x-on:resize.window=\"options.openFilter = (window.screen.width > 768) ? true : false\">\n            <strong class=\"absolute text-sm rounded-[3px] right-0 top-0 bg-gray-light border border-custom-gray py-2 px-2.5\"\n                    :class=\"{'bg-custom-lighter text-white' : options.changeColor, 'bg-gray-light': !options.changeColor}\"\n                    data-role=\"title\">\n                Shop By            <\/strong>\n            <span :class=\"{'!inline': options.openFilter, 'hidden': ! options.openFilter }\" class=\"fixed z-[60] right-0 top-0 p-2.5 hidden\">\n                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M6 18L18 6M6 6l12 12\"\/>\n<title>x<\/title><\/svg>\n            <\/span>\n        <\/div>\n        <div :class=\"{'!block': options.openFilter, 'hidden': !options.openFilter }\" class=\"block-content filter-content hidden\" x-data='{\"mpLayer\": {\"active\":[\"id\"],\"params\":{\"id\":\"426\"},\"isCustomerLoggedIn\":false,\"isAjax\":true,\"slider\":[],\"scroll\":true,\"buttonSubmit\":{\"enable\":false,\"seoUrlEnable\":false,\"baseUrl\":\"https:\\\/\\\/www.tsport.ca\\\/dress-shirt.html\",\"urlSuffix\":\".html\"},\"multipleAttrs\":[\"cat\",\"quantity_and_stock_status\",\"manufacturer\",\"style\",\"color\",\"gender\",\"age_group\",\"fit\",\"collar\",\"material\",\"style_weight\",\"treatment\",\"size\",\"tag\",\"brand_logo\",\"moisture_wicking\",\"config_pro_availability\",\"manage_warehouse\",\"sustainable_styles\"],\"swatchOptionText\":[],\"infiniteScroll\":false,\"ionRange\":false,\"displayType\":{\"cat\":[],\"manufacturer\":[],\"color\":[],\"gender\":[],\"age_group\":[],\"collar\":[],\"material\":[],\"style_weight\":[],\"size\":[],\"price\":[],\"tag\":[],\"brand_logo\":[],\"moisture_wicking\":[],\"config_pro_availability\":[],\"manage_warehouse\":[],\"sustainable_styles\":[]},\"ratingSlider\":false}}'>\n                                                    <strong role=\"heading\" aria-level=\"2\" class=\"block-subtitle md:static fixed z-50 md:leading-[18px] bg-white top-0 left-0\n                 filter-subtitle text-base font-semibold md:text-lg inline-block md:pb-5 md:w-auto w-full border-b border-custom-gray md:border-b-0 md:px-0 md:pt-0 p-2.5\">\n                Shopping Options            <\/strong>\n            <div class=\"filter-options md:static fixed top-12 md:overflow-visible bottom-0 overflow-scroll md:w-auto w-full bg-white z-40 left-0 md:text-base text-sm\"\n                 id=\"narrow-by-list\" data-role=\"content\">\n                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"cat\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Category\">\n                          <span class=\"title\">\n                              Category                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-cat \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_cat\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?cat=756\">\n                    Blouses                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_cat\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?cat=807\">\n                    Long Sleeves                                             <span class=\"count\">46<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_cat\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?cat=808\">\n                    Plackets                                             <span class=\"count\">24<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_cat\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?cat=809\">\n                    Pockets                                             <span class=\"count\">32<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_cat\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?cat=810\">\n                    Short Sleeves                                             <span class=\"count\">15<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_cat\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?cat=811\">\n                    Wovens                                            <span class=\"count\">19<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                                        <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"manufacturer\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Brand\">\n                          <span class=\"title\">\n                              Brand                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-manufacturer \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manufacturer\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manufacturer=8076\">\n                    Columbia                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manufacturer\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manufacturer=8363\">\n                    Core 365                                            <span class=\"count\">11<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manufacturer\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manufacturer=8361\">\n                    Devon & Jones                                            <span class=\"count\">26<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manufacturer\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manufacturer=8362\">\n                    Harriton                                            <span class=\"count\">17<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manufacturer\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manufacturer=8359\">\n                    North End                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manufacturer\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manufacturer=14286\">\n                    Under Armour                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                                        <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"color\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Color\">\n                          <span class=\"title\">\n                              Color                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                            <div x-data=\"layerSearchInit()\">\n        <input type=\"text\"\n               class=\"layer-search-box w-full\"\n               code=\"color\"\n               x-ref=\"searchField\" x-model=\"searchString\"\n               @keyup=\"search($el)\"\n               placeholder=\"Search\"\/>\n    <\/div>\n    <script>\n        function layerSearchInit(){\n            return {\n                searchString: '',\n                search(el) {\n                    if (this.searchString !== '') {\n                        el.closest('.filter-options-content').querySelectorAll('.layer-search-list li.item').forEach((elem, index) => {\n                            if (elem.getAttribute('data-search-term')\n                                .toLowerCase()\n                                .includes(this.searchString.toLowerCase())) {\n                                elem.style.display = 'block';\n                            } else {\n                                elem.style.display = 'none';\n                            }\n                        });\n                    }\n                },\n            }\n        }\n    <\/script>\n<ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-color layer-search-list layer-search-list-color\">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"black\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=6482\">\n                    black                                            <span class=\"count\">34<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"black backland tartan\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=44941\">\n                    Black Backland Tartan                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"black\/ dark charcoal\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30953\">\n                    Black\/ Dark Charcoal                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"black\/ m g\/ white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=36644\">\n                    Black\/ M G\/ White                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"black\/ sunray yellow\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30962\">\n                    Black\/ Sunray Yellow                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"black\/ team orange\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30971\">\n                    Black\/ Team Orange                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"burgundy\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8032\">\n                    burgundy                                            <span class=\"count\">5<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"burgundy\/ white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7483\">\n                    burgundy\/ white                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"carbon\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8215\">\n                    carbon                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"chalk omblur\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=47255\">\n                    Chalk Omblur                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"ciel blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7568\">\n                    ciel blue                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"classic navy\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8082\">\n                    classic navy                                            <span class=\"count\">12<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"collegiate navy multi buffalo check\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=44947\">\n                    Collegiate Navy Multi Buffalo Check                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"collegiate navy oxford\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=44926\">\n                    Collegiate Navy Oxford                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"collegiate-navy\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14721\">\n                    collegiate-navy                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"columbia blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=18544\">\n                    columbia blue                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"cool grey\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7471\">\n                    cool grey                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"dark charcoal\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7570\">\n                    dark charcoal                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"dark denim\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7571\">\n                    dark denim                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"dark stone multi buffalo check\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=47454\">\n                    Dark Stone Multi Buffalo Check                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"dark-grey\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14683\">\n                    dark-grey                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"dark-navy\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14684\">\n                    dark-navy                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"duck brown\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7576\">\n                    duck brown                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"electric blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8258\">\n                    electric blue                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"fossil\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7472\">\n                    fossil                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"french blue melange\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30558\">\n                    French Blue Melange                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"french blue\/ white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30593\">\n                    French Blue\/ White                                            <span class=\"count\">6<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"french-blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7577\">\n                    french-blue                                            <span class=\"count\">19<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"graphite\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8265\">\n                    graphite                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"graphite melange\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30544\">\n                    Graphite Melange                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"graphite\/ white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=30606\">\n                    Graphite\/ White                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"hunter\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7582\">\n                    hunter                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"khaki\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14805\">\n                    khaki                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"light blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=6493\">\n                    light blue                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"light blue melange\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=48830\">\n                    Light Blue Melange                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"light denim\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7585\">\n                    light denim                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"marina red\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=28194\">\n                    marina red                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"midnight navy\/ white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=32862\">\n                    Midnight Navy\/ White                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"mod grey\/ white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=34700\">\n                    Mod Grey\/ White                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"mountain red buffalo check\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=47455\">\n                    Mountain Red Buffalo Check                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"navy\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=6481\">\n                    navy                                            <span class=\"count\">16<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"navy-melange\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14587\">\n                    navy-melange                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"navy-white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14797\">\n                    navy-white                                            <span class=\"count\">6<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"opal blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8299\">\n                    opal blue                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"oxford grey\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7592\">\n                    oxford grey                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"platinum\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8303\">\n                    platinum                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"red\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=6486\">\n                    red                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"red-black\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=18735\">\n                    red-black                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"safari oxford\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=44931\">\n                    Safari Oxford                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"sail\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=36307\">\n                    Sail                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"sail red omblur\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=47261\">\n                    Sail Red Omblur                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"silver\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=6591\">\n                    silver                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"stone\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8315\">\n                    stone                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"team orange\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7602\">\n                    team orange                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"true royal\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8317\">\n                    true royal                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"true royal\/ black\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=8318\">\n                    true royal\/ black                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"vintage blue oxford\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=44936\">\n                    Vintage Blue Oxford                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"vivid blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7473\">\n                    vivid blue                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"washed black\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=7604\">\n                    washed black                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"white\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=6487\">\n                    white                                            <span class=\"count\">35<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"white oxford\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=47453\">\n                    White Oxford                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"white\/ graphite\/ grey heather\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=35167\">\n                    White\/ Graphite\/ Grey Heather                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"white\/ light french blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=35174\">\n                    White\/ Light French Blue                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"white\/ light french blue\/ french blue\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=35181\">\n                    White\/ Light French Blue\/ French Blue                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" data-search-term=\"wine\">\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_color\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?color=14937\">\n                    wine                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"gender\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Gender\">\n                          <span class=\"title\">\n                              Gender                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-gender \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_gender\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?gender=13801\">\n                    Male                                            <span class=\"count\">40<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_gender\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?gender=13802\">\n                    Female                                            <span class=\"count\">22<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_gender\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?gender=13803\">\n                    Unisex                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"age_group\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Age Group\">\n                          <span class=\"title\">\n                              Age Group                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-age_group \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_age_group\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?age_group=5590\">\n                    Adult                                            <span class=\"count\">62<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                                        <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"collar\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Collar\">\n                          <span class=\"title\">\n                              Collar                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-collar \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_collar\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?collar=14527\">\n                    Button Down Collar                                            <span class=\"count\">33<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_collar\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?collar=5540\">\n                    Mock Collar                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_collar\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?collar=14529\">\n                    Self Collar                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_collar\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?collar=14530\">\n                    Spread Collar                                            <span class=\"count\">14<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_collar\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?collar=5538\">\n                    V-Neck                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_collar\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?collar=26535\">\n                    Zippered                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"material\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Fabric\">\n                          <span class=\"title\">\n                              Fabric                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-material \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=27759\">\n                    Cotton                                            <span class=\"count\">5<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=5571\">\n                    Cotton - 100%                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=5574\">\n                    Cotton - Over 50%                                            <span class=\"count\">35<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=14533\">\n                    Cotton - Polyester (50\/50)                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=14170\">\n                    Fleece                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=7981\">\n                    Jersey                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=14537\">\n                    Lycra                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=6929\">\n                    Nylon                                            <span class=\"count\">11<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=14539\">\n                    Performance                                            <span class=\"count\">13<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=13896\">\n                    Poplin                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=14164\">\n                    Polyester                                            <span class=\"count\">46<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=5570\">\n                    Polyester - 100%                                            <span class=\"count\">6<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=13905\">\n                    Polyester - Over 50%                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=14542\">\n                    Recycled                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=13891\">\n                    Ripstop                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=13907\">\n                    Spandex                                            <span class=\"count\">18<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_material\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?material=20121\">\n                    Twill                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"style_weight\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"THICKNESS\">\n                          <span class=\"title\">\n                              THICKNESS                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-style_weight \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_style_weight\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?style_weight=6949\">\n                    Light (under 8 oz)                                            <span class=\"count\">48<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_style_weight\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?style_weight=6948\">\n                    Heavy (over 10 oz)                                            <span class=\"count\">2<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                                        <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"size\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Size\">\n                          <span class=\"title\">\n                              Size                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-size \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=193\">\n                    XXS                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=175\">\n                    XS                                            <span class=\"count\">27<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=32\">\n                    S                                            <span class=\"count\">59<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=38\">\n                    M                                            <span class=\"count\">59<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=34\">\n                    L                                            <span class=\"count\">59<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=35\">\n                    XL                                            <span class=\"count\">59<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=36\">\n                    2XL                                            <span class=\"count\">52<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=39\">\n                    3XL                                            <span class=\"count\">52<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=150\">\n                    4XL                                            <span class=\"count\">32<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=151\">\n                    5XL                                            <span class=\"count\">16<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=152\">\n                    6XL                                            <span class=\"count\">6<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=217\">\n                    XXL                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=198\">\n                    XLT                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=199\">\n                    2XLT                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=200\">\n                    3XLT                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_size\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?size=218\">\n                    3X                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"price\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Price\">\n                          <span class=\"title\">\n                              Price                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-price \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=0-10\">\n                    <span class=\"price\">CA$0.00<\/span> - <span class=\"price\">CA$10.00<\/span>                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=10-20\">\n                    <span class=\"price\">CA$10.00<\/span> - <span class=\"price\">CA$20.00<\/span>                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=20-30\">\n                    <span class=\"price\">CA$20.00<\/span> - <span class=\"price\">CA$30.00<\/span>                                            <span class=\"count\">23<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=30-40\">\n                    <span class=\"price\">CA$30.00<\/span> - <span class=\"price\">CA$40.00<\/span>                                            <span class=\"count\">30<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=40-50\">\n                    <span class=\"price\">CA$40.00<\/span> - <span class=\"price\">CA$50.00<\/span>                                            <span class=\"count\">4<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=50-60\">\n                    <span class=\"price\">CA$50.00<\/span> - <span class=\"price\">CA$60.00<\/span>                                            <span class=\"count\">3<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"radio\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_price\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?price=70-80\">\n                    <span class=\"price\">CA$70.00<\/span> - <span class=\"price\">CA$80.00<\/span>                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"tag\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"TAG\">\n                          <span class=\"title\">\n                              TAG                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-tag \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_tag\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?tag=14508\">\n                    Tagless                                            <span class=\"count\">1<span\n                                class=\"filter-count-label\">item<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_tag\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?tag=14509\">\n                    Tear Away                                            <span class=\"count\">43<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"brand_logo\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Brand Logo\">\n                          <span class=\"title\">\n                              Brand Logo                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-brand_logo \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_brand_logo\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?brand_logo=14510\">\n                    No Visible Logos                                            <span class=\"count\">19<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_brand_logo\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?brand_logo=14511\">\n                    Visible Logos                                            <span class=\"count\">7<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"moisture_wicking\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Moisture Wicking\">\n                          <span class=\"title\">\n                              Moisture Wicking                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-moisture_wicking \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_moisture_wicking\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?moisture_wicking=24706\">\n                    Yes                                            <span class=\"count\">11<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"config_pro_availability\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Availability\">\n                          <span class=\"title\">\n                              Availability                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-config_pro_availability \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_config_pro_availability\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?config_pro_availability=14976\">\n                    In Stock                                            <span class=\"count\">63<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"manage_warehouse\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Warehouse\">\n                          <span class=\"title\">\n                              Warehouse                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-manage_warehouse \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manage_warehouse\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manage_warehouse=14841\">\n                    Toronto, ON                                            <span class=\"count\">63<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_manage_warehouse\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?manage_warehouse=14842\">\n                    Vancouver, BC                                            <span class=\"count\">5<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                                <div x-data=\"{ open: true }\" data-role=\"ln_collapsible\" class=\"filter-options-item cursor-pointer border-custom-gray border-b md:border-b-0 md:pb-0 pb-2.5 md:mb-[15px]\"\n                     :class=\"{'active': open}\" attribute=\"sustainable_styles\">\n                    <div @click=\"open = ! open\" data-role=\"ln_title\" class=\"filter-options-title pt-2.5 leading-[22px] px-2.5 md:px-0 md:pt-0 md:pb-2.5\n                         uppercase border-custom-gray md:border-b-2 flex justify-between items-center\" data-attribute=\"Sustainable Styles\">\n                          <span class=\"title\">\n                              Sustainable Styles                          <\/span>\n                        <span class=\"text-sm plus-icon\" :class=\"{ 'hidden': open, 'hidden md:flex': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1408\">\n                                  <path fill=\"#555\" d=\"M1408 608v192q0 40-28 68t-68 28H896v416q0 40-28 68t-68 28H608q-40 0-68-28t-28-68V896H96q-40 0-68-28T0 800V608q0-40 28-68t68-28h416V96q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span  class=\"text-sm  \" :class=\"{ 'hidden md:flex': open, 'hidden': ! open }\">\n                            <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"12\" height=\"22\" viewBox=\"0 0 1408 1280\">\n                                 <path fill=\"#555\" d=\"M1408 480v192q0 40-28 68t-68 28H96q-40 0-68-28T0 672V480q0-40 28-68t68-28h1216q40 0 68 28t28 68z\"><\/path>\n                            <\/svg>\n                        <\/span>\n                        <span class=\"transition-transform md:hidden rotate-180\" :class=\"{ 'rotate-180': open }\">\n                                   <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewBox=\"0 0 24 24\" stroke-width=\"2\" stroke=\"currentColor\" width=\"20\" height=\"20\" role=\"img\">\n  <path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M19 9l-7 7-7-7\"\/>\n<title>chevron-down<\/title><\/svg>\n                            <\/span>\n                                            <\/div>\n                    <div :class=\"{ 'block': open, 'hidden': !open}\" data-role=\"ln_content\" class=\"filter-options-content px-2.5 md:px-0 py-1.5\">\n                        <ol class=\"md:max-h-80 md:overflow-y-auto md:overflow-x-hidden text-sm font-normal items ln-items-sustainable_styles \">\n            <li class=\"md:my-1.5 md:pb-1.5 my-2.5 hover:text-light-blue item\" >\n                            <input type=\"checkbox\"                        class=\"layer-input-filter relative footer-wrapper focus:ring-shadow-none mr-1.5 ml-0.5 border-[#cacaca]\" name=\"filter_sustainable_styles\">\n                <a href=\"https:\/\/www.tsport.ca\/dress-shirt.html?sustainable_styles=48271\">\n                    Sustainable Styles                                            <span class=\"count\">21<span\n                                class=\"filter-count-label\">items<\/span><\/span>\n                                    <\/a>\n                    <\/li>\n    <\/ol>\n                    <\/div>\n                <\/div>\n                                                            <\/div>\n                            <\/div>\n    <\/div>\n    <script>\n        function layeredFilter() {\n            return {\n                options: {\n                    openedState: 'active',\n                    collapsible: true,\n                    multipleCollapsible: true,\n                    animate: 200,\n                    mobileShopbyElement: '#layered-filter-block .filter-title [data-role=title]',\n                    collapsibleElement: '[data-role=ln_collapsible]',\n                    header: '[data-role=ln_title]',\n                    content: '[data-role=ln_content]',\n                    isCustomerLoggedIn: false,\n                    isAjax: true,\n                    params: [],\n                    active: [],\n                    checkboxEl: 'input[type=checkbox], input[type=radio]',\n                    sliderElementPrefix: '#ln_slider_',\n                    sliderTextElementPrefix: '#ln_slider_text_',\n                    openFilter: window.screen.width > 768,\n                    changeColor: false\n                },\n\n                init() {\n                    this.initObserve();\n                    var self = this;\n                    setTimeout(function() {\n                        self.initActiveItems();\n                    }, 10);\n                },\n\n                initObserve: function () {\n                    var isAjax = this.options.isAjax,\n                        self = this,\n                        submitUrl;\n\n                    var optionElements = document.querySelectorAll('.filter-options .item');\n                    optionElements.forEach(function (el) {\n                        var link = self.checkUrl(el.querySelector('a').href);\n                        if (!link) {\n                            return;\n                        }\n                        el.addEventListener('click', function (e) {\n                            if (el.classList.contains('swatch-option-link-layered')) {\n                                self.selectSwatchOption(el);\n                            }\n                            document.querySelectorAll(\".filter-options-item\").forEach(function(el) {\n                                if (el.classList.contains(\"active\") && (!self.options.active.includes(el.getAttribute('attribute')))) {\n                                    self.options.active.push(el.getAttribute('attribute'));\n                                }\n                            });\n                            window.layerActiveTabs = self.options.active;\n                            e.stopPropagation();\n                            e.preventDefault();\n                            self.changeUrl(link);\n                            self.ajaxSubmit(link);\n                        });\n                    });\n\n                    \/\/ fix browser back, forward button\n                    if (typeof window.history.replaceState === \"function\") {\n                        window.history.replaceState({url: document.URL}, document.title);\n\n                        setTimeout(function () {\n                            window.onpopstate = function (e) {\n                                if (e.state) {\n                                    self.ajaxSubmit(e.state.url, 1);\n                                }\n                            };\n                        }, 0)\n                    }\n\n                    var el = document.querySelector('#layer-product-list'),\n                        pageElements = el.querySelectorAll(`:scope ${'.pages a'}`);\n                    pageElements.forEach(function (el) {\n                        var submitUrl = self.checkUrl(el.href);\n                        if (!submitUrl) {\n                            return;\n                        }\n\n                        el.addEventListener('click', function (e) {\n                            e.stopPropagation();\n                            e.preventDefault();\n                            if (isAjax) {\n                                self.changeUrl(submitUrl);\n                                self.ajaxSubmit(submitUrl);\n                            } else location.href = submitUrl;\n                        })\n                    });\n                },\n\n                ajaxSubmit: function (submitUrl, isChangeUrl) {\n                    var self = this,\n                        productContainer = document.getElementById(\"layer-product-list\"),\n                        layerContainer = document.getElementById(\"layered-filter-block-container\"),\n                        quickViewContainer = document.getElementById(\"mpquickview-popup\"),\n                        formKey = hyva.getFormKey();\n\n                    \/** start loader *\/\n                    this.startLoader();\n\n                    fetch(submitUrl, {\n                        headers: {\n                            'X-Requested-With': 'XMLHttpRequest'\n                        },\n                        body: \"form_key=\" + formKey + \"&uenc=\" + hyva.getUenc(),\n                        method: \"POST\",\n                        mode: \"cors\",\n                        credentials: \"include\"\n                    }).then(response => response.json())\n                .then(function (response) {\n                        if (response.navigation) {\n                            layerContainer.innerHTML = response.navigation;\n                        }\n                        if (response.products) {\n                            productContainer.innerHTML = (response.products);\n                        }\n                        if (response.quickview) {\n                            quickViewContainer.innerHTML = (response.quickview);\n                        }\n                        self.stopLoader();\n                    }).catch(function (error) {\n                        typeof window.dispatchMessages !== \"undefined\" && window.dispatchMessages(\n                            [{\n                                type: \"error\",\n                                text: error\n                            }], 5000\n                        );\n                        self.stopLoader();\n                        window.location.reload();\n\n                    });\n\n                },\n\n                checkUrl: function (url) {\n                    var regex = \/(http|https):\\\/\\\/(\\w+:{0,1}\\w*)?(\\S+)(:[0-9]+)?(\\\/|\\\/([\\w#!:.?+=&%!\\-\\\/]))?\/;\n                    return regex.test(url) ? url : null;\n                },\n\n                changeUrl: function (submitUrl, isChangeUrl) {\n                    \/** change browser url *\/\n                    if (typeof window.history.pushState === 'function' && (typeof isChangeUrl === 'undefined')) {\n                        window.history.pushState({url: submitUrl}, '', submitUrl);\n                    }\n                },\n\n                initActiveItems: function () {\n                    var layerActives = [],\n                        active = [];\n                    if (typeof window.layerActiveTabs !== 'undefined') {\n                        layerActives = window.layerActiveTabs;\n                    } else {\n                        document.querySelectorAll(\".filter-options-item\").forEach(function(el) {\n                            el.querySelectorAll(\".items input\").forEach(function (item) {\n                                if ((item.checked) && (!active.includes(el.getAttribute('attribute')))) {\n                                    active.push(el.getAttribute('attribute'));\n                                    return false;\n                                }\n                            });\n                        });\n                        layerActives = active;\n                    }\n                    if (layerActives.length) {\n                        document.querySelectorAll('.filter-options-title').forEach(function (filters) {\n                            var attr = filters.parentNode.getAttribute('attribute');\n                            if (!(layerActives && layerActives.includes(attr))) {\n                                filters.dispatchEvent(new Event('click'));\n                            }\n                        });\n                    } else {\n                        document.querySelectorAll('.filter-options-title').forEach(function (filters) {\n                            filters.dispatchEvent(new Event('click'));\n                        });\n                    }\n                },\n\n                selectSwatchOption: function (el) {\n                    var childEl = el.querySelector('.swatch-option');\n                    if (childEl.classList.contains('selected')) {\n                        childEl.classList.remove('selected');\n                    } else {\n                        childEl.classList.add('selected');\n                    }\n                },\n\n                \/**\n                 * Stop full page loader action\n                 *\/\n                startLoader: function () {\n                    document.querySelector('.ln_overlay').style.display = 'block';\n                },\n\n                \/**\n                 * Stop full page loader action\n                 *\/\n                stopLoader: function () {\n                    document.querySelector('.ln_overlay').style.display = 'none';\n                },\n\n                openFilters : function () {\n                    let body = document.querySelector('body');\n                    if (body.classList.contains('window-popup-open')) {\n                        body.classList.remove('window-popup-open');\n                    } else {\n                        body.classList.add('window-popup-open');\n                    }\n                }\n\n            }\n        }\n    <\/script>\n<style>\n    .window-popup-open {\n        overflow: hidden !important;\n    }\n<\/style>\n"}