It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4. <!-- Start of Booster Apps Seo-0.1-->
  5. <title>Genuine Laptop Parts Canada </title><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw" />
  6. <meta name="description" content="Laptop Parts Canada Acer Parts Lenovo Parts HP laptop Parts Dell Parts Asus Parts MacBook Parts Alienware Parts Toshiba Parts Razer Parts Laptop Charger Laptop Battery Laptop AC Adapter Laptop Screen" /><script type="application/ld+json">
  7.  {
  8.    "@context": "https://schema.org",
  9.    "@type": "Organization",
  10.    "name": "LaptopParts.ca",
  11.    "url": "https://laptopparts.ca",
  12.    "description": "Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!","image": "https://laptopparts.ca/cdn/shop/t/20/assets/logo.png?128410",
  13.      "logo": "https://laptopparts.ca/cdn/shop/t/20/assets/logo.png?128410","sameAs": [""]
  14.  }
  15. </script><script type="application/ld+json">
  16.  {
  17.    "@context": "https://schema.org",
  18.    "@type": "WebSite",
  19.    "name": "LaptopParts.ca",
  20.    "url": "https://laptopparts.ca",
  21.    "potentialAction": {
  22.      "@type": "SearchAction",
  23.      "query-input": "required name=query",
  24.      "target": "https://laptopparts.ca/search?q={query}"
  25.    }
  26.  }
  27. </script>
  28. <!-- end of Booster Apps SEO -->
  29.    
  30.        <!-- Google tag (gtag.js) -->
  31.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  32.    <script>
  33.      window.dataLayer = window.dataLayer || [];
  34.      function gtag(){dataLayer.push(arguments);}
  35.      gtag('js', new Date());
  36.  
  37.      gtag('config', 'AW-977549716');
  38.    </script>
  39.    <!-- Google Tag Manager -->
  40.    <script>
  41.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  42.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  43.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  44.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  45.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  46.    </script>
  47.    <!-- End Google Tag Manager -->
  48.    <script>  
  49.  /**
  50.  * Author: shipon islam
  51.  * Version: 1.1.0
  52.  * Last Update: 17 Sep 2023
  53.  */
  54.  
  55.  (function() {
  56.      class GTM_DataLayer {
  57.        constructor() {
  58.          window.dataLayer = window.dataLayer || [];
  59.          this.formattedItemId = true;
  60.  
  61.          this.miniCartButtonSelector = [
  62.            // 'a[href="/cart"]',
  63.          ];
  64.  
  65.          this.beginCheckoutbuttons = [
  66.            'button[name="checkout"]',
  67.            '.additional-checkout-buttons',
  68.          ];
  69.  
  70.          this.shopifyDeirectPaymentButtonLink = [
  71.            '.shopify-payment-button'
  72.          ]
  73.  
  74.          this.isAjaxCartIncrementDecrement = true;
  75.  
  76.          this.addToWishListSelectors = {
  77.            'addWishListIcon': '',
  78.            'gridItemSelector': '',
  79.            'productLinkSelector': ''
  80.          }
  81.  
  82.          this.quickViewSelector = {
  83.            'quickViewElement': '',
  84.            'gridItemSelector': '',
  85.            'productLinkSelector': ''
  86.          }
  87.          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"CAD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  88.          this.countryCode = "CA";
  89.          this.collectData();          
  90.        }
  91.  
  92.        updateCart() {
  93.          fetch("/cart.js")
  94.          .then((response) => response.json())
  95.          .then((data) => {
  96.            this.cart = data;
  97.          });
  98.        }
  99.  
  100.        collectData() {
  101.            this.customerData();
  102.            this.ajaxRequestData();
  103.            this.miniCartData();
  104.            this.beginCheckoutData();
  105.  
  106.            
  107.  
  108.            
  109.  
  110.            
  111.            
  112.            this.addToWishListData();
  113.            this.quickViewData();
  114.            this.newsletterSignupData();
  115.        }
  116.  
  117.        //logged in customer data
  118.        customerData() {
  119.            const currentUser = {};
  120.            
  121.  
  122.            window.dataLayer = window.dataLayer || [];
  123.            dataLayer.push({
  124.              customer: currentUser
  125.            })
  126.        }
  127.  
  128.        // shipon_add_to_cart, shipon_remove_from_cart
  129.        ajaxRequestData() {
  130.          const self = this;
  131.          let originalFetch = window.fetch;
  132.          
  133.          window.fetch = function () {
  134.            return originalFetch.apply(this, arguments).then((response) => {
  135.              if (response.ok) {
  136.                let cloneResponse = response.clone();
  137.                // add to cart
  138.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  139.                  cloneResponse.text().then((text) => {
  140.                    let item = JSON.parse(text);
  141.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  142.                    self.updateCart();
  143.                  });
  144.                }else if(arguments[0].includes("/cart/change")) {
  145.                   cloneResponse.text().then((text) => {
  146.                    let newCart = JSON.parse(text);
  147.                    let newCartItems = newCart.items;
  148.                    let oldCartItems = self.cart.items;
  149.  
  150.                    for(let i = 0; i < oldCartItems.length; i++) {
  151.                      let item = oldCartItems[i];
  152.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  153.  
  154.  
  155.                      if(newItem) {
  156.  
  157.                        if(newItem.quantity > item.quantity) {
  158.                          // cart item increment
  159.                          let quantity = (newItem.quantity - item.quantity);
  160.                          let updatedItem = {...item, quantity}
  161.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  162.                          self.updateCart();
  163.  
  164.                        }else if(newItem.quantity < item.quantity) {
  165.                          // cart item decrement
  166.                          let quantity = (item.quantity - newItem.quantity);
  167.                          let updatedItem = {...item, quantity}
  168.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  169.                          self.updateCart();
  170.                        }
  171.                        
  172.  
  173.                      }else {
  174.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  175.                        self.updateCart();
  176.                      }
  177.                    }
  178.                  });
  179.                }
  180.              }
  181.              return response;
  182.            });
  183.          }
  184.        }
  185.  
  186.        // shipon_view_cart
  187.        miniCartData() {
  188.          if(this.miniCartButtonSelector.length) {
  189.            let self = this;
  190.            this.miniCartButtonSelector.forEach((selector) => {
  191.              let miniCartButton = document.querySelector(selector);
  192.              if(miniCartButton) {
  193.                miniCartButton.addEventListener('click', () => {
  194.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  195.                });
  196.              }
  197.            });
  198.          }
  199.        }
  200.  
  201.        // shipon_begin_checkout
  202.        beginCheckoutData() {
  203.          let self = this;
  204.          document.addEventListener('click', () => {
  205.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  206.            if(targetElement) {
  207.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  208.            }
  209.          });
  210.        }
  211.  
  212.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  213.        viewCartPageData() {
  214.          
  215.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  216.  
  217.          //if cart quantity chagne reload page
  218.          if(!this.isAjaxCartIncrementDecrement) {
  219.            const self = this;
  220.            document.addEventListener('pointerdown', (event) => {
  221.              const target = event.target.closest('a[href*="/cart/change?"]');
  222.              if(target) {
  223.                const linkUrl = target.getAttribute('href');
  224.                const queryString = linkUrl.split("?")[1];
  225.                const urlParams = new URLSearchParams(queryString);
  226.                const newQuantity = urlParams.get("quantity");
  227.                const line = urlParams.get("line");
  228.                const cart_id = urlParams.get("id");
  229.        
  230.                
  231.                if(newQuantity && (line || cart_id)) {
  232.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  233.        
  234.                  let event = 'shipon_add_to_cart';
  235.                  if(newQuantity < item.quantity) {
  236.                    event = 'shipon_remove_from_cart';
  237.                  }
  238.        
  239.                  let quantity = Math.abs(newQuantity - item.quantity);
  240.                  item['quantity'] = quantity;
  241.        
  242.                  self.singleCartItemDataLayer(event, item);
  243.                }
  244.              }
  245.            });
  246.          }
  247.        }
  248.  
  249.        productSinglePage() {
  250.        
  251.        }
  252.  
  253.        collectionsPageData() {
  254.          var ecommerce = {
  255.            'items': [
  256.              
  257.              ]
  258.          };
  259.  
  260.          ecommerce['item_list_id'] = null
  261.          ecommerce['item_list_name'] = null
  262.  
  263.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  264.        }
  265.        
  266.        
  267.        // add to wishlist
  268.        addToWishListData() {
  269.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  270.            const self = this;
  271.            document.addEventListener('pointerdown', (event) => {
  272.              let target = event.target;
  273.              
  274.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  275.                let pageULR = window.location.href.replace(/\?.+/, '');
  276.                let requestURL = undefined;
  277.          
  278.                if(/\/products\/[^/]+$/.test(pageULR)) {
  279.                  requestURL = pageULR;
  280.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  281.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  282.                  if(itemElement) {
  283.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  284.                    if(linkElement) {
  285.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  286.                      if(link && /\/products\/[^/]+$/.test(link)) {
  287.                        requestURL = link;
  288.                      }
  289.                    }
  290.                  }
  291.                }
  292.  
  293.                if(requestURL) {
  294.                  fetch(requestURL + '.json')
  295.                    .then(res => res.json())
  296.                    .then(result => {
  297.                      let data = result.product;                    
  298.                      if(data) {
  299.                        let dataLayerData = {
  300.                         product_id: data.id,
  301.                            variant_id: data.variants[0].id,
  302.                            product_title: data.title,
  303.                         quantity: 1,
  304.                         final_price: parseFloat(data.variants[0].price) * 100,
  305.                         total_discount: 0,
  306.                         product_type: data.product_type,
  307.                         vendor: data.vendor,
  308.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  309.                         sku: data.variants[0].sku,
  310.                        }
  311.  
  312.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  313.                      }
  314.                    });
  315.                }
  316.              }
  317.            });
  318.          }
  319.        }
  320.  
  321.        quickViewData() {
  322.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  323.            const self = this;
  324.            document.addEventListener('pointerdown', (event) => {
  325.              let target = event.target;
  326.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  327.                let requestURL = undefined;
  328.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  329.                
  330.                if(itemElement) {
  331.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  332.                  if(linkElement) {
  333.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  334.                    if(link && /\/products\/[^/]+$/.test(link)) {
  335.                      requestURL = link;
  336.                    }
  337.                  }
  338.                }  
  339.                
  340.                if(requestURL) {
  341.                    fetch(requestURL + '.json')
  342.                      .then(res => res.json())
  343.                      .then(result => {
  344.                        let data = result.product;                    
  345.                        if(data) {
  346.                          let dataLayerData = {
  347.                           product_id: data.id,
  348.                            variant_id: data.variants[0].id,
  349.                            product_title: data.title,
  350.                           quantity: 1,
  351.                           final_price: parseFloat(data.variants[0].price) * 100,
  352.                           total_discount: 0,
  353.                           product_type: data.product_type,
  354.                           vendor: data.vendor,
  355.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  356.                           sku: data.variants[0].sku,
  357.                          }
  358.  
  359.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  360.                          self.quickViewVariants = data.variants;
  361.                          self.quickViewedItem = dataLayerData;
  362.                        }
  363.                      });
  364.                  }
  365.              }
  366.            });
  367.  
  368.            
  369.              if(this.shopifyDeirectPaymentButtonLink.length) {
  370.                let self = this;
  371.                document.addEventListener('pointerdown', (event) => {
  372.                  let target = event.target;
  373.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  374.                  
  375.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  376.  
  377.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  378.                    if(checkoutForm) {
  379.                        let quantity = 1;
  380.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  381.                        let quantitySelector = checkoutForm.getAttribute('id');
  382.  
  383.                        if(quantitySelector) {
  384.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  385.                          if(quentityInput) {
  386.                              quantity = +quentityInput.value;
  387.                          }
  388.                        }
  389.  
  390.                        if(varientInput) {
  391.                            let variant_id = parseInt(varientInput.value);
  392.  
  393.                            if(variant_id) {
  394.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  395.                                if(variant && self.quickViewedItem) {
  396.                                    self.quickViewedItem['variant_id'] = variant_id;
  397.                                    self.quickViewedItem['variant_title'] = variant.title;
  398.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  399.                                    self.quickViewedItem['quantity'] = quantity;
  400.    
  401.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  402.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  403.                                }
  404.                            }
  405.                        }
  406.                    }
  407.  
  408.                  }
  409.                });
  410.            }
  411.            
  412.          }
  413.        }
  414.  
  415.        // single item add in dataLyaer
  416.        singleCartItemDataLayer(event, item) {
  417.          dataLayer.push({ "ecommerce": null });
  418.          const dataLayerData = {
  419.            "event": event,
  420.            "ecommerce": {
  421.              "currency": this.cart.currency,
  422.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  423.              "items": [{
  424.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  425.                  "variant_id": item.variant_id.toString(),
  426.                  "item_name": item.product_title,
  427.                  "quantity": item.quantity,
  428.                  "price": +((item.final_price / 100).toFixed(2)),
  429.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  430.              }]
  431.            }
  432.          }
  433.  
  434.          if(item.product_type) {
  435.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  436.          }
  437.  
  438.          if(item.vendor) {
  439.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  440.          }
  441.  
  442.          if(item.variant_title && item.variant_title !== 'Default Title') {
  443.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  444.          }
  445.  
  446.          if(item.sku) {
  447.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  448.          }
  449.  
  450.          if(item.item_list_id) {
  451.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  452.          }
  453.          
  454.          if(item.item_list_name) {
  455.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  456.          }
  457.          
  458.          dataLayer.push(dataLayerData);
  459.        };
  460.  
  461.        // multiple items add in dataLayer
  462.        cartItemsDataLayer(event, cart) {
  463.          dataLayer.push({ 'ecommerce': null });
  464.          const dataLayerData = {
  465.            'event': event,
  466.            'ecommerce': {
  467.               'currency': this.cart.currency,
  468.               'items': cart.items.map((item, index) => {
  469.                 const itemDataLayerData = {
  470.                    'index': index,
  471.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  472.                    'variant_id': item.variant_id.toString(),
  473.                    'item_name': item.product_title,
  474.                    'quantity': item.quantity,
  475.                    'price': +((item.final_price / 100).toFixed(2)),
  476.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  477.                }
  478.  
  479.                if(item.product_type) {
  480.                  itemDataLayerData['item_category'] = item.product_type;
  481.                }
  482.                
  483.                 if(item.vendor) {
  484.                  itemDataLayerData['item_brand'] = item.vendor;
  485.                }
  486.  
  487.                                
  488.                if(item.variant_title && item.variant_title !== 'Default Title') {
  489.                  itemDataLayerData['item_variant'] = item.variant_title;
  490.                }
  491.              
  492.                if(item.sku) {
  493.                  itemDataLayerData['sku'] = item.sku;
  494.                }
  495.  
  496.                if(item.item_list_name) {
  497.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  498.                }
  499.  
  500.                if(item.item_list_id) {
  501.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  502.                }
  503.  
  504.                return itemDataLayerData;
  505.              })
  506.            }
  507.          }
  508.  
  509.          if(cart.total_price) {
  510.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  511.          }
  512.          
  513.          if(cart.item_list_id) {
  514.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  515.          }
  516.          
  517.          if(cart.item_list_name) {
  518.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  519.          }
  520.          
  521.          dataLayer.push(dataLayerData);
  522.        }
  523.  
  524.        
  525.        // newsletters signup
  526.        newsletterSignupData() {
  527.        document.addEventListener('click', function(event) {
  528.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  529.          let targetForm = event.target.closest('form[action^="/contact"]');
  530.          if(target && targetForm) {
  531.            let email = targetForm.querySelector('input[type="email"]').value;
  532.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  533.            if(formType && formType.value === 'newsletter') {
  534.              let form_location = window.location.href;
  535.              let form_id = targetForm.getAttribute('id');
  536.              let form_classes = targetForm.getAttribute('class');
  537.        
  538.              dataLayer.push({
  539.                event: 'newsletter_signup',
  540.                email: email,
  541.                form_location,
  542.                form_id,
  543.                form_classes
  544.              });
  545.            }
  546.          }
  547.        });
  548.      }
  549.      }
  550.      
  551.  
  552.      document.addEventListener('DOMContentLoaded', function() {
  553.        try{
  554.          new GTM_DataLayer();
  555.        }catch(error) {
  556.          console.log(error);
  557.        }
  558.      });
  559.    
  560.  })();
  561. </script>
  562.  
  563.  
  564.  
  565.    <script>
  566.      window.Store = window.Store || {};
  567.      window.Store.id = 11386172;
  568.    </script>
  569.    <meta charset="utf-8">
  570.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  571.  
  572.    <link rel="preconnect" href="https://cdn.shopify.com">
  573.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  574.    <link rel="preconnect" href="https://v.shopify.com">
  575.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  576.  
  577.    
  578.  
  579.    
  580.  
  581.    
  582.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  583.  
  584.  
  585.    
  586.      <link rel="canonical" href="https://laptopparts.ca/">
  587.    
  588.  
  589.    <meta name="viewport" content="width=device-width">
  590.  
  591.    
  592.    
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608. <meta property="og:site_name" content="LaptopParts.ca">
  609. <meta property="og:url" content="https://laptopparts.ca/">
  610. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  611. <meta property="og:type" content="website">
  612. <meta property="og:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  613.  
  614.  
  615.  
  616.  
  617.    
  618.    
  619.    
  620.  
  621.    
  622.    
  623.    <meta
  624.      property="og:image"
  625.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  626.    />
  627.    <meta
  628.      property="og:image:secure_url"
  629.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  630.    />
  631.    <meta property="og:image:width" content="2540" />
  632.    <meta property="og:image:height" content="630" />
  633.    
  634.    
  635.    <meta property="og:image:alt" content="Social media image" />
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  656. <meta name="twitter:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  657.  
  658.  
  659.    
  660.    
  661.    
  662.      
  663.      
  664.      <meta name="twitter:card" content="summary_large_image">
  665.    
  666.    
  667.    <meta
  668.      property="twitter:image"
  669.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  670.    />
  671.    <meta property="twitter:image:width" content="1200" />
  672.    <meta property="twitter:image:height" content="600" />
  673.    
  674.    
  675.    <meta property="twitter:image:alt" content="Social media image" />
  676.  
  677. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  678. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  679.  
  680.  
  681.  
  682.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.25d963ed46da26098ebeab731e90d8802d989fa5.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=212bc52e2c90dc60ee3351ff747ed161ce425ebd2313c33978515f41d526c500" as="font" crossorigin="anonymous">
  683.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
  684.  
  685.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw">
  686. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  687. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  688. <meta id="in-context-paypal-metadata" data-shop-id="11386172" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="CAD">
  689. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
  690. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  691. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
  692. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":11386172,"countryCode":"CA","currencyCode":"CAD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/11386172","merchantName":"LaptopParts.ca","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","interac","jcb"],"total":{"type":"pending","label":"LaptopParts.ca","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  693. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"locale":"en"}</script>
  694. <script>var Shopify = Shopify || {};
  695. Shopify.shop = "laptoppartsatp.myshopify.com";
  696. Shopify.locale = "en";
  697. Shopify.currency = {"active":"CAD","rate":"1.0"};
  698. Shopify.country = "CA";
  699. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  700. Shopify.theme.handle = "null";
  701. Shopify.theme.style = {"id":null,"handle":null};
  702. Shopify.cdnHost = "laptopparts.ca/cdn";
  703. Shopify.routes = Shopify.routes || {};
  704. Shopify.routes.root = "/";</script>
  705. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  706. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  707. <script>
  708.  window.ShopifyPay = window.ShopifyPay || {};
  709.  window.ShopifyPay.apiHost = "shop.app\/pay";
  710.  window.ShopifyPay.redirectState = null;
  711. </script>
  712. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  713. <script>
  714.  window.Shopify = window.Shopify || {};
  715.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  716.  window.Shopify.featureAssets['shop-js'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_BMcL9bw4.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"shop-cart-sync":["modules/v2/client.shop-cart-sync_Dz9h8RHM.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"init-windoid":["modules/v2/client.init-windoid_sQF-QLLI.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_DiTMbfW0.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"init-shop-cart-sync":["modules/v2/client.init-shop-cart-sync_B3RgAl3M.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"pay-button":["modules/v2/client.pay-button_xbIPyKtk.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_9qTz1upw.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"shop-button":["modules/v2/client.shop-button_DROfQ-Pw.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_CehTsSfo.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_kjwZuYIL.en.esm.js","modules/v2/client.shop-login-button_Bg8piTNJ.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CG0ePEDw.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_Bg8piTNJ.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_DsFSorng.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_GzoesL4B.en.esm.js","modules/v2/client.shop-login-button_Bg8piTNJ.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_C8_25TL-.en.esm.js","modules/v2/client.shop-login-button_Bg8piTNJ.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"lead-capture":["modules/v2/client.lead-capture_C8U4dr4I.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"],"payment-terms":["modules/v2/client.payment-terms_1CzOQRVF.en.esm.js","modules/v2/chunk.common_DkXzZczB.esm.js","modules/v2/chunk.modal_DtVu4ACX.esm.js"]};
  717. </script>
  718. <script>(function() {
  719.  var isLoaded = false;
  720.  function asyncLoad() {
  721.    if (isLoaded) return;
  722.    isLoaded = true;
  723.    var urls = ["\/\/static.zotabox.com\/0\/9\/098c469a55b8508df7cc687731ea9d89\/widgets.js?shop=laptoppartsatp.myshopify.com","https:\/\/sociallogin-3cb0.kxcdn.com\/resource\/resource.js?cache_key=150634481676\u0026shop=laptoppartsatp.myshopify.com","https:\/\/requestquote.w3apps.co\/js\/app.js?shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/full-featured-widget.min.js?p=s\u0026ia=%23abqa-widget\u0026iacp=%23cat-abqa-widget\u0026shop=laptoppartsatp.myshopify.com","https:\/\/laptopparts.services.answerbase.com\/javascript\/widget\/cta-widget.min.js?p=s\u0026ia=%23abcta-widget\u0026shop=laptoppartsatp.myshopify.com","https:\/\/cdn.hextom.com\/js\/quickannouncementbar.js?shop=laptoppartsatp.myshopify.com","https:\/\/cdn.richpanel.com\/js\/richpanel_shopify_script.js?appClientId=laptoppartsatp5581\u0026tenantId=laptoppartsatp558\u0026shop=laptoppartsatp.myshopify.com\u0026shop=laptoppartsatp.myshopify.com"];
  724.    for (var i = 0; i < urls.length; i++) {
  725.      var s = document.createElement('script');
  726.      s.type = 'text/javascript';
  727.      s.async = true;
  728.      s.src = urls[i];
  729.      var x = document.getElementsByTagName('script')[0];
  730.      x.parentNode.insertBefore(s, x);
  731.    }
  732.  };
  733.  if(window.attachEvent) {
  734.    window.attachEvent('onload', asyncLoad);
  735.  } else {
  736.    window.addEventListener('load', asyncLoad, false);
  737.  }
  738. })();</script>
  739. <script id="__st">var __st={"a":11386172,"offset":-14400,"reqid":"63de1fb1-cd74-4378-8c74-b7b83644d884-1758165464","pageurl":"laptopparts.ca\/","u":"13d80ed31642","p":"home"};</script>
  740. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  741. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!1,!0)}();</script>
  742. <script integrity="sha256-52AcMU7V7pcBOXWImdc/TAGTFKeNjmkeM1Pvks/DTgc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/storefront/load_feature-81c60534.js" crossorigin="anonymous"></script>
  743. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-65b4c6d7.js?v=20250812"></script>
  744. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  745. </script>
  746. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  747.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  748. </script>
  749. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  750. </script>
  751. <link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  752. <style id="shopify-accelerated-checkout-cart">
  753.        #shopify-buyer-consent {
  754.  margin-top: 1em;
  755.  display: inline-block;
  756.  width: 100%;
  757. }
  758.  
  759. #shopify-buyer-consent.hidden {
  760.  display: none;
  761. }
  762.  
  763. #shopify-subscription-policy-button {
  764.  background: none;
  765.  border: none;
  766.  padding: 0;
  767.  text-decoration: underline;
  768.  font-size: inherit;
  769.  cursor: pointer;
  770. }
  771.  
  772. #shopify-subscription-policy-button::before {
  773.  box-shadow: none;
  774. }
  775.  
  776.      </style>
  777.  
  778. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  779.  
  780.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
  781.  
  782.    
  783.    <script>
  784.      window.Theme = window.Theme || {};
  785.      window.Theme.version = '9.1.1';
  786.      window.Theme.name = 'Empire';
  787.      window.Theme.routes = {
  788.        "root_url": "/",
  789.        "account_url": "/account",
  790.        "account_login_url": "/account/login",
  791.        "account_logout_url": "/account/logout",
  792.        "account_register_url": "/account/register",
  793.        "account_addresses_url": "/account/addresses",
  794.        "collections_url": "/collections",
  795.        "all_products_collection_url": "/collections/all",
  796.        "search_url": "/search",
  797.        "predictive_search_url": "/search/suggest",
  798.        "cart_url": "/cart",
  799.        "cart_add_url": "/cart/add",
  800.        "cart_change_url": "/cart/change",
  801.        "cart_clear_url": "/cart/clear",
  802.        "product_recommendations_url": "/recommendations/products",
  803.      };
  804.    </script>
  805.    
  806.  
  807.    
  808.  
  809.    
  810.    
  811.    
  812.    
  813.      ></script>
  814. <script id='merchantWidgetScript' src="https://www.gstatic.com/shopping/merchant/merchantwidget.js" defer></script>
  815. <script type="text/javascript">
  816.  merchantWidgetScript.addEventListener('load', function () {
  817.    merchantwidget.start({
  818.      position: 'LEFT_BOTTOM',
  819.      sideMargin: 21,
  820.      bottomMargin: 33,
  821.      mobileSideMargin: 11,
  822.      mobileBottomMargin: 19
  823.    });
  824.  });
  825. </script>
  826. <script nowprocket nitro-exclude type="text/javascript" id="sa-dynamic-optimization" data-uuid="214257c8-8997-4ba0-ac14-a582ae3d0522" src="data:text/javascript;base64,dmFyIHNjcmlwdCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoInNjcmlwdCIpO3NjcmlwdC5zZXRBdHRyaWJ1dGUoIm5vd3Byb2NrZXQiLCAiIik7c2NyaXB0LnNldEF0dHJpYnV0ZSgibml0cm8tZXhjbHVkZSIsICIiKTtzY3JpcHQuc3JjID0gImh0dHBzOi8vZGFzaGJvYXJkLnNlYXJjaGF0bGFzLmNvbS9zY3JpcHRzL2R5bmFtaWNfb3B0aW1pemF0aW9uLmpzIjtzY3JpcHQuZGF0YXNldC51dWlkID0gIjIxNDI1N2M4LTg5OTctNGJhMC1hYzE0LWE1ODJhZTNkMDUyMiI7c2NyaXB0LmlkID0gInNhLWR5bmFtaWMtb3B0aW1pemF0aW9uLWxvYWRlciI7ZG9jdW1lbnQuaGVhZC5hcHBlbmRDaGlsZChzY3JpcHQpOw=="></script>
  827.     <!-- BEGIN app block: shopify://apps/okas-live-search-filter/blocks/app-block/77de2d4b-51b0-46d6-9fa5-dbe675e819d8 --><script>
  828.  
  829.    
  830.      
  831.            const _0xY9yrmhE9 = {        "en": {                              "_ls_s_footer_text": "SEE ALL RESULTS",          "_ls_s_no_results_text": "No Results Found",          "_ls_s_sale_text": "Sale",          "_ls_s_products": "PRODUCTS",          "_ls_s_pages": "PAGES",          "_ls_s_blogs": "BLOGS",          "_ls_s_collections": "COLLECTIONS",          "_ls_s_popular": "POPULAR SUGGESTIONS"        }      }        
  832.    
  833.  
  834.  
  835.  if ("undefined" == typeof _ls_loaded) {
  836.    _ls_loaded = !0;
  837.    var e = document.createElement("script");
  838.    e.src = "https://cdn.shopify.com/s/files/1/0331/8097/files/livesearch.complete.min_5fd058c2-0401-4f72-a351-b5ec23e835ff.js?v=1735459337", e.async = !0, document.head.appendChild(e)    
  839.  }  
  840. </script>
  841.  
  842.  
  843.  
  844. <!-- END app block --><script src="https://cdn.shopify.com/extensions/e56b2cec-7f27-4805-8824-fe051dc4500b/pushowl-brevo-141/assets/pushowl-shopify.js" type="text/javascript" defer="defer"></script>
  845. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  846. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 11386172,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  847. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["ac843a20"],webPixelsConfigList: [{"id":"560693335","configuration":"{\"subdomain\": \"laptoppartsatp\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"05f07d40f185a50e450c13cf42ecfb98","type":"APP","apiClientId":1615517,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"392691799","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\",\\\"GT-MK9LHHN\\\"],\\\"target_country\\\":\\\"CA\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/GZ2ECPfhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/8pFiCPHhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/1qhMCO7hwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/K-jbCOjhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/Pl4oCOvhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/QncHCPrhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/b4EuCPThwI4YEJTzkNID\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"b2a88bafab3e21179ed38636efcd8a93","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"328826967","configuration":"{\"accountID\":\"y3ihof\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"219ec19a744f4aff2da134bac3704727","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"43057239","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Shopper Approved TYP code"},{"id":"69697623","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"AnswerBase Conversion Tracking"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"LaptopParts.ca","paymentSettings":{"currencyCode":"CAD"},"myshopifyDomain":"laptoppartsatp.myshopify.com","countryCode":"CA","storefrontUrl":"https:\/\/laptopparts.ca"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://laptopparts.ca/cdn","f76b4158w3f0cce88pd0473a40m5f85a2ef",{"modern":"","legacy":""},{"shopId":"11386172","storefrontBaseUrl":"https:\/\/laptopparts.ca","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"ac843a20\"]","isMerchantRequest":"false","hashVersion":"f76b4158w3f0cce88pd0473a40m5f85a2ef","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
  848.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  849.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  850.  window.ShopifyAnalytics.meta.currency = 'CAD';
  851.  var meta = {"page":{"pageType":"home"}};
  852.  for (var attr in meta) {
  853.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  854.  }
  855. </script>
  856. <script class="analytics">
  857.  (function () {
  858.    var customDocumentWrite = function(content) {
  859.      var jquery = null;
  860.  
  861.      if (window.jQuery) {
  862.        jquery = window.jQuery;
  863.      } else if (window.Checkout && window.Checkout.$) {
  864.        jquery = window.Checkout.$;
  865.      }
  866.  
  867.      if (jquery) {
  868.        jquery('body').append(content);
  869.      }
  870.    };
  871.  
  872.    var hasLoggedConversion = function(token) {
  873.      if (token) {
  874.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  875.      }
  876.      return false;
  877.    }
  878.  
  879.    var setCookieIfConversion = function(token) {
  880.      if (token) {
  881.        var twoMonthsFromNow = new Date(Date.now());
  882.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  883.  
  884.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  885.      }
  886.    }
  887.  
  888.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  889.    if (trekkie.integrations) {
  890.      return;
  891.    }
  892.    trekkie.methods = [
  893.      'identify',
  894.      'page',
  895.      'ready',
  896.      'track',
  897.      'trackForm',
  898.      'trackLink'
  899.    ];
  900.    trekkie.factory = function(method) {
  901.      return function() {
  902.        var args = Array.prototype.slice.call(arguments);
  903.        args.unshift(method);
  904.        trekkie.push(args);
  905.        return trekkie;
  906.      };
  907.    };
  908.    for (var i = 0; i < trekkie.methods.length; i++) {
  909.      var key = trekkie.methods[i];
  910.      trekkie[key] = trekkie.factory(key);
  911.    }
  912.    trekkie.load = function(config) {
  913.      trekkie.config = config || {};
  914.      trekkie.config.initialDocumentCookie = document.cookie;
  915.      var first = document.getElementsByTagName('script')[0];
  916.      var script = document.createElement('script');
  917.      script.type = 'text/javascript';
  918.      script.onerror = function(e) {
  919.        var scriptFallback = document.createElement('script');
  920.        scriptFallback.type = 'text/javascript';
  921.        scriptFallback.onerror = function(error) {
  922.                var Monorail = {
  923.      produce: function produce(monorailDomain, schemaId, payload) {
  924.        var currentMs = new Date().getTime();
  925.        var event = {
  926.          schema_id: schemaId,
  927.          payload: payload,
  928.          metadata: {
  929.            event_created_at_ms: currentMs,
  930.            event_sent_at_ms: currentMs
  931.          }
  932.        };
  933.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  934.      },
  935.      sendRequest: function sendRequest(endpointUrl, payload) {
  936.        // Try the sendBeacon API
  937.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  938.          var blobData = new window.Blob([payload], {
  939.            type: 'text/plain'
  940.          });
  941.  
  942.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  943.            return true;
  944.          } // sendBeacon was not successful
  945.  
  946.        } // XHR beacon
  947.  
  948.        var xhr = new XMLHttpRequest();
  949.  
  950.        try {
  951.          xhr.open('POST', endpointUrl);
  952.          xhr.setRequestHeader('Content-Type', 'text/plain');
  953.          xhr.send(payload);
  954.        } catch (e) {
  955.          console.log(e);
  956.        }
  957.  
  958.        return false;
  959.      },
  960.      isIos12: function isIos12() {
  961.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  962.      }
  963.    };
  964.    Monorail.produce('monorail-edge.shopifysvc.com',
  965.      'trekkie_storefront_load_errors/1.1',
  966.      {shop_id: 11386172,
  967.      theme_id: 126947917911,
  968.      app_name: "storefront",
  969.      context_url: window.location.href,
  970.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.65b96dff0e3deac201f4bbc09d95fca662aba080.min.js"});
  971.  
  972.        };
  973.        scriptFallback.async = true;
  974.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.65b96dff0e3deac201f4bbc09d95fca662aba080.min.js';
  975.        first.parentNode.insertBefore(scriptFallback, first);
  976.      };
  977.      script.async = true;
  978.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.65b96dff0e3deac201f4bbc09d95fca662aba080.min.js';
  979.      first.parentNode.insertBefore(script, first);
  980.    };
  981.    trekkie.load(
  982.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"13387235485564705856","contentLanguage":"en","currency":"CAD","eventMetadataId":"b8d4f3ff-4c4f-45f5-b772-d2d2f9bf8fda"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  983.    );
  984.  
  985.    var loaded = false;
  986.    trekkie.ready(function() {
  987.      if (loaded) return;
  988.      loaded = true;
  989.  
  990.      window.ShopifyAnalytics.lib = window.trekkie;
  991.  
  992.      var originalDocumentWrite = document.write;
  993.      document.write = customDocumentWrite;
  994.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  995.      document.write = originalDocumentWrite;
  996.  
  997.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  998.  
  999.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1000.      var token = match? match[1]: undefined;
  1001.      if (!hasLoggedConversion(token)) {
  1002.        setCookieIfConversion(token);
  1003.        
  1004.      }
  1005.    });
  1006.  
  1007.  
  1008.        var eventsListenerScript = document.createElement('script');
  1009.        eventsListenerScript.async = true;
  1010.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/storefront/assets/shop_events_listener-8675b082.js";
  1011.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1012.  
  1013. })();</script>
  1014. <script
  1015.  defer
  1016.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-2.0.8.min.js"
  1017.  data-application="storefront-renderer"
  1018.  data-shop-id="11386172"
  1019.  data-render-region="gcp-us-east1"
  1020.  data-page-type="index"
  1021.  data-theme-instance-id="126947917911"
  1022.  data-theme-name="Empire"
  1023.  data-theme-version="9.1.1"
  1024.  data-monorail-region="shop_domain"
  1025.  data-resource-timing-sampling-rate="10"
  1026.  data-shs="true"
  1027.  data-shs-beacon="true"
  1028. ></script>
  1029. </head>
  1030.  
  1031.  <body
  1032.    class="template-index"
  1033.    data-instant-allow-query-string
  1034.    
  1035.  >
  1036.    <script>
  1037.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1038.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1039.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1040.    </script>
  1041.  
  1042.    <!-- Google Tag Manager (noscript) -->
  1043.    <noscript
  1044.      ><iframe
  1045.        loading="lazy"
  1046.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1047.        height="0"
  1048.        width="0"
  1049.        style="display:none;visibility:hidden"
  1050.      ></iframe
  1051.    ></noscript>
  1052.    <!-- End Google Tag Manager (noscript) -->
  1053.  
  1054.    
  1055.    <svg
  1056.      class="icon-star-reference"
  1057.      aria-hidden="true"
  1058.      focusable="false"
  1059.      role="presentation"
  1060.      xmlns="http://www.w3.org/2000/svg"
  1061.      width="20"
  1062.      height="20"
  1063.      viewBox="3 3 17 17"
  1064.      fill="none"
  1065.    >
  1066.      <symbol id="icon-star">
  1067.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1068.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  1069.      </symbol>
  1070.      <clipPath id="icon-star-clip">
  1071.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  1072.      </clipPath>
  1073.    </svg>
  1074.    
  1075.  
  1076.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1077.  
  1078.    <!-- BEGIN sections: header-group -->
  1079. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1080.  type="application/json"
  1081.  data-section-id="sections--15492291133527__announcement-bar"
  1082.  data-section-type="static-announcement">
  1083. </script>
  1084.  
  1085.  
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094.    <div
  1095.      class="
  1096.        announcement-bar
  1097.        
  1098.      "
  1099.      style="
  1100.        color: #ffffff;
  1101.        background: #fe0000;
  1102.      "
  1103.      data-announcement-bar
  1104.    >
  1105.      
  1106.  
  1107.      
  1108.        <div class="announcement-bar-text">
  1109.          📞 <b>Text us at 613-704-4708</b>
  1110.  
  1111. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1112.        </div>
  1113.      
  1114.  
  1115.      <div class="announcement-bar-text-mobile">
  1116.        
  1117.          📞 <b>Text us at 613-704-4708</b>
  1118.  
  1119. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1120.        
  1121.      </div>
  1122.    </div>
  1123.  
  1124.  
  1125.  
  1126. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1127.  
  1128.  
  1129. <script
  1130.  type="application/json"
  1131.  data-section-id="sections--15492291133527__header"
  1132.  data-section-type="static-header"
  1133.  data-section-data>
  1134.  {
  1135.    "settings": {
  1136.      "sticky_header": false,
  1137.      "has_box_shadow": false,
  1138.      "live_search": {
  1139.        "enable": false,
  1140.        "money_format": "${{amount}}",
  1141.        "show_mobile_search_bar": false
  1142.      }
  1143.    }
  1144.  }
  1145. </script>
  1146.  
  1147.  
  1148.  
  1149.  
  1150.  
  1151. <style data-shopify>
  1152.  .site-logo {
  1153.    max-width: 250px;
  1154.  }
  1155.  
  1156.  .site-logo-image {
  1157.    max-height: 100px;
  1158.  }
  1159. </style>
  1160.  
  1161. <header
  1162.  class="site-header site-header-nav--open"
  1163.  role="banner"
  1164.  data-site-header
  1165. >
  1166.  <div
  1167.    class="
  1168.      site-header-main
  1169.      
  1170.        site-header--full-width
  1171.      
  1172.    "
  1173.    data-site-header-main
  1174.    
  1175.    
  1176.      data-site-header-mobile-search-button
  1177.    
  1178.  >
  1179.    <button class="site-header-menu-toggle" data-menu-toggle>
  1180.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1181.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1182.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1183.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1184.        <span class="visually-hidden">Menu</span>
  1185.      </div>
  1186.    </button>
  1187.  
  1188.    
  1189.      
  1190.      
  1191.        <a
  1192.          class="site-header-mobile-search-button"
  1193.          href="/search"
  1194.        >
  1195.          
  1196.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1197.          <svg
  1198.  aria-hidden="true"
  1199.  focusable="false"
  1200.  role="presentation"
  1201.  xmlns="http://www.w3.org/2000/svg"
  1202.  width="23"
  1203.  height="24"
  1204.  fill="none"
  1205.  viewBox="0 0 23 24"
  1206. >
  1207.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1208.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1209. </svg>
  1210.  
  1211.        </div>
  1212.      
  1213.        </a>
  1214.      
  1215.    
  1216.  
  1217.    <div
  1218.      class="
  1219.        site-header-main-content
  1220.        
  1221.      "
  1222.    >
  1223.      <div class="site-header-logo">
  1224.        <a
  1225.          class="site-logo"
  1226.          href="/">
  1227.          
  1228.            
  1229.            
  1230.  
  1231.            
  1232.  
  1233.  
  1234.  
  1235.  <img loading="lazy"
  1236.    
  1237.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1238.    
  1239.    alt=""
  1240.  
  1241.    
  1242.      data-rimg
  1243.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1244.    
  1245.  
  1246.    class="site-logo-image"
  1247.    style="
  1248.        object-fit:cover;object-position:50.0% 50.0%;
  1249.      
  1250. "
  1251.    
  1252.  >
  1253.  
  1254.  
  1255.  
  1256.  
  1257.          
  1258.        </a>
  1259.      </div>
  1260.  
  1261.      
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267. <div class="live-search" data-live-search><form
  1268.    class="
  1269.      live-search-form
  1270.      form-fields-inline
  1271.      
  1272.    "
  1273.    action="/search"
  1274.    method="get"
  1275.    role="search"
  1276.    aria-label="Product"
  1277.    data-live-search-form
  1278.  >
  1279.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1280.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1281.            
  1282.            <option value="" selected>All categories</option>
  1283.            <option value="" disabled>------</option>
  1284.            
  1285.              
  1286.  
  1287. <option value="product_type:AC Adapters">AC Adapters</option>
  1288. <option value="product_type:Accessories">Accessories</option>
  1289. <option value="product_type:Adapter Card">Adapter Card</option>
  1290. <option value="product_type:Antennas">Antennas</option>
  1291. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1292. <option value="product_type:Batteries">Batteries</option>
  1293. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1294. <option value="product_type:Boards">Boards</option>
  1295. <option value="product_type:Cables">Cables</option>
  1296. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1297. <option value="product_type:Connectors">Connectors</option>
  1298. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1299. <option value="product_type:Docking Station">Docking Station</option>
  1300. <option value="product_type:Drives">Drives</option>
  1301. <option value="product_type:Fans">Fans</option>
  1302. <option value="product_type:Hard Drive">Hard Drive</option>
  1303. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1304. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1305. <option value="product_type:Hard Drives">Hard Drives</option>
  1306. <option value="product_type:Hinges">Hinges</option>
  1307. <option value="product_type:Keyboards">Keyboards</option>
  1308. <option value="product_type:Memory">Memory</option>
  1309. <option value="product_type:Misc">Misc</option>
  1310. <option value="product_type:Motherboards">Motherboards</option>
  1311. <option value="product_type:Network Cards">Network Cards</option>
  1312. <option value="product_type:Optical Cables">Optical Cables</option>
  1313. <option value="product_type:Optical Drives">Optical Drives</option>
  1314. <option value="product_type:Palmrests">Palmrests</option>
  1315. <option value="product_type:Parts">Parts</option>
  1316. <option value="product_type:Phone Parts">Phone Parts</option>
  1317. <option value="product_type:Power Supplies">Power Supplies</option>
  1318. <option value="product_type:Printer Parts">Printer Parts</option>
  1319. <option value="product_type:Screens">Screens</option>
  1320. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1321. <option value="product_type:Screws">Screws</option>
  1322. <option value="product_type:Server Parts">Server Parts</option>
  1323. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1324. <option value="product_type:Speakers">Speakers</option>
  1325. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1326. <option value="product_type:Touchpads">Touchpads</option>
  1327. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1328. <option value="product_type:Video Card">Video Card</option>
  1329. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1330.            
  1331.          </select>
  1332.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1333. </label>
  1334.          <svg
  1335.  aria-hidden="true"
  1336.  focusable="false"
  1337.  role="presentation"
  1338.  width="8"
  1339.  height="6"
  1340.  viewBox="0 0 8 6"
  1341.  fill="none"
  1342.  xmlns="http://www.w3.org/2000/svg"
  1343.  class="icon-chevron-down"
  1344. >
  1345. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1346. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1347. </svg>
  1348.  
  1349.        </span><input
  1350.        class="form-field-input live-search-form-field"
  1351.        type="text"
  1352.        name="q"
  1353.        aria-label="Search"
  1354.        placeholder="What are you looking for?"
  1355.        
  1356.        autocomplete="off"
  1357.        data-live-search-input
  1358.      >
  1359.      <button
  1360.        class="live-search-takeover-cancel"
  1361.        type="button"
  1362.        data-live-search-takeover-cancel>
  1363.        Cancel
  1364.      </button>
  1365.  
  1366.      <button
  1367.        class="live-search-button"
  1368.        type="submit"
  1369.        aria-label="Search"
  1370.        data-live-search-submit
  1371.      >
  1372.        <span class="search-icon search-icon--inactive">
  1373.          <svg
  1374.  aria-hidden="true"
  1375.  focusable="false"
  1376.  role="presentation"
  1377.  xmlns="http://www.w3.org/2000/svg"
  1378.  width="23"
  1379.  height="24"
  1380.  fill="none"
  1381.  viewBox="0 0 23 24"
  1382. >
  1383.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1384.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1385. </svg>
  1386.  
  1387.        </span>
  1388.        <span class="search-icon search-icon--active">
  1389.          <svg
  1390.  aria-hidden="true"
  1391.  focusable="false"
  1392.  role="presentation"
  1393.  width="26"
  1394.  height="26"
  1395.  viewBox="0 0 26 26"
  1396.  xmlns="http://www.w3.org/2000/svg"
  1397. >
  1398.  <g fill-rule="nonzero" fill="currentColor">
  1399.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  1400.  </g>
  1401. </svg>
  1402.        </span>
  1403.      </button>
  1404.    </div>
  1405.  
  1406.    <div class="search-flydown" data-live-search-flydown>
  1407.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1408.        <div class="search-flydown--product-items">
  1409.          
  1410.            <a class="search-flydown--product search-flydown--product" href="#">
  1411.              
  1412.  
  1413.              <div class="search-flydown--product-text">
  1414.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1415.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1416.              </div>
  1417.            </a>
  1418.          
  1419.            <a class="search-flydown--product search-flydown--product" href="#">
  1420.              
  1421.  
  1422.              <div class="search-flydown--product-text">
  1423.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1424.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1425.              </div>
  1426.            </a>
  1427.          
  1428.            <a class="search-flydown--product search-flydown--product" href="#">
  1429.              
  1430.  
  1431.              <div class="search-flydown--product-text">
  1432.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1433.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1434.              </div>
  1435.            </a>
  1436.          
  1437.        </div>
  1438.      </div>
  1439.  
  1440.      <div
  1441.        class="
  1442.          search-flydown--results
  1443.          search-flydown--results--no-images
  1444.        "
  1445.        data-live-search-results
  1446.      ></div>
  1447.  
  1448.      
  1449.    </div>
  1450.  </form>
  1451. </div>
  1452.  
  1453.  
  1454.      
  1455.    </div>
  1456.  
  1457.    <div class="site-header-right">
  1458.      <ul class="site-header-actions" data-header-actions>
  1459.  
  1460.    
  1461.      <li class="site-header-actions__account-link">
  1462.        <a
  1463.          class="site-header_account-link-anchor"
  1464.          href="/account/login"
  1465.        >
  1466.          <span class="site-header__account-icon">
  1467.            
  1468.  
  1469.  
  1470.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  1471.  
  1472.          </span>
  1473.          
  1474.          <span class="site-header_account-link-text">
  1475.            Login
  1476.          </span>
  1477.        </a>
  1478.      </li>
  1479.    
  1480.  
  1481. </ul>
  1482.  
  1483.  
  1484.      <div class="site-header-cart">
  1485.        <a class="site-header-cart--button" href="/cart">
  1486.          <span
  1487.            class="site-header-cart--count "
  1488.            data-header-cart-count="">
  1489.          </span>
  1490.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1491.            
  1492.              
  1493.  
  1494.  
  1495.            <svg width="25" height="24" viewBox="0 0 25 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M1 0C0.447715 0 0 0.447715 0 1C0 1.55228 0.447715 2 1 2H1.33877H1.33883C1.61048 2.00005 2.00378 2.23945 2.10939 2.81599L2.10937 2.816L2.11046 2.82171L5.01743 18.1859C5.12011 18.7286 5.64325 19.0852 6.18591 18.9826C6.21078 18.9779 6.23526 18.9723 6.25933 18.9658C6.28646 18.968 6.31389 18.9692 6.34159 18.9692H18.8179H18.8181C19.0302 18.9691 19.2141 18.9765 19.4075 18.9842L19.4077 18.9842C19.5113 18.9884 19.6175 18.9926 19.7323 18.9959C20.0255 19.0043 20.3767 19.0061 20.7177 18.9406C21.08 18.871 21.4685 18.7189 21.8028 18.3961C22.1291 18.081 22.3266 17.6772 22.4479 17.2384C22.4569 17.2058 22.4642 17.1729 22.4699 17.1396L23.944 8.46865C24.2528 7.20993 23.2684 5.99987 21.9896 6H21.9894H4.74727L4.07666 2.45562L4.07608 2.4525C3.83133 1.12381 2.76159 8.49962e-05 1.33889 0H1.33883H1ZM5.12568 8L6.8227 16.9692H18.8178H18.8179C19.0686 16.9691 19.3257 16.9793 19.5406 16.9877L19.5413 16.9877C19.633 16.9913 19.7171 16.9947 19.7896 16.9967C20.0684 17.0047 20.2307 16.9976 20.3403 16.9766C20.3841 16.9681 20.4059 16.96 20.4151 16.9556C20.4247 16.9443 20.4639 16.8918 20.5077 16.7487L21.9794 8.09186C21.9842 8.06359 21.9902 8.03555 21.9974 8.0078C21.9941 8.00358 21.9908 8.00108 21.989 8H5.12568ZM20.416 16.9552C20.4195 16.9534 20.4208 16.9524 20.4205 16.9523C20.4204 16.9523 20.4199 16.9525 20.4191 16.953L20.416 16.9552ZM10.8666 22.4326C10.8666 23.2982 10.195 24 9.36658 24C8.53815 24 7.86658 23.2982 7.86658 22.4326C7.86658 21.567 8.53815 20.8653 9.36658 20.8653C10.195 20.8653 10.8666 21.567 10.8666 22.4326ZM18.0048 24C18.8332 24 19.5048 23.2982 19.5048 22.4326C19.5048 21.567 18.8332 20.8653 18.0048 20.8653C17.1763 20.8653 16.5048 21.567 16.5048 22.4326C16.5048 23.2982 17.1763 24 18.0048 24Z" fill="currentColor"/>    </svg>                                                                                                        
  1496.  
  1497.            
  1498.          </span>
  1499.          <span class="visually-hidden">View cart</span>
  1500.        </a>
  1501.      </div>
  1502.    </div>
  1503.  </div>
  1504.  
  1505.  <div
  1506.    class="
  1507.      site-navigation-wrapper
  1508.      
  1509.        site-navigation--has-actions
  1510.      
  1511.      
  1512.        site-header--full-width
  1513.      
  1514.    "
  1515.    data-site-navigation
  1516.    id="site-header-nav"
  1517.  >
  1518.    <nav
  1519.      class="site-navigation"
  1520.      aria-label="Main"
  1521.    >
  1522.      
  1523.  
  1524.  
  1525.  
  1526.  
  1527. <ul
  1528.  class="navmenu navmenu-depth-1"
  1529.  data-navmenu
  1530.  aria-label="Main Menu 02"
  1531. >
  1532.  
  1533.    
  1534.    
  1535.  
  1536.    
  1537.    
  1538.    
  1539.    
  1540. <li
  1541.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1542.      
  1543.      
  1544.      
  1545.    >
  1546.      
  1547.        <a
  1548.      
  1549.        class="
  1550.          navmenu-link
  1551.          navmenu-link-depth-1
  1552.          
  1553.          navmenu-link-active
  1554.        "
  1555.        
  1556.          href="/"
  1557.        
  1558.      >
  1559.        Home
  1560.        
  1561.      
  1562.        </a>
  1563.      
  1564.  
  1565.      
  1566.      </details>
  1567.    </li>
  1568.  
  1569.    
  1570.    
  1571.  
  1572.    
  1573.    
  1574.    
  1575.    
  1576. <li
  1577.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1578.      
  1579.        data-navmenu-meganav-trigger
  1580.        data-navmenu-meganav-type="multi-column-menu"
  1581.      
  1582.      data-navmenu-parent
  1583.      
  1584.    >
  1585.      
  1586.        <details data-navmenu-details>
  1587.        <summary
  1588.      
  1589.        class="
  1590.          navmenu-link
  1591.          navmenu-link-depth-1
  1592.          navmenu-link-parent
  1593.          
  1594.        "
  1595.        
  1596.          aria-haspopup="true"
  1597.          aria-expanded="false"
  1598.          data-href="/collections/all"
  1599.        
  1600.      >
  1601.        Shop
  1602.        
  1603.          <span
  1604.            class="navmenu-icon navmenu-icon-depth-1"
  1605.            data-navmenu-trigger
  1606.          >
  1607.            <svg
  1608.  aria-hidden="true"
  1609.  focusable="false"
  1610.  role="presentation"
  1611.  width="8"
  1612.  height="6"
  1613.  viewBox="0 0 8 6"
  1614.  fill="none"
  1615.  xmlns="http://www.w3.org/2000/svg"
  1616.  class="icon-chevron-down"
  1617. >
  1618. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1619. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1620. </svg>
  1621.  
  1622.          </span>
  1623.        
  1624.      
  1625.        </summary>
  1626.      
  1627.  
  1628.      
  1629.        
  1630.            
  1631.  
  1632.  
  1633.  
  1634.  
  1635.  
  1636.  
  1637.  
  1638. <div
  1639.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1640.  data-navmenu-submenu
  1641.  data-meganav-menu
  1642.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1643. >
  1644.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1645.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1646.      
  1647.        
  1648.          <li class="navmenu-item">
  1649.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1650.              Laptop Components
  1651.            </a>
  1652.            <ul>
  1653.            
  1654.              <li class="navmenu-item">
  1655.                <a href="/collections/ac-adapters" class="navmenu-link">
  1656.                  AC Adapters
  1657.                </a>
  1658.              </li>
  1659.            
  1660.              <li class="navmenu-item">
  1661.                <a href="/collections/batteries" class="navmenu-link">
  1662.                  Batteries
  1663.                </a>
  1664.              </li>
  1665.            
  1666.              <li class="navmenu-item">
  1667.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1668.                  Bezels Cases & Covers
  1669.                </a>
  1670.              </li>
  1671.            
  1672.              <li class="navmenu-item">
  1673.                <a href="/collections/boards" class="navmenu-link">
  1674.                  Boards
  1675.                </a>
  1676.              </li>
  1677.            
  1678.              <li class="navmenu-item">
  1679.                <a href="/collections/cables" class="navmenu-link">
  1680.                  Cables
  1681.                </a>
  1682.              </li>
  1683.            
  1684.              <li class="navmenu-item">
  1685.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1686.                  DC Jack Cables
  1687.                </a>
  1688.              </li>
  1689.            
  1690.              <li class="navmenu-item">
  1691.                <a href="/collections/fans" class="navmenu-link">
  1692.                  Fans
  1693.                </a>
  1694.              </li>
  1695.            
  1696.              <li class="navmenu-item">
  1697.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1698.                  Hard Drive Brackets
  1699.                </a>
  1700.              </li>
  1701.            
  1702.              <li class="navmenu-item">
  1703.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1704.                  Hard Drives
  1705.                </a>
  1706.              </li>
  1707.            
  1708.              <li class="navmenu-item">
  1709.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1710.                  - Laptop Case Parts
  1711.                </a>
  1712.              </li>
  1713.            
  1714.              <li class="navmenu-item">
  1715.                <a href="/collections/hinges" class="navmenu-link">
  1716.                  Hinges
  1717.                </a>
  1718.              </li>
  1719.            
  1720.              <li class="navmenu-item">
  1721.                <a href="/collections/laptop-case" class="navmenu-link">
  1722.                  Laptop Case
  1723.                </a>
  1724.              </li>
  1725.            
  1726.              <li class="navmenu-item">
  1727.                <a href="/collections/laptop-cover" class="navmenu-link">
  1728.                  Laptop Cover
  1729.                </a>
  1730.              </li>
  1731.            
  1732.              <li class="navmenu-item">
  1733.                <a href="/collections/thermal-printer" class="navmenu-link">
  1734.                  Thermal Printer
  1735.                </a>
  1736.              </li>
  1737.            
  1738.            </ul>
  1739.          </li>
  1740.        
  1741.      
  1742.        
  1743.          <li class="navmenu-item">
  1744.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1745.              .....
  1746.            </a>
  1747.            <ul>
  1748.            
  1749.              <li class="navmenu-item">
  1750.                <a href="/collections/keyboards-1" class="navmenu-link">
  1751.                  Keyboards
  1752.                </a>
  1753.              </li>
  1754.            
  1755.              <li class="navmenu-item">
  1756.                <a href="/collections/acer-keyboard" class="navmenu-link">
  1757.                  - Acer keyboard
  1758.                </a>
  1759.              </li>
  1760.            
  1761.              <li class="navmenu-item">
  1762.                <a href="/collections/asus-keyboard" class="navmenu-link">
  1763.                  - Asus keyboards
  1764.                </a>
  1765.              </li>
  1766.            
  1767.              <li class="navmenu-item">
  1768.                <a href="/collections/dell-keyboard" class="navmenu-link">
  1769.                  - Dell keyboard
  1770.                </a>
  1771.              </li>
  1772.            
  1773.              <li class="navmenu-item">
  1774.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  1775.                  - Lenovo keyboard
  1776.                </a>
  1777.              </li>
  1778.            
  1779.              <li class="navmenu-item">
  1780.                <a href="/collections/hp-keyboard" class="navmenu-link">
  1781.                  - Hp Keyboard
  1782.                </a>
  1783.              </li>
  1784.            
  1785.              <li class="navmenu-item">
  1786.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  1787.                  - Backlit Keyboards
  1788.                </a>
  1789.              </li>
  1790.            
  1791.              <li class="navmenu-item">
  1792.                <a href="/collections/memory" class="navmenu-link">
  1793.                  Memory
  1794.                </a>
  1795.              </li>
  1796.            
  1797.              <li class="navmenu-item">
  1798.                <a href="/collections/motherboards" class="navmenu-link">
  1799.                  Motherboards
  1800.                </a>
  1801.              </li>
  1802.            
  1803.              <li class="navmenu-item">
  1804.                <a href="/collections/optical-drives" class="navmenu-link">
  1805.                  Optical Drives
  1806.                </a>
  1807.              </li>
  1808.            
  1809.              <li class="navmenu-item">
  1810.                <a href="/collections/power-supplies" class="navmenu-link">
  1811.                  Power Supplies
  1812.                </a>
  1813.              </li>
  1814.            
  1815.              <li class="navmenu-item">
  1816.                <a href="/collections/screens" class="navmenu-link">
  1817.                  Screens
  1818.                </a>
  1819.              </li>
  1820.            
  1821.              <li class="navmenu-item">
  1822.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  1823.                  - Touch Screen Laptop
  1824.                </a>
  1825.              </li>
  1826.            
  1827.              <li class="navmenu-item">
  1828.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  1829.                  Screens - Touch Digitizers
  1830.                </a>
  1831.              </li>
  1832.            
  1833.              <li class="navmenu-item">
  1834.                <a href="/collections/speakers" class="navmenu-link">
  1835.                  Speakers
  1836.                </a>
  1837.              </li>
  1838.            
  1839.              <li class="navmenu-item">
  1840.                <a href="/collections/touchpads" class="navmenu-link">
  1841.                  Touchpads
  1842.                </a>
  1843.              </li>
  1844.            
  1845.            </ul>
  1846.          </li>
  1847.        
  1848.      
  1849.        
  1850.          <li class="navmenu-item">
  1851.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1852.              Other Components
  1853.            </a>
  1854.            <ul>
  1855.            
  1856.              <li class="navmenu-item">
  1857.                <a href="/collections/accessories" class="navmenu-link">
  1858.                  Accessories
  1859.                </a>
  1860.              </li>
  1861.            
  1862.              <li class="navmenu-item">
  1863.                <a href="/collections/phone-parts" class="navmenu-link">
  1864.                  Phone Parts
  1865.                </a>
  1866.              </li>
  1867.            
  1868.              <li class="navmenu-item">
  1869.                <a href="/collections/printer-parts" class="navmenu-link">
  1870.                  Printer Parts
  1871.                </a>
  1872.              </li>
  1873.            
  1874.              <li class="navmenu-item">
  1875.                <a href="/collections/server-parts" class="navmenu-link">
  1876.                  Server Parts
  1877.                </a>
  1878.              </li>
  1879.            
  1880.              <li class="navmenu-item">
  1881.                <a href="/collections/tablet-parts" class="navmenu-link">
  1882.                  Tablet Parts
  1883.                </a>
  1884.              </li>
  1885.            
  1886.            </ul>
  1887.          </li>
  1888.        
  1889.      
  1890.    </ul>
  1891.  </div>
  1892. </div>
  1893.  
  1894.          
  1895.      
  1896.      </details>
  1897.    </li>
  1898.  
  1899.    
  1900.    
  1901.  
  1902.    
  1903.    
  1904.    
  1905.    
  1906. <li
  1907.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  1908.      
  1909.      
  1910.      
  1911.    >
  1912.      
  1913.        <a
  1914.      
  1915.        class="
  1916.          navmenu-link
  1917.          navmenu-link-depth-1
  1918.          
  1919.          
  1920.        "
  1921.        
  1922.          href="/pages/about-us"
  1923.        
  1924.      >
  1925.        About Us
  1926.        
  1927.      
  1928.        </a>
  1929.      
  1930.  
  1931.      
  1932.      </details>
  1933.    </li>
  1934.  
  1935.    
  1936.    
  1937.  
  1938.    
  1939.    
  1940.    
  1941.    
  1942. <li
  1943.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  1944.      
  1945.      
  1946.      
  1947.    >
  1948.      
  1949.        <a
  1950.      
  1951.        class="
  1952.          navmenu-link
  1953.          navmenu-link-depth-1
  1954.          
  1955.          
  1956.        "
  1957.        
  1958.          href="/pages/store-locator"
  1959.        
  1960.      >
  1961.        Repair Centers
  1962.        
  1963.      
  1964.        </a>
  1965.      
  1966.  
  1967.      
  1968.      </details>
  1969.    </li>
  1970.  
  1971.    
  1972.    
  1973.  
  1974.    
  1975.    
  1976.    
  1977.    
  1978. <li
  1979.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  1980.      
  1981.      
  1982.      
  1983.    >
  1984.      
  1985.        <a
  1986.      
  1987.        class="
  1988.          navmenu-link
  1989.          navmenu-link-depth-1
  1990.          
  1991.          
  1992.        "
  1993.        
  1994.          href="/pages/part-request"
  1995.        
  1996.      >
  1997.        Parts Request
  1998.        
  1999.      
  2000.        </a>
  2001.      
  2002.  
  2003.      
  2004.      </details>
  2005.    </li>
  2006.  
  2007.    
  2008.    
  2009.  
  2010.    
  2011.    
  2012.    
  2013.    
  2014. <li
  2015.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  2016.      
  2017.      
  2018.      
  2019.    >
  2020.      
  2021.        <a
  2022.      
  2023.        class="
  2024.          navmenu-link
  2025.          navmenu-link-depth-1
  2026.          
  2027.          
  2028.        "
  2029.        
  2030.          href="/pages/shipping"
  2031.        
  2032.      >
  2033.        Shipping
  2034.        
  2035.      
  2036.        </a>
  2037.      
  2038.  
  2039.      
  2040.      </details>
  2041.    </li>
  2042.  
  2043.    
  2044.    
  2045.  
  2046.    
  2047.    
  2048.    
  2049.    
  2050. <li
  2051.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2052.      
  2053.      
  2054.      
  2055.    >
  2056.      
  2057.        <a
  2058.      
  2059.        class="
  2060.          navmenu-link
  2061.          navmenu-link-depth-1
  2062.          
  2063.          
  2064.        "
  2065.        
  2066.          href="/pages/francais"
  2067.        
  2068.      >
  2069.        Français
  2070.        
  2071.      
  2072.        </a>
  2073.      
  2074.  
  2075.      
  2076.      </details>
  2077.    </li>
  2078.  
  2079. </ul>
  2080.  
  2081.  
  2082.      
  2083.    </nav>
  2084.  </div>
  2085.  
  2086.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2087.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2088.  
  2089.    <ul class="site-header-actions" data-header-actions>
  2090.  
  2091.    
  2092.      <li class="site-header-actions__account-link">
  2093.        <a
  2094.          class="site-header_account-link-anchor"
  2095.          href="/account/login"
  2096.        >
  2097.          <span class="site-header__account-icon">
  2098.            
  2099.  
  2100.  
  2101.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  2102.  
  2103.          </span>
  2104.          
  2105.          <span class="site-header_account-link-text">
  2106.            Login
  2107.          </span>
  2108.        </a>
  2109.      </li>
  2110.    
  2111.  
  2112. </ul>
  2113.  
  2114.  
  2115.    <a
  2116.      class="mobile-nav-close"
  2117.      href="#site-header-nav"
  2118.      data-mobile-nav-close>
  2119.      <svg
  2120.  aria-hidden="true"
  2121.  focusable="false"
  2122.  role="presentation"
  2123.  xmlns="http://www.w3.org/2000/svg"
  2124.  width="13"
  2125.  height="13"
  2126.  viewBox="0 0 13 13"
  2127. >
  2128.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  2129. </svg>
  2130.      <span class="visually-hidden">Close</span>
  2131.    </a>
  2132.  
  2133.    <div class="mobile-nav-content" data-mobile-nav-content>
  2134.      
  2135.  
  2136.  
  2137.  
  2138.  
  2139. <ul
  2140.  class="navmenu navmenu-depth-1"
  2141.  data-navmenu
  2142.  aria-label="Main Menu 02"
  2143. >
  2144.  
  2145.    
  2146.    
  2147.  
  2148.    
  2149.    
  2150.    
  2151. <li
  2152.      class="navmenu-item            navmenu-id-home"
  2153.      
  2154.    >
  2155.      <a
  2156.        class="navmenu-link  navmenu-link-active"
  2157.        href="/"
  2158.        
  2159.      >
  2160.        Home
  2161.      </a>
  2162.  
  2163.      
  2164.  
  2165.      
  2166.      
  2167.  
  2168.      
  2169.  
  2170.      
  2171.    </li>
  2172.  
  2173.    
  2174.    
  2175.  
  2176.    
  2177.    
  2178.    
  2179. <li
  2180.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2181.      data-navmenu-parent
  2182.    >
  2183.      <a
  2184.        class="navmenu-link navmenu-link-parent "
  2185.        href="/collections/all"
  2186.        
  2187.          aria-haspopup="true"
  2188.          aria-expanded="false"
  2189.        
  2190.      >
  2191.        Shop
  2192.      </a>
  2193.  
  2194.      
  2195.        
  2196.  
  2197.  
  2198.  
  2199. <button
  2200.  class="navmenu-button"
  2201.  data-navmenu-trigger
  2202.  aria-expanded="false"
  2203. >
  2204.  <div class="navmenu-button-wrapper" tabindex="-1">
  2205.    <span class="navmenu-icon ">
  2206.      <svg
  2207.  aria-hidden="true"
  2208.  focusable="false"
  2209.  role="presentation"
  2210.  width="8"
  2211.  height="6"
  2212.  viewBox="0 0 8 6"
  2213.  fill="none"
  2214.  xmlns="http://www.w3.org/2000/svg"
  2215.  class="icon-chevron-down"
  2216. >
  2217. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2218. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2219. </svg>
  2220.  
  2221.    </span>
  2222.    <span class="visually-hidden">Shop</span>
  2223.  </div>
  2224. </button>
  2225.  
  2226.      
  2227.  
  2228.      
  2229.      
  2230.  
  2231.      
  2232.        
  2233.  
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239.  
  2240.  
  2241.  
  2242.  
  2243.  
  2244.  
  2245. <ul
  2246.  class="
  2247.    navmenu
  2248.    navmenu-depth-2
  2249.    navmenu-submenu
  2250.    
  2251.  "
  2252.  data-navmenu
  2253.  data-accordion-content
  2254.  data-navmenu-submenu
  2255.  aria-label="Main Menu 02"
  2256. >
  2257.  
  2258.    
  2259.  
  2260.    
  2261.    
  2262.  
  2263.    
  2264.    
  2265.  
  2266.    
  2267.  
  2268.    
  2269. <li
  2270.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2271.        data-navmenu-parent
  2272.      >
  2273.        
  2274.          <a
  2275.            href="/collections/all"
  2276.        
  2277.          class="navmenu-link navmenu-link-parent "
  2278.          
  2279.            aria-haspopup="true"
  2280.            aria-expanded="false"
  2281.          
  2282.        >
  2283.          
  2284.          Laptop Components
  2285.  
  2286.        
  2287.          </a>
  2288.        
  2289.  
  2290.        
  2291.          
  2292.  
  2293.  
  2294.  
  2295. <button
  2296.  class="navmenu-button"
  2297.  data-navmenu-trigger
  2298.  aria-expanded="false"
  2299. >
  2300.  <div class="navmenu-button-wrapper" tabindex="-1">
  2301.    <span class="navmenu-icon navmenu-icon-depth-2">
  2302.      <svg
  2303.  aria-hidden="true"
  2304.  focusable="false"
  2305.  role="presentation"
  2306.  width="8"
  2307.  height="6"
  2308.  viewBox="0 0 8 6"
  2309.  fill="none"
  2310.  xmlns="http://www.w3.org/2000/svg"
  2311.  class="icon-chevron-down"
  2312. >
  2313. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2314. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2315. </svg>
  2316.  
  2317.    </span>
  2318.    <span class="visually-hidden">Laptop Components</span>
  2319.  </div>
  2320. </button>
  2321.  
  2322.        
  2323.  
  2324.        
  2325.          
  2326.  
  2327.  
  2328.  
  2329.  
  2330.  
  2331.  
  2332.  
  2333.  
  2334.  
  2335.  
  2336.  
  2337.  
  2338. <ul
  2339.  class="
  2340.    navmenu
  2341.    navmenu-depth-3
  2342.    navmenu-submenu
  2343.    
  2344.  "
  2345.  data-navmenu
  2346.  data-accordion-content
  2347.  data-navmenu-submenu
  2348.  aria-label="Main Menu 02"
  2349. >
  2350.  
  2351.    
  2352.  
  2353.    
  2354.    
  2355.  
  2356.    
  2357.    
  2358.  
  2359.    
  2360.  
  2361.    
  2362.      <li
  2363.        class="navmenu-item navmenu-id-ac-adapters"
  2364.      >
  2365.        <a
  2366.        class="
  2367.          navmenu-link
  2368.          navmenu-link-depth-3
  2369.          
  2370.        "
  2371.        href="/collections/ac-adapters"
  2372.        >
  2373.          
  2374.          AC Adapters
  2375. </a>
  2376.      </li>
  2377.    
  2378.  
  2379.    
  2380.  
  2381.    
  2382.    
  2383.  
  2384.    
  2385.    
  2386.  
  2387.    
  2388.  
  2389.    
  2390.      <li
  2391.        class="navmenu-item navmenu-id-batteries"
  2392.      >
  2393.        <a
  2394.        class="
  2395.          navmenu-link
  2396.          navmenu-link-depth-3
  2397.          
  2398.        "
  2399.        href="/collections/batteries"
  2400.        >
  2401.          
  2402.          Batteries
  2403. </a>
  2404.      </li>
  2405.    
  2406.  
  2407.    
  2408.  
  2409.    
  2410.    
  2411.  
  2412.    
  2413.    
  2414.  
  2415.    
  2416.  
  2417.    
  2418.      <li
  2419.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2420.      >
  2421.        <a
  2422.        class="
  2423.          navmenu-link
  2424.          navmenu-link-depth-3
  2425.          
  2426.        "
  2427.        href="/collections/cases-covers-bezels"
  2428.        >
  2429.          
  2430.          Bezels Cases & Covers
  2431. </a>
  2432.      </li>
  2433.    
  2434.  
  2435.    
  2436.  
  2437.    
  2438.    
  2439.  
  2440.    
  2441.    
  2442.  
  2443.    
  2444.  
  2445.    
  2446.      <li
  2447.        class="navmenu-item navmenu-id-boards"
  2448.      >
  2449.        <a
  2450.        class="
  2451.          navmenu-link
  2452.          navmenu-link-depth-3
  2453.          
  2454.        "
  2455.        href="/collections/boards"
  2456.        >
  2457.          
  2458.          Boards
  2459. </a>
  2460.      </li>
  2461.    
  2462.  
  2463.    
  2464.  
  2465.    
  2466.    
  2467.  
  2468.    
  2469.    
  2470.  
  2471.    
  2472.  
  2473.    
  2474.      <li
  2475.        class="navmenu-item navmenu-id-cables"
  2476.      >
  2477.        <a
  2478.        class="
  2479.          navmenu-link
  2480.          navmenu-link-depth-3
  2481.          
  2482.        "
  2483.        href="/collections/cables"
  2484.        >
  2485.          
  2486.          Cables
  2487. </a>
  2488.      </li>
  2489.    
  2490.  
  2491.    
  2492.  
  2493.    
  2494.    
  2495.  
  2496.    
  2497.    
  2498.  
  2499.    
  2500.  
  2501.    
  2502.      <li
  2503.        class="navmenu-item navmenu-id-dc-jack-cables"
  2504.      >
  2505.        <a
  2506.        class="
  2507.          navmenu-link
  2508.          navmenu-link-depth-3
  2509.          
  2510.        "
  2511.        href="/collections/dc-jack-cables"
  2512.        >
  2513.          
  2514.          DC Jack Cables
  2515. </a>
  2516.      </li>
  2517.    
  2518.  
  2519.    
  2520.  
  2521.    
  2522.    
  2523.  
  2524.    
  2525.    
  2526.  
  2527.    
  2528.  
  2529.    
  2530.      <li
  2531.        class="navmenu-item navmenu-id-fans"
  2532.      >
  2533.        <a
  2534.        class="
  2535.          navmenu-link
  2536.          navmenu-link-depth-3
  2537.          
  2538.        "
  2539.        href="/collections/fans"
  2540.        >
  2541.          
  2542.          Fans
  2543. </a>
  2544.      </li>
  2545.    
  2546.  
  2547.    
  2548.  
  2549.    
  2550.    
  2551.  
  2552.    
  2553.    
  2554.  
  2555.    
  2556.  
  2557.    
  2558.      <li
  2559.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2560.      >
  2561.        <a
  2562.        class="
  2563.          navmenu-link
  2564.          navmenu-link-depth-3
  2565.          
  2566.        "
  2567.        href="/collections/hard-drive-brackets"
  2568.        >
  2569.          
  2570.          Hard Drive Brackets
  2571. </a>
  2572.      </li>
  2573.    
  2574.  
  2575.    
  2576.  
  2577.    
  2578.    
  2579.  
  2580.    
  2581.    
  2582.  
  2583.    
  2584.  
  2585.    
  2586.      <li
  2587.        class="navmenu-item navmenu-id-hard-drives"
  2588.      >
  2589.        <a
  2590.        class="
  2591.          navmenu-link
  2592.          navmenu-link-depth-3
  2593.          
  2594.        "
  2595.        href="/collections/laptop-hard-drive"
  2596.        >
  2597.          
  2598.          Hard Drives
  2599. </a>
  2600.      </li>
  2601.    
  2602.  
  2603.    
  2604.  
  2605.    
  2606.    
  2607.  
  2608.    
  2609.    
  2610.  
  2611.    
  2612.  
  2613.    
  2614.      <li
  2615.        class="navmenu-item navmenu-id-laptop-case-parts"
  2616.      >
  2617.        <a
  2618.        class="
  2619.          navmenu-link
  2620.          navmenu-link-depth-3
  2621.          
  2622.        "
  2623.        href="/collections/laptop-case-parts"
  2624.        >
  2625.          
  2626.          - Laptop Case Parts
  2627. </a>
  2628.      </li>
  2629.    
  2630.  
  2631.    
  2632.  
  2633.    
  2634.    
  2635.  
  2636.    
  2637.    
  2638.  
  2639.    
  2640.  
  2641.    
  2642.      <li
  2643.        class="navmenu-item navmenu-id-hinges"
  2644.      >
  2645.        <a
  2646.        class="
  2647.          navmenu-link
  2648.          navmenu-link-depth-3
  2649.          
  2650.        "
  2651.        href="/collections/hinges"
  2652.        >
  2653.          
  2654.          Hinges
  2655. </a>
  2656.      </li>
  2657.    
  2658.  
  2659.    
  2660.  
  2661.    
  2662.    
  2663.  
  2664.    
  2665.    
  2666.  
  2667.    
  2668.  
  2669.    
  2670.      <li
  2671.        class="navmenu-item navmenu-id-laptop-case"
  2672.      >
  2673.        <a
  2674.        class="
  2675.          navmenu-link
  2676.          navmenu-link-depth-3
  2677.          
  2678.        "
  2679.        href="/collections/laptop-case"
  2680.        >
  2681.          
  2682.          Laptop Case
  2683. </a>
  2684.      </li>
  2685.    
  2686.  
  2687.    
  2688.  
  2689.    
  2690.    
  2691.  
  2692.    
  2693.    
  2694.  
  2695.    
  2696.  
  2697.    
  2698.      <li
  2699.        class="navmenu-item navmenu-id-laptop-cover"
  2700.      >
  2701.        <a
  2702.        class="
  2703.          navmenu-link
  2704.          navmenu-link-depth-3
  2705.          
  2706.        "
  2707.        href="/collections/laptop-cover"
  2708.        >
  2709.          
  2710.          Laptop Cover
  2711. </a>
  2712.      </li>
  2713.    
  2714.  
  2715.    
  2716.  
  2717.    
  2718.    
  2719.  
  2720.    
  2721.    
  2722.  
  2723.    
  2724.  
  2725.    
  2726.      <li
  2727.        class="navmenu-item navmenu-id-thermal-printer"
  2728.      >
  2729.        <a
  2730.        class="
  2731.          navmenu-link
  2732.          navmenu-link-depth-3
  2733.          
  2734.        "
  2735.        href="/collections/thermal-printer"
  2736.        >
  2737.          
  2738.          Thermal Printer
  2739. </a>
  2740.      </li>
  2741.    
  2742.  
  2743. </ul>
  2744.  
  2745.        
  2746.        
  2747.      </li>
  2748.    
  2749.  
  2750.    
  2751.  
  2752.    
  2753.    
  2754.  
  2755.    
  2756.    
  2757.  
  2758.    
  2759.  
  2760.    
  2761. <li
  2762.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  2763.        data-navmenu-parent
  2764.      >
  2765.        
  2766.          <a
  2767.            href="/collections/all"
  2768.        
  2769.          class="navmenu-link navmenu-link-parent "
  2770.          
  2771.            aria-haspopup="true"
  2772.            aria-expanded="false"
  2773.          
  2774.        >
  2775.          
  2776.          .....
  2777.  
  2778.        
  2779.          </a>
  2780.        
  2781.  
  2782.        
  2783.          
  2784.  
  2785.  
  2786.  
  2787. <button
  2788.  class="navmenu-button"
  2789.  data-navmenu-trigger
  2790.  aria-expanded="false"
  2791. >
  2792.  <div class="navmenu-button-wrapper" tabindex="-1">
  2793.    <span class="navmenu-icon navmenu-icon-depth-2">
  2794.      <svg
  2795.  aria-hidden="true"
  2796.  focusable="false"
  2797.  role="presentation"
  2798.  width="8"
  2799.  height="6"
  2800.  viewBox="0 0 8 6"
  2801.  fill="none"
  2802.  xmlns="http://www.w3.org/2000/svg"
  2803.  class="icon-chevron-down"
  2804. >
  2805. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2806. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2807. </svg>
  2808.  
  2809.    </span>
  2810.    <span class="visually-hidden">.....</span>
  2811.  </div>
  2812. </button>
  2813.  
  2814.        
  2815.  
  2816.        
  2817.          
  2818.  
  2819.  
  2820.  
  2821.  
  2822.  
  2823.  
  2824.  
  2825.  
  2826.  
  2827.  
  2828.  
  2829.  
  2830. <ul
  2831.  class="
  2832.    navmenu
  2833.    navmenu-depth-3
  2834.    navmenu-submenu
  2835.    
  2836.  "
  2837.  data-navmenu
  2838.  data-accordion-content
  2839.  data-navmenu-submenu
  2840.  aria-label="Main Menu 02"
  2841. >
  2842.  
  2843.    
  2844.  
  2845.    
  2846.    
  2847.  
  2848.    
  2849.    
  2850.  
  2851.    
  2852.  
  2853.    
  2854.      <li
  2855.        class="navmenu-item navmenu-id-keyboards"
  2856.      >
  2857.        <a
  2858.        class="
  2859.          navmenu-link
  2860.          navmenu-link-depth-3
  2861.          
  2862.        "
  2863.        href="/collections/keyboards-1"
  2864.        >
  2865.          
  2866.          Keyboards
  2867. </a>
  2868.      </li>
  2869.    
  2870.  
  2871.    
  2872.  
  2873.    
  2874.    
  2875.  
  2876.    
  2877.    
  2878.  
  2879.    
  2880.  
  2881.    
  2882.      <li
  2883.        class="navmenu-item navmenu-id-acer-keyboard"
  2884.      >
  2885.        <a
  2886.        class="
  2887.          navmenu-link
  2888.          navmenu-link-depth-3
  2889.          
  2890.        "
  2891.        href="/collections/acer-keyboard"
  2892.        >
  2893.          
  2894.          - Acer keyboard
  2895. </a>
  2896.      </li>
  2897.    
  2898.  
  2899.    
  2900.  
  2901.    
  2902.    
  2903.  
  2904.    
  2905.    
  2906.  
  2907.    
  2908.  
  2909.    
  2910.      <li
  2911.        class="navmenu-item navmenu-id-asus-keyboards"
  2912.      >
  2913.        <a
  2914.        class="
  2915.          navmenu-link
  2916.          navmenu-link-depth-3
  2917.          
  2918.        "
  2919.        href="/collections/asus-keyboard"
  2920.        >
  2921.          
  2922.          - Asus keyboards
  2923. </a>
  2924.      </li>
  2925.    
  2926.  
  2927.    
  2928.  
  2929.    
  2930.    
  2931.  
  2932.    
  2933.    
  2934.  
  2935.    
  2936.  
  2937.    
  2938.      <li
  2939.        class="navmenu-item navmenu-id-dell-keyboard"
  2940.      >
  2941.        <a
  2942.        class="
  2943.          navmenu-link
  2944.          navmenu-link-depth-3
  2945.          
  2946.        "
  2947.        href="/collections/dell-keyboard"
  2948.        >
  2949.          
  2950.          - Dell keyboard
  2951. </a>
  2952.      </li>
  2953.    
  2954.  
  2955.    
  2956.  
  2957.    
  2958.    
  2959.  
  2960.    
  2961.    
  2962.  
  2963.    
  2964.  
  2965.    
  2966.      <li
  2967.        class="navmenu-item navmenu-id-lenovo-keyboard"
  2968.      >
  2969.        <a
  2970.        class="
  2971.          navmenu-link
  2972.          navmenu-link-depth-3
  2973.          
  2974.        "
  2975.        href="/collections/lenovo-keyboard"
  2976.        >
  2977.          
  2978.          - Lenovo keyboard
  2979. </a>
  2980.      </li>
  2981.    
  2982.  
  2983.    
  2984.  
  2985.    
  2986.    
  2987.  
  2988.    
  2989.    
  2990.  
  2991.    
  2992.  
  2993.    
  2994.      <li
  2995.        class="navmenu-item navmenu-id-hp-keyboard"
  2996.      >
  2997.        <a
  2998.        class="
  2999.          navmenu-link
  3000.          navmenu-link-depth-3
  3001.          
  3002.        "
  3003.        href="/collections/hp-keyboard"
  3004.        >
  3005.          
  3006.          - Hp Keyboard
  3007. </a>
  3008.      </li>
  3009.    
  3010.  
  3011.    
  3012.  
  3013.    
  3014.    
  3015.  
  3016.    
  3017.    
  3018.  
  3019.    
  3020.  
  3021.    
  3022.      <li
  3023.        class="navmenu-item navmenu-id-backlit-keyboards"
  3024.      >
  3025.        <a
  3026.        class="
  3027.          navmenu-link
  3028.          navmenu-link-depth-3
  3029.          
  3030.        "
  3031.        href="/collections/backlit-keyboard"
  3032.        >
  3033.          
  3034.          - Backlit Keyboards
  3035. </a>
  3036.      </li>
  3037.    
  3038.  
  3039.    
  3040.  
  3041.    
  3042.    
  3043.  
  3044.    
  3045.    
  3046.  
  3047.    
  3048.  
  3049.    
  3050.      <li
  3051.        class="navmenu-item navmenu-id-memory"
  3052.      >
  3053.        <a
  3054.        class="
  3055.          navmenu-link
  3056.          navmenu-link-depth-3
  3057.          
  3058.        "
  3059.        href="/collections/memory"
  3060.        >
  3061.          
  3062.          Memory
  3063. </a>
  3064.      </li>
  3065.    
  3066.  
  3067.    
  3068.  
  3069.    
  3070.    
  3071.  
  3072.    
  3073.    
  3074.  
  3075.    
  3076.  
  3077.    
  3078.      <li
  3079.        class="navmenu-item navmenu-id-motherboards"
  3080.      >
  3081.        <a
  3082.        class="
  3083.          navmenu-link
  3084.          navmenu-link-depth-3
  3085.          
  3086.        "
  3087.        href="/collections/motherboards"
  3088.        >
  3089.          
  3090.          Motherboards
  3091. </a>
  3092.      </li>
  3093.    
  3094.  
  3095.    
  3096.  
  3097.    
  3098.    
  3099.  
  3100.    
  3101.    
  3102.  
  3103.    
  3104.  
  3105.    
  3106.      <li
  3107.        class="navmenu-item navmenu-id-optical-drives"
  3108.      >
  3109.        <a
  3110.        class="
  3111.          navmenu-link
  3112.          navmenu-link-depth-3
  3113.          
  3114.        "
  3115.        href="/collections/optical-drives"
  3116.        >
  3117.          
  3118.          Optical Drives
  3119. </a>
  3120.      </li>
  3121.    
  3122.  
  3123.    
  3124.  
  3125.    
  3126.    
  3127.  
  3128.    
  3129.    
  3130.  
  3131.    
  3132.  
  3133.    
  3134.      <li
  3135.        class="navmenu-item navmenu-id-power-supplies"
  3136.      >
  3137.        <a
  3138.        class="
  3139.          navmenu-link
  3140.          navmenu-link-depth-3
  3141.          
  3142.        "
  3143.        href="/collections/power-supplies"
  3144.        >
  3145.          
  3146.          Power Supplies
  3147. </a>
  3148.      </li>
  3149.    
  3150.  
  3151.    
  3152.  
  3153.    
  3154.    
  3155.  
  3156.    
  3157.    
  3158.  
  3159.    
  3160.  
  3161.    
  3162.      <li
  3163.        class="navmenu-item navmenu-id-screens"
  3164.      >
  3165.        <a
  3166.        class="
  3167.          navmenu-link
  3168.          navmenu-link-depth-3
  3169.          
  3170.        "
  3171.        href="/collections/screens"
  3172.        >
  3173.          
  3174.          Screens
  3175. </a>
  3176.      </li>
  3177.    
  3178.  
  3179.    
  3180.  
  3181.    
  3182.    
  3183.  
  3184.    
  3185.    
  3186.  
  3187.    
  3188.  
  3189.    
  3190.      <li
  3191.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3192.      >
  3193.        <a
  3194.        class="
  3195.          navmenu-link
  3196.          navmenu-link-depth-3
  3197.          
  3198.        "
  3199.        href="/collections/touch-screen-laptop"
  3200.        >
  3201.          
  3202.          - Touch Screen Laptop
  3203. </a>
  3204.      </li>
  3205.    
  3206.  
  3207.    
  3208.  
  3209.    
  3210.    
  3211.  
  3212.    
  3213.    
  3214.  
  3215.    
  3216.  
  3217.    
  3218.      <li
  3219.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3220.      >
  3221.        <a
  3222.        class="
  3223.          navmenu-link
  3224.          navmenu-link-depth-3
  3225.          
  3226.        "
  3227.        href="/collections/screens-touch-digitizers"
  3228.        >
  3229.          
  3230.          Screens - Touch Digitizers
  3231. </a>
  3232.      </li>
  3233.    
  3234.  
  3235.    
  3236.  
  3237.    
  3238.    
  3239.  
  3240.    
  3241.    
  3242.  
  3243.    
  3244.  
  3245.    
  3246.      <li
  3247.        class="navmenu-item navmenu-id-speakers"
  3248.      >
  3249.        <a
  3250.        class="
  3251.          navmenu-link
  3252.          navmenu-link-depth-3
  3253.          
  3254.        "
  3255.        href="/collections/speakers"
  3256.        >
  3257.          
  3258.          Speakers
  3259. </a>
  3260.      </li>
  3261.    
  3262.  
  3263.    
  3264.  
  3265.    
  3266.    
  3267.  
  3268.    
  3269.    
  3270.  
  3271.    
  3272.  
  3273.    
  3274.      <li
  3275.        class="navmenu-item navmenu-id-touchpads"
  3276.      >
  3277.        <a
  3278.        class="
  3279.          navmenu-link
  3280.          navmenu-link-depth-3
  3281.          
  3282.        "
  3283.        href="/collections/touchpads"
  3284.        >
  3285.          
  3286.          Touchpads
  3287. </a>
  3288.      </li>
  3289.    
  3290.  
  3291. </ul>
  3292.  
  3293.        
  3294.        
  3295.      </li>
  3296.    
  3297.  
  3298.    
  3299.  
  3300.    
  3301.    
  3302.  
  3303.    
  3304.    
  3305.  
  3306.    
  3307.  
  3308.    
  3309. <li
  3310.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3311.        data-navmenu-parent
  3312.      >
  3313.        
  3314.          <a
  3315.            href="/collections/all"
  3316.        
  3317.          class="navmenu-link navmenu-link-parent "
  3318.          
  3319.            aria-haspopup="true"
  3320.            aria-expanded="false"
  3321.          
  3322.        >
  3323.          
  3324.          Other Components
  3325.  
  3326.        
  3327.          </a>
  3328.        
  3329.  
  3330.        
  3331.          
  3332.  
  3333.  
  3334.  
  3335. <button
  3336.  class="navmenu-button"
  3337.  data-navmenu-trigger
  3338.  aria-expanded="false"
  3339. >
  3340.  <div class="navmenu-button-wrapper" tabindex="-1">
  3341.    <span class="navmenu-icon navmenu-icon-depth-2">
  3342.      <svg
  3343.  aria-hidden="true"
  3344.  focusable="false"
  3345.  role="presentation"
  3346.  width="8"
  3347.  height="6"
  3348.  viewBox="0 0 8 6"
  3349.  fill="none"
  3350.  xmlns="http://www.w3.org/2000/svg"
  3351.  class="icon-chevron-down"
  3352. >
  3353. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3354. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3355. </svg>
  3356.  
  3357.    </span>
  3358.    <span class="visually-hidden">Other Components</span>
  3359.  </div>
  3360. </button>
  3361.  
  3362.        
  3363.  
  3364.        
  3365.          
  3366.  
  3367.  
  3368.  
  3369.  
  3370.  
  3371.  
  3372.  
  3373.  
  3374.  
  3375.  
  3376.  
  3377.  
  3378. <ul
  3379.  class="
  3380.    navmenu
  3381.    navmenu-depth-3
  3382.    navmenu-submenu
  3383.    
  3384.  "
  3385.  data-navmenu
  3386.  data-accordion-content
  3387.  data-navmenu-submenu
  3388.  aria-label="Main Menu 02"
  3389. >
  3390.  
  3391.    
  3392.  
  3393.    
  3394.    
  3395.  
  3396.    
  3397.    
  3398.  
  3399.    
  3400.  
  3401.    
  3402.      <li
  3403.        class="navmenu-item navmenu-id-accessories"
  3404.      >
  3405.        <a
  3406.        class="
  3407.          navmenu-link
  3408.          navmenu-link-depth-3
  3409.          
  3410.        "
  3411.        href="/collections/accessories"
  3412.        >
  3413.          
  3414.          Accessories
  3415. </a>
  3416.      </li>
  3417.    
  3418.  
  3419.    
  3420.  
  3421.    
  3422.    
  3423.  
  3424.    
  3425.    
  3426.  
  3427.    
  3428.  
  3429.    
  3430.      <li
  3431.        class="navmenu-item navmenu-id-phone-parts"
  3432.      >
  3433.        <a
  3434.        class="
  3435.          navmenu-link
  3436.          navmenu-link-depth-3
  3437.          
  3438.        "
  3439.        href="/collections/phone-parts"
  3440.        >
  3441.          
  3442.          Phone Parts
  3443. </a>
  3444.      </li>
  3445.    
  3446.  
  3447.    
  3448.  
  3449.    
  3450.    
  3451.  
  3452.    
  3453.    
  3454.  
  3455.    
  3456.  
  3457.    
  3458.      <li
  3459.        class="navmenu-item navmenu-id-printer-parts"
  3460.      >
  3461.        <a
  3462.        class="
  3463.          navmenu-link
  3464.          navmenu-link-depth-3
  3465.          
  3466.        "
  3467.        href="/collections/printer-parts"
  3468.        >
  3469.          
  3470.          Printer Parts
  3471. </a>
  3472.      </li>
  3473.    
  3474.  
  3475.    
  3476.  
  3477.    
  3478.    
  3479.  
  3480.    
  3481.    
  3482.  
  3483.    
  3484.  
  3485.    
  3486.      <li
  3487.        class="navmenu-item navmenu-id-server-parts"
  3488.      >
  3489.        <a
  3490.        class="
  3491.          navmenu-link
  3492.          navmenu-link-depth-3
  3493.          
  3494.        "
  3495.        href="/collections/server-parts"
  3496.        >
  3497.          
  3498.          Server Parts
  3499. </a>
  3500.      </li>
  3501.    
  3502.  
  3503.    
  3504.  
  3505.    
  3506.    
  3507.  
  3508.    
  3509.    
  3510.  
  3511.    
  3512.  
  3513.    
  3514.      <li
  3515.        class="navmenu-item navmenu-id-tablet-parts"
  3516.      >
  3517.        <a
  3518.        class="
  3519.          navmenu-link
  3520.          navmenu-link-depth-3
  3521.          
  3522.        "
  3523.        href="/collections/tablet-parts"
  3524.        >
  3525.          
  3526.          Tablet Parts
  3527. </a>
  3528.      </li>
  3529.    
  3530.  
  3531. </ul>
  3532.  
  3533.        
  3534.        
  3535.      </li>
  3536.    
  3537.  
  3538. </ul>
  3539.  
  3540.      
  3541.  
  3542.      
  3543.    </li>
  3544.  
  3545.    
  3546.    
  3547.  
  3548.    
  3549.    
  3550.    
  3551. <li
  3552.      class="navmenu-item            navmenu-id-about-us"
  3553.      
  3554.    >
  3555.      <a
  3556.        class="navmenu-link  "
  3557.        href="/pages/about-us"
  3558.        
  3559.      >
  3560.        About Us
  3561.      </a>
  3562.  
  3563.      
  3564.  
  3565.      
  3566.      
  3567.  
  3568.      
  3569.  
  3570.      
  3571.    </li>
  3572.  
  3573.    
  3574.    
  3575.  
  3576.    
  3577.    
  3578.    
  3579. <li
  3580.      class="navmenu-item            navmenu-id-repair-centers"
  3581.      
  3582.    >
  3583.      <a
  3584.        class="navmenu-link  "
  3585.        href="/pages/store-locator"
  3586.        
  3587.      >
  3588.        Repair Centers
  3589.      </a>
  3590.  
  3591.      
  3592.  
  3593.      
  3594.      
  3595.  
  3596.      
  3597.  
  3598.      
  3599.    </li>
  3600.  
  3601.    
  3602.    
  3603.  
  3604.    
  3605.    
  3606.    
  3607. <li
  3608.      class="navmenu-item            navmenu-id-parts-request"
  3609.      
  3610.    >
  3611.      <a
  3612.        class="navmenu-link  "
  3613.        href="/pages/part-request"
  3614.        
  3615.      >
  3616.        Parts Request
  3617.      </a>
  3618.  
  3619.      
  3620.  
  3621.      
  3622.      
  3623.  
  3624.      
  3625.  
  3626.      
  3627.    </li>
  3628.  
  3629.    
  3630.    
  3631.  
  3632.    
  3633.    
  3634.    
  3635. <li
  3636.      class="navmenu-item            navmenu-id-shipping"
  3637.      
  3638.    >
  3639.      <a
  3640.        class="navmenu-link  "
  3641.        href="/pages/shipping"
  3642.        
  3643.      >
  3644.        Shipping
  3645.      </a>
  3646.  
  3647.      
  3648.  
  3649.      
  3650.      
  3651.  
  3652.      
  3653.  
  3654.      
  3655.    </li>
  3656.  
  3657.    
  3658.    
  3659.  
  3660.    
  3661.    
  3662.    
  3663. <li
  3664.      class="navmenu-item            navmenu-id-francais"
  3665.      
  3666.    >
  3667.      <a
  3668.        class="navmenu-link  "
  3669.        href="/pages/francais"
  3670.        
  3671.      >
  3672.        Français
  3673.      </a>
  3674.  
  3675.      
  3676.  
  3677.      
  3678.      
  3679.  
  3680.      
  3681.  
  3682.      
  3683.    </li>
  3684.  
  3685. </ul>
  3686.  
  3687.  
  3688.      
  3689.    </div>
  3690.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3691.  </div>
  3692.  
  3693.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3694. </div>
  3695.  
  3696. </header>
  3697.  
  3698. </div>
  3699. <!-- END sections: header-group -->
  3700.  
  3701.    <div style="--background-color: #fff">
  3702.      
  3703.  
  3704.  
  3705.    </div>
  3706.  
  3707.    <div class="intersection-target" data-header-intersection-target></div>
  3708.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3709.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3710.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3711.  
  3712.  
  3713.  
  3714. <script type="application/pxs-animation-mapping+json">
  3715.  {
  3716.    "blocks": [".slideshow-slide"],
  3717.    "elements": [
  3718.      ".slideshow-slide__heading",
  3719.      ".slideshow-slide__subheading",
  3720.      ".slideshow-slide__text",
  3721.      ".slideshow-slide__button"
  3722.    ]
  3723.  }
  3724. </script>
  3725.  
  3726. <style data-shopify>
  3727.  #shopify-section-template--15492296147031__dynamic_slideshow {
  3728.    --autoplay-interval: 5s;
  3729.  }
  3730.  
  3731.  
  3732.    @media screen and (min-width: 720px) {
  3733.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3734.        height: 55.55555555555556vw;
  3735.      }
  3736.    }
  3737.  
  3738.  
  3739.  
  3740.    @media screen and (max-width: 719px) {
  3741.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  3742.        
  3743.          height: 55.55555555555556vw;
  3744.        
  3745.      }
  3746.    }
  3747.  
  3748. </style>
  3749.  
  3750.  
  3751.  
  3752.  
  3753. <script
  3754.  type="application/json"
  3755.  data-section-type="pxs-slideshow"
  3756.  data-section-id="template--15492296147031__dynamic_slideshow"
  3757.  data-section-data
  3758. >
  3759.  {
  3760.    "enable_autoplay": true,
  3761.    "autoplay_interval": 5,
  3762.    "mobile_navigation_adjust": true,
  3763.    "transition_fade": null,
  3764.    "slide_attraction": null,
  3765.    "slide_friction": null,
  3766.    "next_text": "Next slide",
  3767.    "previous_text": "Previous slide"
  3768.  }
  3769. </script>
  3770.  
  3771. <section
  3772.  class="
  3773.    slideshow
  3774.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  3775.  "
  3776.  aria-label="Slideshow"
  3777.  data-autoplay="true"
  3778.  data-autoplay-interval="5"
  3779.  data-banner="false"
  3780.  data-slideshow
  3781. ><div
  3782.    class="slideshow__wrapper "
  3783.    data-slideshow-wrapper
  3784.  >
  3785.  
  3786.  
  3787. <div
  3788.  class="slideshow-slide  "
  3789.  aria-label="Slide 1 of 5"
  3790.  data-text-color="#FFFFFF"
  3791.  tabindex="-1"
  3792.  data-slideshow-slide
  3793.  data-slide-index="0"
  3794.  
  3795. ><div
  3796.      class="
  3797.        slideshow-slide__image-wrapper
  3798.        
  3799.      "
  3800.      data-slide-image-wrapper
  3801.    >
  3802.  
  3803.  
  3804.    <noscript data-rimg-noscript>
  3805.      <img loading="lazy"
  3806.        
  3807.          src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3808.        
  3809.  
  3810.        alt=""
  3811.        data-rimg="noscript"
  3812.        srcset="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850 1x"
  3813.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3814.        style="
  3815.        object-fit:cover;object-position:50.0% 50.0%;
  3816.      
  3817. "
  3818.        
  3819.      >
  3820.    </noscript>
  3821.  
  3822.  
  3823.  <img loading="lazy"
  3824.    
  3825.      src="//laptopparts.ca/cdn/shop/files/2_1_1800x1000.jpg?v=1739722850"
  3826.    
  3827.    alt=""
  3828.  
  3829.    
  3830.      data-rimg="lazy"
  3831.      data-rimg-scale="1"
  3832.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2_1_{size}.jpg?v=1739722850"
  3833.      data-rimg-max="1800x1000"
  3834.      data-rimg-crop="false"
  3835.      
  3836.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3837.    
  3838.  
  3839.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3840.    style="
  3841.        object-fit:cover;object-position:50.0% 50.0%;
  3842.      
  3843. "
  3844.    
  3845.  >
  3846.  
  3847.  
  3848.  
  3849.  <div data-rimg-canvas></div>
  3850.  
  3851.  
  3852. <div
  3853.          class="
  3854.            slideshow-slide__overlay
  3855.            
  3856.          "
  3857.          style="
  3858.            
  3859.              background-color: #000000;
  3860.            
  3861.            opacity: 0.01;
  3862.          "
  3863.        ></div></div><div
  3864.    class="
  3865.      slideshow-slide__content
  3866.      slideshow-slide__content--slide_tJp4ET
  3867.      slideshow-slide__content--text-center
  3868.    "
  3869.    data-slide-content
  3870.  ></div>
  3871. </div>
  3872.  
  3873.  
  3874.  
  3875.  
  3876. <div
  3877.  class="slideshow-slide  "
  3878.  aria-label="Slide 2 of 5"
  3879.  data-text-color="#FFFFFF"
  3880.  tabindex="-1"
  3881.  data-slideshow-slide
  3882.  data-slide-index="1"
  3883.  
  3884. ><div
  3885.      class="
  3886.        slideshow-slide__image-wrapper
  3887.        
  3888.      "
  3889.      data-slide-image-wrapper
  3890.    >
  3891.  
  3892.  
  3893.    <noscript data-rimg-noscript>
  3894.      <img loading="lazy"
  3895.        
  3896.          src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3897.        
  3898.  
  3899.        alt=""
  3900.        data-rimg="noscript"
  3901.        srcset="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692 1x"
  3902.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3903.        style="
  3904.        object-fit:cover;object-position:50.0% 50.0%;
  3905.      
  3906. "
  3907.        
  3908.      >
  3909.    </noscript>
  3910.  
  3911.  
  3912.  <img loading="lazy"
  3913.    
  3914.      src="//laptopparts.ca/cdn/shop/files/3_1_1800x1000.jpg?v=1739722692"
  3915.    
  3916.    alt=""
  3917.  
  3918.    
  3919.      data-rimg="lazy"
  3920.      data-rimg-scale="1"
  3921.      data-rimg-template="//laptopparts.ca/cdn/shop/files/3_1_{size}.jpg?v=1739722692"
  3922.      data-rimg-max="1800x1000"
  3923.      data-rimg-crop="false"
  3924.      
  3925.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  3926.    
  3927.  
  3928.    class="slideshow-slide__image slideshow-slide__image--desktop"
  3929.    style="
  3930.        object-fit:cover;object-position:50.0% 50.0%;
  3931.      
  3932. "
  3933.    
  3934.  >
  3935.  
  3936.  
  3937.  
  3938.  <div data-rimg-canvas></div>
  3939.  
  3940.  
  3941. <div
  3942.          class="
  3943.            slideshow-slide__overlay
  3944.            
  3945.          "
  3946.          style="
  3947.            
  3948.              background-color: #000000;
  3949.            
  3950.            opacity: 0.01;
  3951.          "
  3952.        ></div></div><div
  3953.    class="
  3954.      slideshow-slide__content
  3955.      slideshow-slide__content--slide_QztrPf
  3956.      slideshow-slide__content--text-center
  3957.    "
  3958.    data-slide-content
  3959.  ></div>
  3960. </div>
  3961.  
  3962.  
  3963.  
  3964.  
  3965. <div
  3966.  class="slideshow-slide  "
  3967.  aria-label="Slide 3 of 5"
  3968.  data-text-color="#FFFFFF"
  3969.  tabindex="-1"
  3970.  data-slideshow-slide
  3971.  data-slide-index="2"
  3972.  
  3973. ><div
  3974.      class="
  3975.        slideshow-slide__image-wrapper
  3976.        
  3977.      "
  3978.      data-slide-image-wrapper
  3979.    >
  3980.  
  3981.  
  3982.    <noscript data-rimg-noscript>
  3983.      <img loading="lazy"
  3984.        
  3985.          src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  3986.        
  3987.  
  3988.        alt=""
  3989.        data-rimg="noscript"
  3990.        srcset="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085 1x"
  3991.        class="slideshow-slide__image slideshow-slide__image--desktop"
  3992.        style="
  3993.        object-fit:cover;object-position:50.0% 50.0%;
  3994.      
  3995. "
  3996.        
  3997.      >
  3998.    </noscript>
  3999.  
  4000.  
  4001.  <img loading="lazy"
  4002.    
  4003.      src="//laptopparts.ca/cdn/shop/files/1_1_1800x1000.jpg?v=1739723085"
  4004.    
  4005.    alt=""
  4006.  
  4007.    
  4008.      data-rimg="lazy"
  4009.      data-rimg-scale="1"
  4010.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_1_{size}.jpg?v=1739723085"
  4011.      data-rimg-max="1800x1000"
  4012.      data-rimg-crop="false"
  4013.      
  4014.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4015.    
  4016.  
  4017.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4018.    style="
  4019.        object-fit:cover;object-position:50.0% 50.0%;
  4020.      
  4021. "
  4022.    
  4023.  >
  4024.  
  4025.  
  4026.  
  4027.  <div data-rimg-canvas></div>
  4028.  
  4029.  
  4030. <div
  4031.          class="
  4032.            slideshow-slide__overlay
  4033.            
  4034.          "
  4035.          style="
  4036.            
  4037.              background-color: #000000;
  4038.            
  4039.            opacity: 0.01;
  4040.          "
  4041.        ></div></div><div
  4042.    class="
  4043.      slideshow-slide__content
  4044.      slideshow-slide__content--slide_UPfjBG
  4045.      slideshow-slide__content--text-center
  4046.    "
  4047.    data-slide-content
  4048.  ></div>
  4049. </div>
  4050.  
  4051.  
  4052.  
  4053.  
  4054. <div
  4055.  class="slideshow-slide  "
  4056.  aria-label="Slide 4 of 5"
  4057.  data-text-color="#ffffff"
  4058.  tabindex="-1"
  4059.  data-slideshow-slide
  4060.  data-slide-index="3"
  4061.  
  4062. ><div
  4063.      class="
  4064.        slideshow-slide__image-wrapper
  4065.        
  4066.      "
  4067.      data-slide-image-wrapper
  4068.    >
  4069.  
  4070.  
  4071.    <noscript data-rimg-noscript>
  4072.      <img loading="lazy"
  4073.        
  4074.          src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4075.        
  4076.  
  4077.        alt=""
  4078.        data-rimg="noscript"
  4079.        srcset="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350 1x"
  4080.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4081.        style="
  4082.        object-fit:cover;object-position:50.0% 50.0%;
  4083.      
  4084. "
  4085.        
  4086.      >
  4087.    </noscript>
  4088.  
  4089.  
  4090.  <img loading="lazy"
  4091.    
  4092.      src="//laptopparts.ca/cdn/shop/files/5_1800x1000.jpg?v=1739723350"
  4093.    
  4094.    alt=""
  4095.  
  4096.    
  4097.      data-rimg="lazy"
  4098.      data-rimg-scale="1"
  4099.      data-rimg-template="//laptopparts.ca/cdn/shop/files/5_{size}.jpg?v=1739723350"
  4100.      data-rimg-max="1800x1000"
  4101.      data-rimg-crop="false"
  4102.      
  4103.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4104.    
  4105.  
  4106.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4107.    style="
  4108.        object-fit:cover;object-position:50.0% 50.0%;
  4109.      
  4110. "
  4111.    
  4112.  >
  4113.  
  4114.  
  4115.  
  4116.  <div data-rimg-canvas></div>
  4117.  
  4118.  
  4119. <div
  4120.          class="
  4121.            slideshow-slide__overlay
  4122.            
  4123.          "
  4124.          style="
  4125.            
  4126.              background-color: #000000;
  4127.            
  4128.            opacity: 0.01;
  4129.          "
  4130.        ></div></div><div
  4131.    class="
  4132.      slideshow-slide__content
  4133.      slideshow-slide__content--slide_MbNDbx
  4134.      slideshow-slide__content--text-center
  4135.    "
  4136.    data-slide-content
  4137.  ></div>
  4138. </div>
  4139.  
  4140.  
  4141.  
  4142.  
  4143. <div
  4144.  class="slideshow-slide  "
  4145.  aria-label="Slide 5 of 5"
  4146.  data-text-color="#FFFFFF"
  4147.  tabindex="-1"
  4148.  data-slideshow-slide
  4149.  data-slide-index="4"
  4150.  
  4151. ><div
  4152.      class="
  4153.        slideshow-slide__image-wrapper
  4154.        
  4155.      "
  4156.      data-slide-image-wrapper
  4157.    >
  4158.  
  4159.  
  4160.    <noscript data-rimg-noscript>
  4161.      <img loading="lazy"
  4162.        
  4163.          src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4164.        
  4165.  
  4166.        alt=""
  4167.        data-rimg="noscript"
  4168.        srcset="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234 1x"
  4169.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4170.        style="
  4171.        object-fit:cover;object-position:50.0% 50.0%;
  4172.      
  4173. "
  4174.        
  4175.      >
  4176.    </noscript>
  4177.  
  4178.  
  4179.  <img loading="lazy"
  4180.    
  4181.      src="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_1800x1000.jpg?v=1739723234"
  4182.    
  4183.    alt=""
  4184.  
  4185.    
  4186.      data-rimg="lazy"
  4187.      data-rimg-scale="1"
  4188.      data-rimg-template="//laptopparts.ca/cdn/shop/files/4_47d55bc5-8d36-445e-988d-1d3208968a04_{size}.jpg?v=1739723234"
  4189.      data-rimg-max="1800x1000"
  4190.      data-rimg-crop="false"
  4191.      
  4192.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4193.    
  4194.  
  4195.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4196.    style="
  4197.        object-fit:cover;object-position:50.0% 50.0%;
  4198.      
  4199. "
  4200.    
  4201.  >
  4202.  
  4203.  
  4204.  
  4205.  <div data-rimg-canvas></div>
  4206.  
  4207.  
  4208. <div
  4209.          class="
  4210.            slideshow-slide__overlay
  4211.            
  4212.          "
  4213.          style="
  4214.            
  4215.              background-color: #000000;
  4216.            
  4217.            opacity: 0.01;
  4218.          "
  4219.        ></div></div><div
  4220.    class="
  4221.      slideshow-slide__content
  4222.      slideshow-slide__content--slide_eGUxJ7
  4223.      slideshow-slide__content--text-center
  4224.    "
  4225.    data-slide-content
  4226.  ></div>
  4227. </div>
  4228.  
  4229. </div><ol
  4230.      class="slideshow-pagination"
  4231.      data-slideshow-pagination
  4232.    ><li class="slideshow-pagination__dot">
  4233.          <button
  4234.            class="slideshow-pagination__button"
  4235.            data-selected="true"
  4236.            data-slide-button="0"
  4237.          >
  4238.            
  4239.              
  4240.    <div class="circle-timer">
  4241.      <svg class="circle-timer__svg">
  4242.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4243.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4244.      </svg>
  4245.    </div>
  4246.  
  4247.            
  4248.            <span class="visually-hidden">Slide 1</span>
  4249.          </button>
  4250.        </li><li class="slideshow-pagination__dot">
  4251.          <button
  4252.            class="slideshow-pagination__button"
  4253.            data-selected="false"
  4254.            data-slide-button="1"
  4255.          >
  4256.            
  4257.              
  4258.    <div class="circle-timer">
  4259.      <svg class="circle-timer__svg">
  4260.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4261.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4262.      </svg>
  4263.    </div>
  4264.  
  4265.            
  4266.            <span class="visually-hidden">Slide 2</span>
  4267.          </button>
  4268.        </li><li class="slideshow-pagination__dot">
  4269.          <button
  4270.            class="slideshow-pagination__button"
  4271.            data-selected="false"
  4272.            data-slide-button="2"
  4273.          >
  4274.            
  4275.              
  4276.    <div class="circle-timer">
  4277.      <svg class="circle-timer__svg">
  4278.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4279.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4280.      </svg>
  4281.    </div>
  4282.  
  4283.            
  4284.            <span class="visually-hidden">Slide 3</span>
  4285.          </button>
  4286.        </li><li class="slideshow-pagination__dot">
  4287.          <button
  4288.            class="slideshow-pagination__button"
  4289.            data-selected="false"
  4290.            data-slide-button="3"
  4291.          >
  4292.            
  4293.              
  4294.    <div class="circle-timer">
  4295.      <svg class="circle-timer__svg">
  4296.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4297.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4298.      </svg>
  4299.    </div>
  4300.  
  4301.            
  4302.            <span class="visually-hidden">Slide 4</span>
  4303.          </button>
  4304.        </li><li class="slideshow-pagination__dot">
  4305.          <button
  4306.            class="slideshow-pagination__button"
  4307.            data-selected="false"
  4308.            data-slide-button="4"
  4309.          >
  4310.            
  4311.              
  4312.    <div class="circle-timer">
  4313.      <svg class="circle-timer__svg">
  4314.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4315.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4316.      </svg>
  4317.    </div>
  4318.  
  4319.            
  4320.            <span class="visually-hidden">Slide 5</span>
  4321.          </button>
  4322.        </li></ol><div
  4323.    class="slideshow__current-slide visually-hidden"
  4324.    aria-live="polite"
  4325.    aria-atomic="true"
  4326.    data-slide-counter
  4327.    data-counter-template="Slide {{ count }} of {{ total }}"
  4328.  >
  4329.  </div>
  4330. </section>
  4331.  
  4332.  
  4333.  
  4334. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4335.  type="application/json"
  4336.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4337.  data-section-type="dynamic-featured-collection"
  4338. ></script>
  4339.  
  4340. <script type="application/pxs-animation-mapping+json">
  4341.  {
  4342.    "blocks": [
  4343.      ".featured-collection__title-card"
  4344.    ],
  4345.    "elements": [
  4346.      ".featured-collection__title-card-pre-heading",
  4347.      ".featured-collection__title-card-heading",
  4348.      ".featured-collection__title-card-button"
  4349.    ]
  4350.  }
  4351. </script>
  4352.  
  4353.  
  4354.  
  4355.  
  4356.  
  4357.  
  4358.  
  4359.  
  4360.  
  4361.  
  4362.  
  4363.  
  4364.  
  4365.  
  4366.  
  4367. <style data-shopify>
  4368.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4369.    color: ;
  4370.  }
  4371.  
  4372.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4373.    background-color: ;
  4374.    opacity: 0.0;
  4375.  }
  4376.  
  4377.  @media screen and (min-width: 1080px) {
  4378.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4379.      
  4380.    }
  4381.  }
  4382. </style>
  4383.  
  4384.  
  4385.  
  4386.  
  4387.  
  4388.  
  4389.  
  4390.  
  4391.  
  4392.  
  4393.  
  4394.  
  4395.  
  4396.  
  4397.  
  4398. <section class="featured-collection__container" data-featured-collection>
  4399.  
  4400.    <h2 class="home-section--title">
  4401.      Shop The Best Selling
  4402.    </h2>
  4403.  
  4404.  
  4405.  <ul
  4406.    class="home-section--content featured-collection__content"
  4407.    data-content
  4408.    data-layout="slideshow"
  4409.  >
  4410.    
  4411.  
  4412.    
  4413.      
  4414.  
  4415.  
  4416.  
  4417.  
  4418.  
  4419.  
  4420.  
  4421.  
  4422.  
  4423.  
  4424.  
  4425.  
  4426.  
  4427.  
  4428.  
  4429.  
  4430.  
  4431.  
  4432.  
  4433.  
  4434.  
  4435.  
  4436.  
  4437.  
  4438.  
  4439.  
  4440.  
  4441.  
  4442.  
  4443.  
  4444.  
  4445.  
  4446.    
  4447.  
  4448.  
  4449.  
  4450. <li
  4451.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4452.  data-product-item
  4453.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4454.  
  4455. >
  4456.  <div class="productitem" data-product-item-content>
  4457.    
  4458.    
  4459.    
  4460.    
  4461.  
  4462.    
  4463.  
  4464.    
  4465.  
  4466.    <div class="productitem__container">
  4467.      
  4468.  
  4469.      <div class="productitem__image-container">
  4470.        <a target="_blank"
  4471.          class="productitem--image-link"
  4472.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4473.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4474.          tabindex="-1"
  4475.          data-product-page-link
  4476.        >
  4477.          <figure
  4478.            class="productitem--image"
  4479.            data-product-item-image
  4480.            
  4481.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4482.            
  4483.          >
  4484.            
  4485.              
  4486.              
  4487.  
  4488.  
  4489.    <noscript data-rimg-noscript>
  4490.      <img loading="lazy"
  4491.        
  4492.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4493.        
  4494.  
  4495.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4496.        data-rimg="noscript"
  4497.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033 1x, //laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_998x998.jpg?v=1729018033 1.95x"
  4498.        class="productitem--image-primary"
  4499.        
  4500.        
  4501.      >
  4502.    </noscript>
  4503.  
  4504.  
  4505.  <img loading="lazy"
  4506.    
  4507.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4508.    
  4509.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4510.  
  4511.    
  4512.      data-rimg="lazy"
  4513.      data-rimg-scale="1"
  4514.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4515.      data-rimg-max="1000x1000"
  4516.      data-rimg-crop="false"
  4517.      
  4518.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4519.    
  4520.  
  4521.    class="productitem--image-primary"
  4522.    
  4523.    
  4524.  >
  4525.  
  4526.  
  4527.  
  4528.  <div data-rimg-canvas></div>
  4529.  
  4530.  
  4531.            
  4532.  
  4533.            
  4534.  
  4535.  
  4536.  
  4537.  
  4538.  
  4539.  
  4540.  
  4541.  
  4542.  
  4543.  
  4544.  
  4545.  
  4546.  
  4547.  
  4548.  
  4549.  
  4550.  
  4551.  
  4552.  
  4553.  
  4554.  
  4555.  
  4556.  
  4557.  
  4558.  
  4559.  
  4560.  
  4561.          </figure>
  4562.        </a>
  4563.      </div><div class="productitem--info">
  4564.        
  4565.          
  4566.  
  4567.        
  4568.  
  4569.        
  4570.          
  4571.  
  4572.  
  4573.  
  4574.  
  4575.  
  4576.  
  4577.  
  4578.  
  4579.  
  4580.  
  4581.  
  4582.  
  4583.  
  4584.  
  4585.  
  4586.  
  4587.  
  4588.  
  4589.  
  4590.  
  4591.  
  4592.  
  4593.  
  4594.  
  4595.  
  4596.  
  4597.  
  4598.  
  4599.  
  4600.  
  4601. <div class="price productitem__price ">
  4602.  
  4603.    <div
  4604.      class="price__compare-at visible"
  4605.      data-price-compare-container
  4606.    >
  4607.  
  4608.      
  4609.        <span class="money price__original" data-price-original></span>
  4610.      
  4611.    </div>
  4612.  
  4613.  
  4614.    
  4615.      
  4616.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4617.        
  4618.          <span class="visually-hidden">Original price</span>
  4619.          <span class="money price__compare-at--min" data-price-compare-min>
  4620.            $115.98
  4621.          </span>
  4622.          -
  4623.          <span class="visually-hidden">Original price</span>
  4624.          <span class="money price__compare-at--max" data-price-compare-max>
  4625.            $115.98
  4626.          </span>
  4627.        
  4628.      </div>
  4629.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4630.        <span class="visually-hidden">Original price</span>
  4631.        <span class="money price__compare-at--single" data-price-compare>
  4632.          
  4633.        </span>
  4634.      </div>
  4635.    
  4636.  
  4637.  
  4638.  <div class="price__current price__current--emphasize " data-price-container>
  4639.  
  4640.    
  4641.  
  4642.    
  4643.      
  4644.      
  4645.      <span class="money" data-price>
  4646.        $115.98
  4647.      </span>
  4648.    
  4649.    
  4650.  </div>
  4651.  
  4652.  
  4653.    
  4654.    <div class="price__current--hidden" data-current-price-range-hidden>
  4655.      
  4656.        <span class="money price__current--min" data-price-min>$115.98</span>
  4657.        -
  4658.        <span class="money price__current--max" data-price-max>$115.98</span>
  4659.      
  4660.    </div>
  4661.    <div class="price__current--hidden" data-current-price-hidden>
  4662.      <span class="visually-hidden">Current price</span>
  4663.      <span class="money" data-price>
  4664.        $115.98
  4665.      </span>
  4666.    </div>
  4667.  
  4668.  
  4669.  
  4670.    
  4671.    
  4672.    
  4673.    
  4674.  
  4675.    <div
  4676.      class="
  4677.        productitem__unit-price
  4678.        hidden
  4679.      "
  4680.      data-unit-price
  4681.    >
  4682.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  4683.    </div>
  4684.  
  4685.  
  4686.  
  4687. </div>
  4688.  
  4689.  
  4690.        
  4691.  
  4692.        <h2 class="productitem--title">
  4693.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4694.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4695.          </a>
  4696.        </h2>
  4697.  
  4698.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4699.        <div class="star_container 3959626498135"></div>
  4700.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4701.  
  4702.        
  4703.          
  4704.            <span class="productitem--vendor">
  4705.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4706.            </span>
  4707.          
  4708.        
  4709.  
  4710.        
  4711.  
  4712.        
  4713.          
  4714.            <div class="productitem__stock-level">
  4715.              <!--
  4716.  
  4717.  
  4718.  
  4719.  
  4720.  
  4721.  
  4722.  
  4723. <div class="product-stock-level-wrapper" >
  4724.  
  4725.    <span class="
  4726.  product-stock-level
  4727.  product-stock-level--continue-selling
  4728.  
  4729. ">
  4730.      
  4731.  
  4732.      <span class="product-stock-level__text">
  4733.        
  4734.        <div class="product-stock-level__badge-text">
  4735.          
  4736.  
  4737.    In stock
  4738.  
  4739.  
  4740.        </div>
  4741.      </span>
  4742.    </span>
  4743.  
  4744. </div>
  4745. -->
  4746.              
  4747.  
  4748.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  4749.  
  4750.  
  4751.  
  4752.  
  4753.  
  4754.  
  4755.  
  4756.            </div>
  4757.          
  4758.  
  4759.          
  4760.            
  4761.          
  4762.        
  4763.  
  4764.        
  4765.          <div class="productitem--description">
  4766.            <p>
  4767. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  4768.  
  4769. Compatible Part #s: B140HAN03.3, KW8T4
  4770.  
  4771. Compatible Models:
  4772. Dell Latitude 74...</p>
  4773.  
  4774.            
  4775.              <a
  4776.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4777.                class="productitem--link"
  4778.                data-product-page-link
  4779.              >
  4780.                View full details
  4781.              </a>
  4782.            
  4783.          </div>
  4784.        
  4785.      </div>
  4786.  
  4787.      
  4788.        
  4789.          
  4790.          
  4791.          
  4792.  
  4793.          
  4794.          
  4795.  
  4796.          
  4797.  
  4798.          
  4799.  
  4800.          <div class="productitem--actions" data-product-actions>
  4801.            <div class="productitem--listview-price">
  4802.              
  4803.  
  4804.  
  4805.  
  4806.  
  4807.  
  4808.  
  4809.  
  4810.  
  4811.  
  4812.  
  4813.  
  4814.  
  4815.  
  4816.  
  4817.  
  4818.  
  4819.  
  4820.  
  4821.  
  4822.  
  4823.  
  4824.  
  4825.  
  4826.  
  4827.  
  4828.  
  4829.  
  4830.  
  4831.  
  4832.  
  4833. <div class="price productitem__price ">
  4834.  
  4835.    <div
  4836.      class="price__compare-at visible"
  4837.      data-price-compare-container
  4838.    >
  4839.  
  4840.      
  4841.        <span class="money price__original" data-price-original></span>
  4842.      
  4843.    </div>
  4844.  
  4845.  
  4846.    
  4847.      
  4848.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4849.        
  4850.          <span class="visually-hidden">Original price</span>
  4851.          <span class="money price__compare-at--min" data-price-compare-min>
  4852.            $115.98
  4853.          </span>
  4854.          -
  4855.          <span class="visually-hidden">Original price</span>
  4856.          <span class="money price__compare-at--max" data-price-compare-max>
  4857.            $115.98
  4858.          </span>
  4859.        
  4860.      </div>
  4861.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4862.        <span class="visually-hidden">Original price</span>
  4863.        <span class="money price__compare-at--single" data-price-compare>
  4864.          
  4865.        </span>
  4866.      </div>
  4867.    
  4868.  
  4869.  
  4870.  <div class="price__current price__current--emphasize " data-price-container>
  4871.  
  4872.    
  4873.  
  4874.    
  4875.      
  4876.      
  4877.      <span class="money" data-price>
  4878.        $115.98
  4879.      </span>
  4880.    
  4881.    
  4882.  </div>
  4883.  
  4884.  
  4885.    
  4886.    <div class="price__current--hidden" data-current-price-range-hidden>
  4887.      
  4888.        <span class="money price__current--min" data-price-min>$115.98</span>
  4889.        -
  4890.        <span class="money price__current--max" data-price-max>$115.98</span>
  4891.      
  4892.    </div>
  4893.    <div class="price__current--hidden" data-current-price-hidden>
  4894.      <span class="visually-hidden">Current price</span>
  4895.      <span class="money" data-price>
  4896.        $115.98
  4897.      </span>
  4898.    </div>
  4899.  
  4900.  
  4901.  
  4902.    
  4903.    
  4904.    
  4905.    
  4906.  
  4907.    <div
  4908.      class="
  4909.        productitem__unit-price
  4910.        hidden
  4911.      "
  4912.      data-unit-price
  4913.    >
  4914.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  4915.    </div>
  4916.  
  4917.  
  4918.  
  4919. </div>
  4920.  
  4921.  
  4922.            </div>
  4923.  
  4924.            <div class="productitem--listview-badge">
  4925.              
  4926.  
  4927.  
  4928.  
  4929.  
  4930.  
  4931.  
  4932.  
  4933.  
  4934.  
  4935.  
  4936.  
  4937.  
  4938.  
  4939.  
  4940.  
  4941.  
  4942.  
  4943.  
  4944.  
  4945.  
  4946.  
  4947.  
  4948.  
  4949.  
  4950.  
  4951.  
  4952.  
  4953.            </div>
  4954.  
  4955.            
  4956.              <div
  4957.                class="
  4958.                  productitem--action
  4959.                  quickshop-button
  4960.                  
  4961.                "
  4962.              >
  4963.                <button
  4964.                  class="productitem--action-trigger button-secondary"
  4965.                  data-quickshop-full
  4966.                  
  4967.                  
  4968.                  type="button"
  4969.                >
  4970.                  Quick shop
  4971.                </button>
  4972.              </div>
  4973.            
  4974.  
  4975.            
  4976.              <div
  4977.                class="
  4978.                  productitem--action
  4979.                  atc--button
  4980.                  
  4981.                "
  4982.              >
  4983.                <button
  4984.                  class="productitem--action-trigger productitem--action-atc button-primary"
  4985.                  type="button"
  4986.                  aria-label="Add to cart"
  4987.                  
  4988.                    data-quick-buy
  4989.                  
  4990.                  data-variant-id="29564289744983"
  4991.                  
  4992.                >
  4993.                  <span class="atc-button--text">
  4994.                    Add to cart
  4995.                  </span>
  4996.                  <span class="atc-button--icon"><svg
  4997.  aria-hidden="true"
  4998.  focusable="false"
  4999.  role="presentation"
  5000.  width="26"
  5001.  height="26"
  5002.  viewBox="0 0 26 26"
  5003.  xmlns="http://www.w3.org/2000/svg"
  5004. >
  5005.  <g fill-rule="nonzero" fill="currentColor">
  5006.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  5007.  </g>
  5008. </svg></span>
  5009.                </button>
  5010.              </div>
  5011.            
  5012.          </div>
  5013.        
  5014.      
  5015.    </div>
  5016.  </div>
  5017.  
  5018.  
  5019.    <script type="application/json" data-quick-buy-settings>
  5020.      {
  5021.        "cart_redirection": true,
  5022.        "money_format": "${{amount}}"
  5023.      }
  5024.    </script>
  5025.  
  5026. </li>
  5027.    
  5028.      
  5029.  
  5030.  
  5031.  
  5032.  
  5033.  
  5034.  
  5035.  
  5036.  
  5037.  
  5038.  
  5039.  
  5040.  
  5041.  
  5042.  
  5043.  
  5044.  
  5045.  
  5046.  
  5047.  
  5048.  
  5049.  
  5050.  
  5051.  
  5052.  
  5053.  
  5054.  
  5055.  
  5056.  
  5057.  
  5058.  
  5059.  
  5060.  
  5061.    
  5062.  
  5063.  
  5064.  
  5065. <li
  5066.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5067.  data-product-item
  5068.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5069.  
  5070. >
  5071.  <div class="productitem" data-product-item-content>
  5072.    
  5073.    
  5074.    
  5075.    
  5076.  
  5077.    
  5078.  
  5079.    
  5080.  
  5081.    <div class="productitem__container">
  5082.      
  5083.  
  5084.      <div class="productitem__image-container">
  5085.        <a target="_blank"
  5086.          class="productitem--image-link"
  5087.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5088.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5089.          tabindex="-1"
  5090.          data-product-page-link
  5091.        >
  5092.          <figure
  5093.            class="productitem--image"
  5094.            data-product-item-image
  5095.            
  5096.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5097.            
  5098.          >
  5099.            
  5100.              
  5101.              
  5102.  
  5103.  
  5104.    <noscript data-rimg-noscript>
  5105.      <img loading="lazy"
  5106.        
  5107.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5108.        
  5109.  
  5110.        alt="20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  5111.        data-rimg="noscript"
  5112.        srcset="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872 1x, //laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_599x599.jpg?v=1648053872 1.17x"
  5113.        class="productitem--image-primary"
  5114.        
  5115.        
  5116.      >
  5117.    </noscript>
  5118.  
  5119.  
  5120.  <img loading="lazy"
  5121.    
  5122.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5123.    
  5124.    alt="20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  5125.  
  5126.    
  5127.      data-rimg="lazy"
  5128.      data-rimg-scale="1"
  5129.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5130.      data-rimg-max="600x600"
  5131.      data-rimg-crop="false"
  5132.      
  5133.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5134.    
  5135.  
  5136.    class="productitem--image-primary"
  5137.    
  5138.    
  5139.  >
  5140.  
  5141.  
  5142.  
  5143.  <div data-rimg-canvas></div>
  5144.  
  5145.  
  5146.            
  5147.  
  5148.            
  5149.  
  5150.  
  5151.  
  5152.  
  5153.  
  5154.  
  5155.  
  5156.  
  5157.  
  5158.  
  5159.  
  5160.  
  5161.  
  5162.  
  5163.  
  5164.  
  5165.  
  5166.  
  5167.  
  5168.  
  5169.  
  5170.  
  5171.  
  5172.  
  5173.  
  5174.  
  5175.  
  5176.          </figure>
  5177.        </a>
  5178.      </div><div class="productitem--info">
  5179.        
  5180.          
  5181.  
  5182.        
  5183.  
  5184.        
  5185.          
  5186.  
  5187.  
  5188.  
  5189.  
  5190.  
  5191.  
  5192.  
  5193.  
  5194.  
  5195.  
  5196.  
  5197.  
  5198.  
  5199.  
  5200.  
  5201.  
  5202.  
  5203.  
  5204.  
  5205.  
  5206.  
  5207.  
  5208.  
  5209.  
  5210.  
  5211.  
  5212.  
  5213.  
  5214.  
  5215.  
  5216. <div class="price productitem__price ">
  5217.  
  5218.    <div
  5219.      class="price__compare-at visible"
  5220.      data-price-compare-container
  5221.    >
  5222.  
  5223.      
  5224.        <span class="money price__original" data-price-original></span>
  5225.      
  5226.    </div>
  5227.  
  5228.  
  5229.    
  5230.      
  5231.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5232.        
  5233.          <span class="visually-hidden">Original price</span>
  5234.          <span class="money price__compare-at--min" data-price-compare-min>
  5235.            $90.99
  5236.          </span>
  5237.          -
  5238.          <span class="visually-hidden">Original price</span>
  5239.          <span class="money price__compare-at--max" data-price-compare-max>
  5240.            $90.99
  5241.          </span>
  5242.        
  5243.      </div>
  5244.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5245.        <span class="visually-hidden">Original price</span>
  5246.        <span class="money price__compare-at--single" data-price-compare>
  5247.          
  5248.        </span>
  5249.      </div>
  5250.    
  5251.  
  5252.  
  5253.  <div class="price__current price__current--emphasize " data-price-container>
  5254.  
  5255.    
  5256.  
  5257.    
  5258.      
  5259.      
  5260.      <span class="money" data-price>
  5261.        $90.99
  5262.      </span>
  5263.    
  5264.    
  5265.  </div>
  5266.  
  5267.  
  5268.    
  5269.    <div class="price__current--hidden" data-current-price-range-hidden>
  5270.      
  5271.        <span class="money price__current--min" data-price-min>$90.99</span>
  5272.        -
  5273.        <span class="money price__current--max" data-price-max>$90.99</span>
  5274.      
  5275.    </div>
  5276.    <div class="price__current--hidden" data-current-price-hidden>
  5277.      <span class="visually-hidden">Current price</span>
  5278.      <span class="money" data-price>
  5279.        $90.99
  5280.      </span>
  5281.    </div>
  5282.  
  5283.  
  5284.  
  5285.    
  5286.    
  5287.    
  5288.    
  5289.  
  5290.    <div
  5291.      class="
  5292.        productitem__unit-price
  5293.        hidden
  5294.      "
  5295.      data-unit-price
  5296.    >
  5297.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5298.    </div>
  5299.  
  5300.  
  5301.  
  5302. </div>
  5303.  
  5304.  
  5305.        
  5306.  
  5307.        <h2 class="productitem--title">
  5308.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5309.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5310.          </a>
  5311.        </h2>
  5312.  
  5313.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5314.        <div class="star_container 3483510112343"></div>
  5315.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5316.  
  5317.        
  5318.          
  5319.            <span class="productitem--vendor">
  5320.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5321.            </span>
  5322.          
  5323.        
  5324.  
  5325.        
  5326.  
  5327.        
  5328.          
  5329.            <div class="productitem__stock-level">
  5330.              <!--
  5331.  
  5332.  
  5333.  
  5334.  
  5335.  
  5336.  
  5337.  
  5338. <div class="product-stock-level-wrapper" >
  5339.  
  5340.    <span class="
  5341.  product-stock-level
  5342.  product-stock-level--continue-selling
  5343.  
  5344. ">
  5345.      
  5346.  
  5347.      <span class="product-stock-level__text">
  5348.        
  5349.        <div class="product-stock-level__badge-text">
  5350.          
  5351.  
  5352.    In stock
  5353.  
  5354.  
  5355.        </div>
  5356.      </span>
  5357.    </span>
  5358.  
  5359. </div>
  5360. -->
  5361.              
  5362.  
  5363.  
  5364.    
  5365.      <b style="color:green">In stock</b>
  5366.    
  5367.  
  5368.  
  5369.  
  5370.  
  5371.  
  5372.  
  5373.  
  5374.            </div>
  5375.          
  5376.  
  5377.          
  5378.            
  5379.          
  5380.        
  5381.  
  5382.        
  5383.          <div class="productitem--description">
  5384.            <p>Plugs directly into AC outlet.
  5385.  
  5386. Input: 100-240V ~ 50-60Hz
  5387. Output: 12V – 1.5A 18W
  5388. Connector Tip: mini USB
  5389. Colour: Black
  5390.  
  5391. Compatible Part #s: KP.01...</p>
  5392.  
  5393.            
  5394.              <a
  5395.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5396.                class="productitem--link"
  5397.                data-product-page-link
  5398.              >
  5399.                View full details
  5400.              </a>
  5401.            
  5402.          </div>
  5403.        
  5404.      </div>
  5405.  
  5406.      
  5407.        
  5408.          
  5409.          
  5410.          
  5411.  
  5412.          
  5413.          
  5414.  
  5415.          
  5416.  
  5417.          
  5418.  
  5419.          <div class="productitem--actions" data-product-actions>
  5420.            <div class="productitem--listview-price">
  5421.              
  5422.  
  5423.  
  5424.  
  5425.  
  5426.  
  5427.  
  5428.  
  5429.  
  5430.  
  5431.  
  5432.  
  5433.  
  5434.  
  5435.  
  5436.  
  5437.  
  5438.  
  5439.  
  5440.  
  5441.  
  5442.  
  5443.  
  5444.  
  5445.  
  5446.  
  5447.  
  5448.  
  5449.  
  5450.  
  5451.  
  5452. <div class="price productitem__price ">
  5453.  
  5454.    <div
  5455.      class="price__compare-at visible"
  5456.      data-price-compare-container
  5457.    >
  5458.  
  5459.      
  5460.        <span class="money price__original" data-price-original></span>
  5461.      
  5462.    </div>
  5463.  
  5464.  
  5465.    
  5466.      
  5467.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5468.        
  5469.          <span class="visually-hidden">Original price</span>
  5470.          <span class="money price__compare-at--min" data-price-compare-min>
  5471.            $90.99
  5472.          </span>
  5473.          -
  5474.          <span class="visually-hidden">Original price</span>
  5475.          <span class="money price__compare-at--max" data-price-compare-max>
  5476.            $90.99
  5477.          </span>
  5478.        
  5479.      </div>
  5480.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5481.        <span class="visually-hidden">Original price</span>
  5482.        <span class="money price__compare-at--single" data-price-compare>
  5483.          
  5484.        </span>
  5485.      </div>
  5486.    
  5487.  
  5488.  
  5489.  <div class="price__current price__current--emphasize " data-price-container>
  5490.  
  5491.    
  5492.  
  5493.    
  5494.      
  5495.      
  5496.      <span class="money" data-price>
  5497.        $90.99
  5498.      </span>
  5499.    
  5500.    
  5501.  </div>
  5502.  
  5503.  
  5504.    
  5505.    <div class="price__current--hidden" data-current-price-range-hidden>
  5506.      
  5507.        <span class="money price__current--min" data-price-min>$90.99</span>
  5508.        -
  5509.        <span class="money price__current--max" data-price-max>$90.99</span>
  5510.      
  5511.    </div>
  5512.    <div class="price__current--hidden" data-current-price-hidden>
  5513.      <span class="visually-hidden">Current price</span>
  5514.      <span class="money" data-price>
  5515.        $90.99
  5516.      </span>
  5517.    </div>
  5518.  
  5519.  
  5520.  
  5521.    
  5522.    
  5523.    
  5524.    
  5525.  
  5526.    <div
  5527.      class="
  5528.        productitem__unit-price
  5529.        hidden
  5530.      "
  5531.      data-unit-price
  5532.    >
  5533.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5534.    </div>
  5535.  
  5536.  
  5537.  
  5538. </div>
  5539.  
  5540.  
  5541.            </div>
  5542.  
  5543.            <div class="productitem--listview-badge">
  5544.              
  5545.  
  5546.  
  5547.  
  5548.  
  5549.  
  5550.  
  5551.  
  5552.  
  5553.  
  5554.  
  5555.  
  5556.  
  5557.  
  5558.  
  5559.  
  5560.  
  5561.  
  5562.  
  5563.  
  5564.  
  5565.  
  5566.  
  5567.  
  5568.  
  5569.  
  5570.  
  5571.  
  5572.            </div>
  5573.  
  5574.            
  5575.              <div
  5576.                class="
  5577.                  productitem--action
  5578.                  quickshop-button
  5579.                  
  5580.                "
  5581.              >
  5582.                <button
  5583.                  class="productitem--action-trigger button-secondary"
  5584.                  data-quickshop-full
  5585.                  
  5586.                  
  5587.                  type="button"
  5588.                >
  5589.                  Quick shop
  5590.                </button>
  5591.              </div>
  5592.            
  5593.  
  5594.            
  5595.              <div
  5596.                class="
  5597.                  productitem--action
  5598.                  atc--button
  5599.                  
  5600.                "
  5601.              >
  5602.                <button
  5603.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5604.                  type="button"
  5605.                  aria-label="Add to cart"
  5606.                  
  5607.                    data-quick-buy
  5608.                  
  5609.                  data-variant-id="39666212798551"
  5610.                  
  5611.                >
  5612.                  <span class="atc-button--text">
  5613.                    Add to cart
  5614.                  </span>
  5615.                  <span class="atc-button--icon"><svg
  5616.  aria-hidden="true"
  5617.  focusable="false"
  5618.  role="presentation"
  5619.  width="26"
  5620.  height="26"
  5621.  viewBox="0 0 26 26"
  5622.  xmlns="http://www.w3.org/2000/svg"
  5623. >
  5624.  <g fill-rule="nonzero" fill="currentColor">
  5625.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  5626.  </g>
  5627. </svg></span>
  5628.                </button>
  5629.              </div>
  5630.            
  5631.          </div>
  5632.        
  5633.      
  5634.    </div>
  5635.  </div>
  5636.  
  5637.  
  5638.    <script type="application/json" data-quick-buy-settings>
  5639.      {
  5640.        "cart_redirection": true,
  5641.        "money_format": "${{amount}}"
  5642.      }
  5643.    </script>
  5644.  
  5645. </li>
  5646.    
  5647.      
  5648.  
  5649.  
  5650.  
  5651.  
  5652.  
  5653.  
  5654.  
  5655.  
  5656.  
  5657.  
  5658.  
  5659.  
  5660.  
  5661.  
  5662.  
  5663.  
  5664.  
  5665.  
  5666.  
  5667.  
  5668.    
  5669.    
  5670.  
  5671.  
  5672.  
  5673.  
  5674.  
  5675.  
  5676.  
  5677.  
  5678.  
  5679.  
  5680.  
  5681.    
  5682.  
  5683.  
  5684.  
  5685. <li
  5686.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5687.  data-product-item
  5688.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5689.  
  5690. >
  5691.  <div class="productitem" data-product-item-content>
  5692.    
  5693.    
  5694.    
  5695.    
  5696.  
  5697.    
  5698.  
  5699.    
  5700.  
  5701.    <div class="productitem__container">
  5702.      
  5703.  
  5704.      <div class="productitem__image-container">
  5705.        <a target="_blank"
  5706.          class="productitem--image-link"
  5707.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5708.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5709.          tabindex="-1"
  5710.          data-product-page-link
  5711.        >
  5712.          <figure
  5713.            class="productitem--image"
  5714.            data-product-item-image
  5715.            
  5716.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5717.            
  5718.          >
  5719.            
  5720.              
  5721.              
  5722.  
  5723.  
  5724.    <noscript data-rimg-noscript>
  5725.      <img loading="lazy"
  5726.        
  5727.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5728.        
  5729.  
  5730.        alt="B156HTN03.6"
  5731.        data-rimg="noscript"
  5732.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  5733.        class="productitem--image-primary"
  5734.        
  5735.        
  5736.      >
  5737.    </noscript>
  5738.  
  5739.  
  5740.  <img loading="lazy"
  5741.    
  5742.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  5743.    
  5744.    alt="B156HTN03.6"
  5745.  
  5746.    
  5747.      data-rimg="lazy"
  5748.      data-rimg-scale="1"
  5749.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  5750.      data-rimg-max="500x500"
  5751.      data-rimg-crop="false"
  5752.      
  5753.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  5754.    
  5755.  
  5756.    class="productitem--image-primary"
  5757.    
  5758.    
  5759.  >
  5760.  
  5761.  
  5762.  
  5763.  <div data-rimg-canvas></div>
  5764.  
  5765.  
  5766.            
  5767.  
  5768.            
  5769.  
  5770.  
  5771.  
  5772.  
  5773.  
  5774.  
  5775.  
  5776.  
  5777.  
  5778.  
  5779.  
  5780.  
  5781.  
  5782.  
  5783.  
  5784.  
  5785.  
  5786.  
  5787.  
  5788.  
  5789.  
  5790.  
  5791.  
  5792.  
  5793.  
  5794.  
  5795.  
  5796.  
  5797.  
  5798.  
  5799.  
  5800.  <span class="productitem__badge productitem__badge--sale"
  5801.    data-badge-sales
  5802.    
  5803.  >
  5804.    <span data-badge-sales-range>
  5805.      
  5806.        
  5807.          Save <span data-price-percent-saved>28</span>%
  5808.        
  5809.      
  5810.    </span>
  5811.    <span data-badge-sales-single style="display: none;">
  5812.      
  5813.        Save <span data-price-percent-saved></span>%
  5814.      
  5815.    </span>
  5816.  </span>
  5817.          </figure>
  5818.        </a>
  5819.      </div><div class="productitem--info">
  5820.        
  5821.          
  5822.  
  5823.        
  5824.  
  5825.        
  5826.          
  5827.  
  5828.  
  5829.  
  5830.  
  5831.  
  5832.  
  5833.  
  5834.  
  5835.  
  5836.  
  5837.  
  5838.  
  5839.  
  5840.  
  5841.  
  5842.  
  5843.  
  5844.  
  5845.  
  5846.  
  5847.  
  5848.  
  5849.  
  5850.  
  5851.  
  5852.  
  5853.  
  5854.  
  5855.  
  5856.  
  5857. <div class="price productitem__price ">
  5858.  
  5859.    <div
  5860.      class="price__compare-at visible"
  5861.      data-price-compare-container
  5862.    >
  5863.  
  5864.      
  5865.        <span class="visually-hidden">Original price</span>
  5866.        <span class="money price__compare-at--single" data-price-compare>
  5867.          $147.99
  5868.        </span>
  5869.      
  5870.    </div>
  5871.  
  5872.  
  5873.    
  5874.      
  5875.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5876.        
  5877.          <span class="visually-hidden">Original price</span>
  5878.          <span class="money price__compare-at--min" data-price-compare-min>
  5879.            $147.99
  5880.          </span>
  5881.          -
  5882.          <span class="visually-hidden">Original price</span>
  5883.          <span class="money price__compare-at--max" data-price-compare-max>
  5884.            $147.99
  5885.          </span>
  5886.        
  5887.      </div>
  5888.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5889.        <span class="visually-hidden">Original price</span>
  5890.        <span class="money price__compare-at--single" data-price-compare>
  5891.          $147.99
  5892.        </span>
  5893.      </div>
  5894.    
  5895.  
  5896.  
  5897.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  5898.  
  5899.    
  5900.  
  5901.    
  5902.      
  5903.      
  5904.        <span class="visually-hidden">Current price</span>
  5905.      
  5906.      <span class="money" data-price>
  5907.        $105.98
  5908.      </span>
  5909.    
  5910.    
  5911.  </div>
  5912.  
  5913.  
  5914.    
  5915.    <div class="price__current--hidden" data-current-price-range-hidden>
  5916.      
  5917.        <span class="money price__current--min" data-price-min>$105.98</span>
  5918.        -
  5919.        <span class="money price__current--max" data-price-max>$105.98</span>
  5920.      
  5921.    </div>
  5922.    <div class="price__current--hidden" data-current-price-hidden>
  5923.      <span class="visually-hidden">Current price</span>
  5924.      <span class="money" data-price>
  5925.        $105.98
  5926.      </span>
  5927.    </div>
  5928.  
  5929.  
  5930.  
  5931.    
  5932.    
  5933.    
  5934.    
  5935.  
  5936.    <div
  5937.      class="
  5938.        productitem__unit-price
  5939.        hidden
  5940.      "
  5941.      data-unit-price
  5942.    >
  5943.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5944.    </div>
  5945.  
  5946.  
  5947.  
  5948. </div>
  5949.  
  5950.  
  5951.        
  5952.  
  5953.        <h2 class="productitem--title">
  5954.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  5955.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  5956.          </a>
  5957.        </h2>
  5958.  
  5959.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5960.        <div class="star_container 3929811353687"></div>
  5961.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5962.  
  5963.        
  5964.          
  5965.            <span class="productitem--vendor">
  5966.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  5967.            </span>
  5968.          
  5969.        
  5970.  
  5971.        
  5972.  
  5973.        
  5974.          
  5975.            <div class="productitem__stock-level">
  5976.              <!--
  5977.  
  5978.  
  5979.  
  5980.  
  5981.  
  5982.  
  5983.  
  5984. <div class="product-stock-level-wrapper" >
  5985.  
  5986.    <span class="
  5987.  product-stock-level
  5988.  product-stock-level--continue-selling
  5989.  
  5990. ">
  5991.      
  5992.  
  5993.      <span class="product-stock-level__text">
  5994.        
  5995.        <div class="product-stock-level__badge-text">
  5996.          
  5997.  
  5998.    In stock
  5999.  
  6000.  
  6001.        </div>
  6002.      </span>
  6003.    </span>
  6004.  
  6005. </div>
  6006. -->
  6007.              
  6008.  
  6009.  
  6010.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  6011.  
  6012.  
  6013.  
  6014.  
  6015.            </div>
  6016.          
  6017.  
  6018.          
  6019.            
  6020.          
  6021.        
  6022.  
  6023.        
  6024.          <div class="productitem--description">
  6025.            <p>
  6026. Description: New AU Optronics FHD 1920x1080 laptop lcd led screen, 15.6". This may be the replacement part you need to replace your broken or dama...</p>
  6027.  
  6028.            
  6029.              <a
  6030.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6031.                class="productitem--link"
  6032.                data-product-page-link
  6033.              >
  6034.                View full details
  6035.              </a>
  6036.            
  6037.          </div>
  6038.        
  6039.      </div>
  6040.  
  6041.      
  6042.        
  6043.          
  6044.          
  6045.          
  6046.  
  6047.          
  6048.          
  6049.  
  6050.          
  6051.  
  6052.          
  6053.  
  6054.          <div class="productitem--actions" data-product-actions>
  6055.            <div class="productitem--listview-price">
  6056.              
  6057.  
  6058.  
  6059.  
  6060.  
  6061.  
  6062.  
  6063.  
  6064.  
  6065.  
  6066.  
  6067.  
  6068.  
  6069.  
  6070.  
  6071.  
  6072.  
  6073.  
  6074.  
  6075.  
  6076.  
  6077.  
  6078.  
  6079.  
  6080.  
  6081.  
  6082.  
  6083.  
  6084.  
  6085.  
  6086.  
  6087. <div class="price productitem__price ">
  6088.  
  6089.    <div
  6090.      class="price__compare-at visible"
  6091.      data-price-compare-container
  6092.    >
  6093.  
  6094.      
  6095.        <span class="visually-hidden">Original price</span>
  6096.        <span class="money price__compare-at--single" data-price-compare>
  6097.          $147.99
  6098.        </span>
  6099.      
  6100.    </div>
  6101.  
  6102.  
  6103.    
  6104.      
  6105.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6106.        
  6107.          <span class="visually-hidden">Original price</span>
  6108.          <span class="money price__compare-at--min" data-price-compare-min>
  6109.            $147.99
  6110.          </span>
  6111.          -
  6112.          <span class="visually-hidden">Original price</span>
  6113.          <span class="money price__compare-at--max" data-price-compare-max>
  6114.            $147.99
  6115.          </span>
  6116.        
  6117.      </div>
  6118.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6119.        <span class="visually-hidden">Original price</span>
  6120.        <span class="money price__compare-at--single" data-price-compare>
  6121.          $147.99
  6122.        </span>
  6123.      </div>
  6124.    
  6125.  
  6126.  
  6127.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6128.  
  6129.    
  6130.  
  6131.    
  6132.      
  6133.      
  6134.        <span class="visually-hidden">Current price</span>
  6135.      
  6136.      <span class="money" data-price>
  6137.        $105.98
  6138.      </span>
  6139.    
  6140.    
  6141.  </div>
  6142.  
  6143.  
  6144.    
  6145.    <div class="price__current--hidden" data-current-price-range-hidden>
  6146.      
  6147.        <span class="money price__current--min" data-price-min>$105.98</span>
  6148.        -
  6149.        <span class="money price__current--max" data-price-max>$105.98</span>
  6150.      
  6151.    </div>
  6152.    <div class="price__current--hidden" data-current-price-hidden>
  6153.      <span class="visually-hidden">Current price</span>
  6154.      <span class="money" data-price>
  6155.        $105.98
  6156.      </span>
  6157.    </div>
  6158.  
  6159.  
  6160.  
  6161.    
  6162.    
  6163.    
  6164.    
  6165.  
  6166.    <div
  6167.      class="
  6168.        productitem__unit-price
  6169.        hidden
  6170.      "
  6171.      data-unit-price
  6172.    >
  6173.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6174.    </div>
  6175.  
  6176.  
  6177.  
  6178. </div>
  6179.  
  6180.  
  6181.            </div>
  6182.  
  6183.            <div class="productitem--listview-badge">
  6184.              
  6185.  
  6186.  
  6187.  
  6188.  
  6189.  
  6190.  
  6191.  
  6192.  
  6193.  
  6194.  
  6195.  
  6196.  
  6197.  
  6198.  
  6199.  
  6200.  
  6201.  
  6202.  
  6203.  
  6204.  
  6205.  
  6206.  
  6207.  
  6208.  
  6209.  
  6210.  
  6211.  
  6212.  
  6213.  
  6214.  
  6215.  
  6216.  <span class="productitem__badge productitem__badge--sale"
  6217.    data-badge-sales
  6218.    
  6219.  >
  6220.    <span data-badge-sales-range>
  6221.      
  6222.        
  6223.          Save <span data-price-percent-saved>28</span>%
  6224.        
  6225.      
  6226.    </span>
  6227.    <span data-badge-sales-single style="display: none;">
  6228.      
  6229.        Save <span data-price-percent-saved></span>%
  6230.      
  6231.    </span>
  6232.  </span>
  6233.            </div>
  6234.  
  6235.            
  6236.              <div
  6237.                class="
  6238.                  productitem--action
  6239.                  quickshop-button
  6240.                  
  6241.                "
  6242.              >
  6243.                <button
  6244.                  class="productitem--action-trigger button-secondary"
  6245.                  data-quickshop-full
  6246.                  
  6247.                  
  6248.                  type="button"
  6249.                >
  6250.                  Quick shop
  6251.                </button>
  6252.              </div>
  6253.            
  6254.  
  6255.            
  6256.              <div
  6257.                class="
  6258.                  productitem--action
  6259.                  atc--button
  6260.                  
  6261.                "
  6262.              >
  6263.                <button
  6264.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6265.                  type="button"
  6266.                  aria-label="Add to cart"
  6267.                  
  6268.                    data-quick-buy
  6269.                  
  6270.                  data-variant-id="29564283551831"
  6271.                  
  6272.                >
  6273.                  <span class="atc-button--text">
  6274.                    Add to cart
  6275.                  </span>
  6276.                  <span class="atc-button--icon"><svg
  6277.  aria-hidden="true"
  6278.  focusable="false"
  6279.  role="presentation"
  6280.  width="26"
  6281.  height="26"
  6282.  viewBox="0 0 26 26"
  6283.  xmlns="http://www.w3.org/2000/svg"
  6284. >
  6285.  <g fill-rule="nonzero" fill="currentColor">
  6286.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  6287.  </g>
  6288. </svg></span>
  6289.                </button>
  6290.              </div>
  6291.            
  6292.          </div>
  6293.        
  6294.      
  6295.    </div>
  6296.  </div>
  6297.  
  6298.  
  6299.    <script type="application/json" data-quick-buy-settings>
  6300.      {
  6301.        "cart_redirection": true,
  6302.        "money_format": "${{amount}}"
  6303.      }
  6304.    </script>
  6305.  
  6306. </li>
  6307.    
  6308.      
  6309.  
  6310.  
  6311.  
  6312.  
  6313.  
  6314.  
  6315.  
  6316.  
  6317.  
  6318.  
  6319.  
  6320.  
  6321.  
  6322.  
  6323.  
  6324.  
  6325.  
  6326.  
  6327.  
  6328.  
  6329.  
  6330.  
  6331.  
  6332.  
  6333.  
  6334.  
  6335.  
  6336.  
  6337.  
  6338.  
  6339.  
  6340.  
  6341.    
  6342.  
  6343.  
  6344.  
  6345. <li
  6346.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6347.  data-product-item
  6348.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6349.  
  6350. >
  6351.  <div class="productitem" data-product-item-content>
  6352.    
  6353.    
  6354.    
  6355.    
  6356.  
  6357.    
  6358.  
  6359.    
  6360.  
  6361.    <div class="productitem__container">
  6362.      
  6363.  
  6364.      <div class="productitem__image-container">
  6365.        <a target="_blank"
  6366.          class="productitem--image-link"
  6367.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6368.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6369.          tabindex="-1"
  6370.          data-product-page-link
  6371.        >
  6372.          <figure
  6373.            class="productitem--image"
  6374.            data-product-item-image
  6375.            
  6376.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6377.            
  6378.          >
  6379.            
  6380.              
  6381.              
  6382.  
  6383.  
  6384.    <noscript data-rimg-noscript>
  6385.      <img loading="lazy"
  6386.        
  6387.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6388.        
  6389.  
  6390.        alt="Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW - LaptopParts.ca"
  6391.        data-rimg="noscript"
  6392.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527 1x, //laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_998x998.jpg?v=1648038527 1.95x"
  6393.        class="productitem--image-primary"
  6394.        
  6395.        
  6396.      >
  6397.    </noscript>
  6398.  
  6399.  
  6400.  <img loading="lazy"
  6401.    
  6402.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6403.    
  6404.    alt="Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW - LaptopParts.ca"
  6405.  
  6406.    
  6407.      data-rimg="lazy"
  6408.      data-rimg-scale="1"
  6409.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6410.      data-rimg-max="1000x1000"
  6411.      data-rimg-crop="false"
  6412.      
  6413.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6414.    
  6415.  
  6416.    class="productitem--image-primary"
  6417.    
  6418.    
  6419.  >
  6420.  
  6421.  
  6422.  
  6423.  <div data-rimg-canvas></div>
  6424.  
  6425.  
  6426.            
  6427.  
  6428.            
  6429.  
  6430.  
  6431.  
  6432.  
  6433.  
  6434.  
  6435.  
  6436.  
  6437.  
  6438.  
  6439.  
  6440.  
  6441.  
  6442.  
  6443.  
  6444.  
  6445.  
  6446.  
  6447.  
  6448.  
  6449.  
  6450.  
  6451.  
  6452.  
  6453.  
  6454.  
  6455.  
  6456.          </figure>
  6457.        </a>
  6458.      </div><div class="productitem--info">
  6459.        
  6460.          
  6461.  
  6462.        
  6463.  
  6464.        
  6465.          
  6466.  
  6467.  
  6468.  
  6469.  
  6470.  
  6471.  
  6472.  
  6473.  
  6474.  
  6475.  
  6476.  
  6477.  
  6478.  
  6479.  
  6480.  
  6481.  
  6482.  
  6483.  
  6484.  
  6485.  
  6486.  
  6487.  
  6488.  
  6489.  
  6490.  
  6491.  
  6492.  
  6493.  
  6494.  
  6495.  
  6496. <div class="price productitem__price ">
  6497.  
  6498.    <div
  6499.      class="price__compare-at visible"
  6500.      data-price-compare-container
  6501.    >
  6502.  
  6503.      
  6504.        <span class="money price__original" data-price-original></span>
  6505.      
  6506.    </div>
  6507.  
  6508.  
  6509.    
  6510.      
  6511.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6512.        
  6513.          <span class="visually-hidden">Original price</span>
  6514.          <span class="money price__compare-at--min" data-price-compare-min>
  6515.            $115.98
  6516.          </span>
  6517.          -
  6518.          <span class="visually-hidden">Original price</span>
  6519.          <span class="money price__compare-at--max" data-price-compare-max>
  6520.            $115.98
  6521.          </span>
  6522.        
  6523.      </div>
  6524.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6525.        <span class="visually-hidden">Original price</span>
  6526.        <span class="money price__compare-at--single" data-price-compare>
  6527.          
  6528.        </span>
  6529.      </div>
  6530.    
  6531.  
  6532.  
  6533.  <div class="price__current price__current--emphasize " data-price-container>
  6534.  
  6535.    
  6536.  
  6537.    
  6538.      
  6539.      
  6540.      <span class="money" data-price>
  6541.        $115.98
  6542.      </span>
  6543.    
  6544.    
  6545.  </div>
  6546.  
  6547.  
  6548.    
  6549.    <div class="price__current--hidden" data-current-price-range-hidden>
  6550.      
  6551.        <span class="money price__current--min" data-price-min>$115.98</span>
  6552.        -
  6553.        <span class="money price__current--max" data-price-max>$115.98</span>
  6554.      
  6555.    </div>
  6556.    <div class="price__current--hidden" data-current-price-hidden>
  6557.      <span class="visually-hidden">Current price</span>
  6558.      <span class="money" data-price>
  6559.        $115.98
  6560.      </span>
  6561.    </div>
  6562.  
  6563.  
  6564.  
  6565.    
  6566.    
  6567.    
  6568.    
  6569.  
  6570.    <div
  6571.      class="
  6572.        productitem__unit-price
  6573.        hidden
  6574.      "
  6575.      data-unit-price
  6576.    >
  6577.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6578.    </div>
  6579.  
  6580.  
  6581.  
  6582. </div>
  6583.  
  6584.  
  6585.        
  6586.  
  6587.        <h2 class="productitem--title">
  6588.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6589.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6590.          </a>
  6591.        </h2>
  6592.  
  6593.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6594.        <div class="star_container 3929789694039"></div>
  6595.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6596.  
  6597.        
  6598.          
  6599.            <span class="productitem--vendor">
  6600.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6601.            </span>
  6602.          
  6603.        
  6604.  
  6605.        
  6606.  
  6607.        
  6608.          
  6609.            <div class="productitem__stock-level">
  6610.              <!--
  6611.  
  6612.  
  6613.  
  6614.  
  6615.  
  6616.  
  6617.  
  6618. <div class="product-stock-level-wrapper" >
  6619.  
  6620.    <span class="
  6621.  product-stock-level
  6622.  product-stock-level--continue-selling
  6623.  
  6624. ">
  6625.      
  6626.  
  6627.      <span class="product-stock-level__text">
  6628.        
  6629.        <div class="product-stock-level__badge-text">
  6630.          
  6631.  
  6632.    In stock
  6633.  
  6634.  
  6635.        </div>
  6636.      </span>
  6637.    </span>
  6638.  
  6639. </div>
  6640. -->
  6641.              
  6642.  
  6643.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  6644.  
  6645.  
  6646.  
  6647.  
  6648.  
  6649.  
  6650.  
  6651.            </div>
  6652.          
  6653.  
  6654.          
  6655.            
  6656.          
  6657.        
  6658.  
  6659.        
  6660.          <div class="productitem--description">
  6661.            <p>
  6662. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6663.  
  6664. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6665.  
  6666. Compatible Models:
  6667. Dell Lati...</p>
  6668.  
  6669.            
  6670.              <a
  6671.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6672.                class="productitem--link"
  6673.                data-product-page-link
  6674.              >
  6675.                View full details
  6676.              </a>
  6677.            
  6678.          </div>
  6679.        
  6680.      </div>
  6681.  
  6682.      
  6683.        
  6684.          
  6685.          
  6686.          
  6687.  
  6688.          
  6689.          
  6690.  
  6691.          
  6692.  
  6693.          
  6694.  
  6695.          <div class="productitem--actions" data-product-actions>
  6696.            <div class="productitem--listview-price">
  6697.              
  6698.  
  6699.  
  6700.  
  6701.  
  6702.  
  6703.  
  6704.  
  6705.  
  6706.  
  6707.  
  6708.  
  6709.  
  6710.  
  6711.  
  6712.  
  6713.  
  6714.  
  6715.  
  6716.  
  6717.  
  6718.  
  6719.  
  6720.  
  6721.  
  6722.  
  6723.  
  6724.  
  6725.  
  6726.  
  6727.  
  6728. <div class="price productitem__price ">
  6729.  
  6730.    <div
  6731.      class="price__compare-at visible"
  6732.      data-price-compare-container
  6733.    >
  6734.  
  6735.      
  6736.        <span class="money price__original" data-price-original></span>
  6737.      
  6738.    </div>
  6739.  
  6740.  
  6741.    
  6742.      
  6743.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6744.        
  6745.          <span class="visually-hidden">Original price</span>
  6746.          <span class="money price__compare-at--min" data-price-compare-min>
  6747.            $115.98
  6748.          </span>
  6749.          -
  6750.          <span class="visually-hidden">Original price</span>
  6751.          <span class="money price__compare-at--max" data-price-compare-max>
  6752.            $115.98
  6753.          </span>
  6754.        
  6755.      </div>
  6756.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6757.        <span class="visually-hidden">Original price</span>
  6758.        <span class="money price__compare-at--single" data-price-compare>
  6759.          
  6760.        </span>
  6761.      </div>
  6762.    
  6763.  
  6764.  
  6765.  <div class="price__current price__current--emphasize " data-price-container>
  6766.  
  6767.    
  6768.  
  6769.    
  6770.      
  6771.      
  6772.      <span class="money" data-price>
  6773.        $115.98
  6774.      </span>
  6775.    
  6776.    
  6777.  </div>
  6778.  
  6779.  
  6780.    
  6781.    <div class="price__current--hidden" data-current-price-range-hidden>
  6782.      
  6783.        <span class="money price__current--min" data-price-min>$115.98</span>
  6784.        -
  6785.        <span class="money price__current--max" data-price-max>$115.98</span>
  6786.      
  6787.    </div>
  6788.    <div class="price__current--hidden" data-current-price-hidden>
  6789.      <span class="visually-hidden">Current price</span>
  6790.      <span class="money" data-price>
  6791.        $115.98
  6792.      </span>
  6793.    </div>
  6794.  
  6795.  
  6796.  
  6797.    
  6798.    
  6799.    
  6800.    
  6801.  
  6802.    <div
  6803.      class="
  6804.        productitem__unit-price
  6805.        hidden
  6806.      "
  6807.      data-unit-price
  6808.    >
  6809.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6810.    </div>
  6811.  
  6812.  
  6813.  
  6814. </div>
  6815.  
  6816.  
  6817.            </div>
  6818.  
  6819.            <div class="productitem--listview-badge">
  6820.              
  6821.  
  6822.  
  6823.  
  6824.  
  6825.  
  6826.  
  6827.  
  6828.  
  6829.  
  6830.  
  6831.  
  6832.  
  6833.  
  6834.  
  6835.  
  6836.  
  6837.  
  6838.  
  6839.  
  6840.  
  6841.  
  6842.  
  6843.  
  6844.  
  6845.  
  6846.  
  6847.  
  6848.            </div>
  6849.  
  6850.            
  6851.              <div
  6852.                class="
  6853.                  productitem--action
  6854.                  quickshop-button
  6855.                  
  6856.                "
  6857.              >
  6858.                <button
  6859.                  class="productitem--action-trigger button-secondary"
  6860.                  data-quickshop-full
  6861.                  
  6862.                  
  6863.                  type="button"
  6864.                >
  6865.                  Quick shop
  6866.                </button>
  6867.              </div>
  6868.            
  6869.  
  6870.            
  6871.              <div
  6872.                class="
  6873.                  productitem--action
  6874.                  atc--button
  6875.                  
  6876.                "
  6877.              >
  6878.                <button
  6879.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6880.                  type="button"
  6881.                  aria-label="Add to cart"
  6882.                  
  6883.                    data-quick-buy
  6884.                  
  6885.                  data-variant-id="29462328246359"
  6886.                  
  6887.                >
  6888.                  <span class="atc-button--text">
  6889.                    Add to cart
  6890.                  </span>
  6891.                  <span class="atc-button--icon"><svg
  6892.  aria-hidden="true"
  6893.  focusable="false"
  6894.  role="presentation"
  6895.  width="26"
  6896.  height="26"
  6897.  viewBox="0 0 26 26"
  6898.  xmlns="http://www.w3.org/2000/svg"
  6899. >
  6900.  <g fill-rule="nonzero" fill="currentColor">
  6901.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  6902.  </g>
  6903. </svg></span>
  6904.                </button>
  6905.              </div>
  6906.            
  6907.          </div>
  6908.        
  6909.      
  6910.    </div>
  6911.  </div>
  6912.  
  6913.  
  6914.    <script type="application/json" data-quick-buy-settings>
  6915.      {
  6916.        "cart_redirection": true,
  6917.        "money_format": "${{amount}}"
  6918.      }
  6919.    </script>
  6920.  
  6921. </li>
  6922.    
  6923.      
  6924.  
  6925.  
  6926.  
  6927.  
  6928.  
  6929.  
  6930.  
  6931.  
  6932.  
  6933.  
  6934.  
  6935.  
  6936.  
  6937.  
  6938.  
  6939.  
  6940.  
  6941.  
  6942.  
  6943.  
  6944.  
  6945.  
  6946.  
  6947.  
  6948.  
  6949.  
  6950.  
  6951.  
  6952.  
  6953.  
  6954.  
  6955.  
  6956.    
  6957.  
  6958.  
  6959.  
  6960. <li
  6961.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6962.  data-product-item
  6963.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6964.  
  6965. >
  6966.  <div class="productitem" data-product-item-content>
  6967.    
  6968.    
  6969.    
  6970.    
  6971.  
  6972.    
  6973.  
  6974.    
  6975.  
  6976.    <div class="productitem__container">
  6977.      
  6978.  
  6979.      <div class="productitem__image-container">
  6980.        <a target="_blank"
  6981.          class="productitem--image-link"
  6982.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6983.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  6984.          tabindex="-1"
  6985.          data-product-page-link
  6986.        >
  6987.          <figure
  6988.            class="productitem--image"
  6989.            data-product-item-image
  6990.            
  6991.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6992.            
  6993.          >
  6994.            
  6995.              
  6996.              
  6997.  
  6998.  
  6999.    <noscript data-rimg-noscript>
  7000.      <img loading="lazy"
  7001.        
  7002.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7003.        
  7004.  
  7005.        alt="4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable - LaptopParts.ca"
  7006.        data-rimg="noscript"
  7007.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  7008.        class="productitem--image-primary"
  7009.        
  7010.        
  7011.      >
  7012.    </noscript>
  7013.  
  7014.  
  7015.  <img loading="lazy"
  7016.    
  7017.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7018.    
  7019.    alt="4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable - LaptopParts.ca"
  7020.  
  7021.    
  7022.      data-rimg="lazy"
  7023.      data-rimg-scale="1"
  7024.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  7025.      data-rimg-max="603x603"
  7026.      data-rimg-crop="false"
  7027.      
  7028.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7029.    
  7030.  
  7031.    class="productitem--image-primary"
  7032.    
  7033.    
  7034.  >
  7035.  
  7036.  
  7037.  
  7038.  <div data-rimg-canvas></div>
  7039.  
  7040.  
  7041.            
  7042.  
  7043.            
  7044.  
  7045.  
  7046.  
  7047.  
  7048.  
  7049.  
  7050.  
  7051.  
  7052.  
  7053.  
  7054.  
  7055.  
  7056.  
  7057.  
  7058.  
  7059.  
  7060.  
  7061.  
  7062.  
  7063.  
  7064.  
  7065.  
  7066.  
  7067.  
  7068.  
  7069.  
  7070.  
  7071.          </figure>
  7072.        </a>
  7073.      </div><div class="productitem--info">
  7074.        
  7075.          
  7076.  
  7077.        
  7078.  
  7079.        
  7080.          
  7081.  
  7082.  
  7083.  
  7084.  
  7085.  
  7086.  
  7087.  
  7088.  
  7089.  
  7090.  
  7091.  
  7092.  
  7093.  
  7094.  
  7095.  
  7096.  
  7097.  
  7098.  
  7099.  
  7100.  
  7101.  
  7102.  
  7103.  
  7104.  
  7105.  
  7106.  
  7107.  
  7108.  
  7109.  
  7110.  
  7111. <div class="price productitem__price ">
  7112.  
  7113.    <div
  7114.      class="price__compare-at visible"
  7115.      data-price-compare-container
  7116.    >
  7117.  
  7118.      
  7119.        <span class="money price__original" data-price-original></span>
  7120.      
  7121.    </div>
  7122.  
  7123.  
  7124.    
  7125.      
  7126.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7127.        
  7128.          <span class="visually-hidden">Original price</span>
  7129.          <span class="money price__compare-at--min" data-price-compare-min>
  7130.            $36.99
  7131.          </span>
  7132.          -
  7133.          <span class="visually-hidden">Original price</span>
  7134.          <span class="money price__compare-at--max" data-price-compare-max>
  7135.            $36.99
  7136.          </span>
  7137.        
  7138.      </div>
  7139.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7140.        <span class="visually-hidden">Original price</span>
  7141.        <span class="money price__compare-at--single" data-price-compare>
  7142.          
  7143.        </span>
  7144.      </div>
  7145.    
  7146.  
  7147.  
  7148.  <div class="price__current price__current--emphasize " data-price-container>
  7149.  
  7150.    
  7151.  
  7152.    
  7153.      
  7154.      
  7155.      <span class="money" data-price>
  7156.        $36.99
  7157.      </span>
  7158.    
  7159.    
  7160.  </div>
  7161.  
  7162.  
  7163.    
  7164.    <div class="price__current--hidden" data-current-price-range-hidden>
  7165.      
  7166.        <span class="money price__current--min" data-price-min>$36.99</span>
  7167.        -
  7168.        <span class="money price__current--max" data-price-max>$36.99</span>
  7169.      
  7170.    </div>
  7171.    <div class="price__current--hidden" data-current-price-hidden>
  7172.      <span class="visually-hidden">Current price</span>
  7173.      <span class="money" data-price>
  7174.        $36.99
  7175.      </span>
  7176.    </div>
  7177.  
  7178.  
  7179.  
  7180.    
  7181.    
  7182.    
  7183.    
  7184.  
  7185.    <div
  7186.      class="
  7187.        productitem__unit-price
  7188.        hidden
  7189.      "
  7190.      data-unit-price
  7191.    >
  7192.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7193.    </div>
  7194.  
  7195.  
  7196.  
  7197. </div>
  7198.  
  7199.  
  7200.        
  7201.  
  7202.        <h2 class="productitem--title">
  7203.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7204.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7205.          </a>
  7206.        </h2>
  7207.  
  7208.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7209.        <div class="star_container 1416490647575"></div>
  7210.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7211.  
  7212.        
  7213.          
  7214.            <span class="productitem--vendor">
  7215.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7216.            </span>
  7217.          
  7218.        
  7219.  
  7220.        
  7221.  
  7222.        
  7223.          
  7224.            <div class="productitem__stock-level">
  7225.              <!--
  7226.  
  7227.  
  7228.  
  7229.  
  7230.  
  7231.  
  7232.  
  7233. <div class="product-stock-level-wrapper" >
  7234.  
  7235.    <span class="
  7236.  product-stock-level
  7237.  product-stock-level--continue-selling
  7238.  
  7239. ">
  7240.      
  7241.  
  7242.      <span class="product-stock-level__text">
  7243.        
  7244.        <div class="product-stock-level__badge-text">
  7245.          
  7246.  
  7247.    In stock
  7248.  
  7249.  
  7250.        </div>
  7251.      </span>
  7252.    </span>
  7253.  
  7254. </div>
  7255. -->
  7256.              
  7257.  
  7258.  
  7259.    
  7260.      <b style="color:green">In stock</b>
  7261.    
  7262.  
  7263.  
  7264.  
  7265.  
  7266.  
  7267.  
  7268.  
  7269.            </div>
  7270.          
  7271.  
  7272.          
  7273.            
  7274.          
  7275.        
  7276.  
  7277.        
  7278.          <div class="productitem--description">
  7279.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7280.  
  7281.            
  7282.          </div>
  7283.        
  7284.      </div>
  7285.  
  7286.      
  7287.        
  7288.          
  7289.          
  7290.          
  7291.  
  7292.          
  7293.          
  7294.  
  7295.          
  7296.  
  7297.          
  7298.  
  7299.          <div class="productitem--actions" data-product-actions>
  7300.            <div class="productitem--listview-price">
  7301.              
  7302.  
  7303.  
  7304.  
  7305.  
  7306.  
  7307.  
  7308.  
  7309.  
  7310.  
  7311.  
  7312.  
  7313.  
  7314.  
  7315.  
  7316.  
  7317.  
  7318.  
  7319.  
  7320.  
  7321.  
  7322.  
  7323.  
  7324.  
  7325.  
  7326.  
  7327.  
  7328.  
  7329.  
  7330.  
  7331.  
  7332. <div class="price productitem__price ">
  7333.  
  7334.    <div
  7335.      class="price__compare-at visible"
  7336.      data-price-compare-container
  7337.    >
  7338.  
  7339.      
  7340.        <span class="money price__original" data-price-original></span>
  7341.      
  7342.    </div>
  7343.  
  7344.  
  7345.    
  7346.      
  7347.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7348.        
  7349.          <span class="visually-hidden">Original price</span>
  7350.          <span class="money price__compare-at--min" data-price-compare-min>
  7351.            $36.99
  7352.          </span>
  7353.          -
  7354.          <span class="visually-hidden">Original price</span>
  7355.          <span class="money price__compare-at--max" data-price-compare-max>
  7356.            $36.99
  7357.          </span>
  7358.        
  7359.      </div>
  7360.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7361.        <span class="visually-hidden">Original price</span>
  7362.        <span class="money price__compare-at--single" data-price-compare>
  7363.          
  7364.        </span>
  7365.      </div>
  7366.    
  7367.  
  7368.  
  7369.  <div class="price__current price__current--emphasize " data-price-container>
  7370.  
  7371.    
  7372.  
  7373.    
  7374.      
  7375.      
  7376.      <span class="money" data-price>
  7377.        $36.99
  7378.      </span>
  7379.    
  7380.    
  7381.  </div>
  7382.  
  7383.  
  7384.    
  7385.    <div class="price__current--hidden" data-current-price-range-hidden>
  7386.      
  7387.        <span class="money price__current--min" data-price-min>$36.99</span>
  7388.        -
  7389.        <span class="money price__current--max" data-price-max>$36.99</span>
  7390.      
  7391.    </div>
  7392.    <div class="price__current--hidden" data-current-price-hidden>
  7393.      <span class="visually-hidden">Current price</span>
  7394.      <span class="money" data-price>
  7395.        $36.99
  7396.      </span>
  7397.    </div>
  7398.  
  7399.  
  7400.  
  7401.    
  7402.    
  7403.    
  7404.    
  7405.  
  7406.    <div
  7407.      class="
  7408.        productitem__unit-price
  7409.        hidden
  7410.      "
  7411.      data-unit-price
  7412.    >
  7413.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7414.    </div>
  7415.  
  7416.  
  7417.  
  7418. </div>
  7419.  
  7420.  
  7421.            </div>
  7422.  
  7423.            <div class="productitem--listview-badge">
  7424.              
  7425.  
  7426.  
  7427.  
  7428.  
  7429.  
  7430.  
  7431.  
  7432.  
  7433.  
  7434.  
  7435.  
  7436.  
  7437.  
  7438.  
  7439.  
  7440.  
  7441.  
  7442.  
  7443.  
  7444.  
  7445.  
  7446.  
  7447.  
  7448.  
  7449.  
  7450.  
  7451.  
  7452.            </div>
  7453.  
  7454.            
  7455.              <div
  7456.                class="
  7457.                  productitem--action
  7458.                  quickshop-button
  7459.                  
  7460.                "
  7461.              >
  7462.                <button
  7463.                  class="productitem--action-trigger button-secondary"
  7464.                  data-quickshop-full
  7465.                  
  7466.                  
  7467.                  type="button"
  7468.                >
  7469.                  Quick shop
  7470.                </button>
  7471.              </div>
  7472.            
  7473.  
  7474.            
  7475.              <div
  7476.                class="
  7477.                  productitem--action
  7478.                  atc--button
  7479.                  
  7480.                "
  7481.              >
  7482.                <button
  7483.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7484.                  type="button"
  7485.                  aria-label="Add to cart"
  7486.                  
  7487.                    data-quick-buy
  7488.                  
  7489.                  data-variant-id="12583329333271"
  7490.                  
  7491.                >
  7492.                  <span class="atc-button--text">
  7493.                    Add to cart
  7494.                  </span>
  7495.                  <span class="atc-button--icon"><svg
  7496.  aria-hidden="true"
  7497.  focusable="false"
  7498.  role="presentation"
  7499.  width="26"
  7500.  height="26"
  7501.  viewBox="0 0 26 26"
  7502.  xmlns="http://www.w3.org/2000/svg"
  7503. >
  7504.  <g fill-rule="nonzero" fill="currentColor">
  7505.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  7506.  </g>
  7507. </svg></span>
  7508.                </button>
  7509.              </div>
  7510.            
  7511.          </div>
  7512.        
  7513.      
  7514.    </div>
  7515.  </div>
  7516.  
  7517.  
  7518.    <script type="application/json" data-quick-buy-settings>
  7519.      {
  7520.        "cart_redirection": true,
  7521.        "money_format": "${{amount}}"
  7522.      }
  7523.    </script>
  7524.  
  7525. </li>
  7526.    
  7527.      
  7528.  
  7529.  
  7530.  
  7531.  
  7532.  
  7533.  
  7534.  
  7535.  
  7536.  
  7537.  
  7538.  
  7539.  
  7540.  
  7541.  
  7542.  
  7543.  
  7544.  
  7545.  
  7546.  
  7547.  
  7548.  
  7549.  
  7550.  
  7551.  
  7552.  
  7553.  
  7554.  
  7555.  
  7556.  
  7557.  
  7558.  
  7559.  
  7560.    
  7561.  
  7562.  
  7563.  
  7564. <li
  7565.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7566.  data-product-item
  7567.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7568.  
  7569. >
  7570.  <div class="productitem" data-product-item-content>
  7571.    
  7572.    
  7573.    
  7574.    
  7575.  
  7576.    
  7577.  
  7578.    
  7579.  
  7580.    <div class="productitem__container">
  7581.      
  7582.  
  7583.      <div class="productitem__image-container">
  7584.        <a target="_blank"
  7585.          class="productitem--image-link"
  7586.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7587.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7588.          tabindex="-1"
  7589.          data-product-page-link
  7590.        >
  7591.          <figure
  7592.            class="productitem--image"
  7593.            data-product-item-image
  7594.            
  7595.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7596.            
  7597.          >
  7598.            
  7599.              
  7600.              
  7601.  
  7602.  
  7603.    <noscript data-rimg-noscript>
  7604.      <img loading="lazy"
  7605.        
  7606.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7607.        
  7608.  
  7609.        alt="MacBook Pro"
  7610.        data-rimg="noscript"
  7611.        srcset="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088 1x, //laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_998x998.jpg?v=1726123088 1.95x"
  7612.        class="productitem--image-primary"
  7613.        
  7614.        
  7615.      >
  7616.    </noscript>
  7617.  
  7618.  
  7619.  <img loading="lazy"
  7620.    
  7621.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7622.    
  7623.    alt="MacBook Pro"
  7624.  
  7625.    
  7626.      data-rimg="lazy"
  7627.      data-rimg-scale="1"
  7628.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7629.      data-rimg-max="1000x1000"
  7630.      data-rimg-crop="false"
  7631.      
  7632.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7633.    
  7634.  
  7635.    class="productitem--image-primary"
  7636.    
  7637.    
  7638.  >
  7639.  
  7640.  
  7641.  
  7642.  <div data-rimg-canvas></div>
  7643.  
  7644.  
  7645.            
  7646.  
  7647.            
  7648.  
  7649.  
  7650.  
  7651.  
  7652.  
  7653.  
  7654.  
  7655.  
  7656.  
  7657.  
  7658.  
  7659.  
  7660.  
  7661.  
  7662.  
  7663.  
  7664.  
  7665.  
  7666.  
  7667.  
  7668.  
  7669.  
  7670.  
  7671.  
  7672.  
  7673.  
  7674.  
  7675.          </figure>
  7676.        </a>
  7677.      </div><div class="productitem--info">
  7678.        
  7679.          
  7680.  
  7681.        
  7682.  
  7683.        
  7684.          
  7685.  
  7686.  
  7687.  
  7688.  
  7689.  
  7690.  
  7691.  
  7692.  
  7693.  
  7694.  
  7695.  
  7696.  
  7697.  
  7698.  
  7699.  
  7700.  
  7701.  
  7702.  
  7703.  
  7704.  
  7705.  
  7706.  
  7707.  
  7708.  
  7709.  
  7710.  
  7711.  
  7712.  
  7713.  
  7714.  
  7715. <div class="price productitem__price ">
  7716.  
  7717.    <div
  7718.      class="price__compare-at visible"
  7719.      data-price-compare-container
  7720.    >
  7721.  
  7722.      
  7723.        <span class="money price__original" data-price-original></span>
  7724.      
  7725.    </div>
  7726.  
  7727.  
  7728.    
  7729.      
  7730.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7731.        
  7732.          <span class="visually-hidden">Original price</span>
  7733.          <span class="money price__compare-at--min" data-price-compare-min>
  7734.            $40.98
  7735.          </span>
  7736.          -
  7737.          <span class="visually-hidden">Original price</span>
  7738.          <span class="money price__compare-at--max" data-price-compare-max>
  7739.            $40.98
  7740.          </span>
  7741.        
  7742.      </div>
  7743.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7744.        <span class="visually-hidden">Original price</span>
  7745.        <span class="money price__compare-at--single" data-price-compare>
  7746.          
  7747.        </span>
  7748.      </div>
  7749.    
  7750.  
  7751.  
  7752.  <div class="price__current price__current--emphasize " data-price-container>
  7753.  
  7754.    
  7755.  
  7756.    
  7757.      
  7758.      
  7759.      <span class="money" data-price>
  7760.        $40.98
  7761.      </span>
  7762.    
  7763.    
  7764.  </div>
  7765.  
  7766.  
  7767.    
  7768.    <div class="price__current--hidden" data-current-price-range-hidden>
  7769.      
  7770.        <span class="money price__current--min" data-price-min>$40.98</span>
  7771.        -
  7772.        <span class="money price__current--max" data-price-max>$40.98</span>
  7773.      
  7774.    </div>
  7775.    <div class="price__current--hidden" data-current-price-hidden>
  7776.      <span class="visually-hidden">Current price</span>
  7777.      <span class="money" data-price>
  7778.        $40.98
  7779.      </span>
  7780.    </div>
  7781.  
  7782.  
  7783.  
  7784.    
  7785.    
  7786.    
  7787.    
  7788.  
  7789.    <div
  7790.      class="
  7791.        productitem__unit-price
  7792.        hidden
  7793.      "
  7794.      data-unit-price
  7795.    >
  7796.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7797.    </div>
  7798.  
  7799.  
  7800.  
  7801. </div>
  7802.  
  7803.  
  7804.        
  7805.  
  7806.        <h2 class="productitem--title">
  7807.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  7808.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  7809.          </a>
  7810.        </h2>
  7811.  
  7812.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7813.        <div class="star_container 6872720015447"></div>
  7814.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7815.  
  7816.        
  7817.          
  7818.            <span class="productitem--vendor">
  7819.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  7820.            </span>
  7821.          
  7822.        
  7823.  
  7824.        
  7825.  
  7826.        
  7827.          
  7828.            <div class="productitem__stock-level">
  7829.              <!--
  7830.  
  7831.  
  7832.  
  7833.  
  7834.  
  7835.  
  7836.  
  7837. <div class="product-stock-level-wrapper" >
  7838.  
  7839.    <span class="
  7840.  product-stock-level
  7841.  product-stock-level--continue-selling
  7842.  
  7843. ">
  7844.      
  7845.  
  7846.      <span class="product-stock-level__text">
  7847.        
  7848.        <div class="product-stock-level__badge-text">
  7849.          
  7850.  
  7851.    In stock
  7852.  
  7853.  
  7854.        </div>
  7855.      </span>
  7856.    </span>
  7857.  
  7858. </div>
  7859. -->
  7860.              
  7861.  
  7862.  
  7863.    
  7864.      <b style="color:green">In stock</b>
  7865.    
  7866.  
  7867.  
  7868.  
  7869.  
  7870.  
  7871.  
  7872.  
  7873.            </div>
  7874.          
  7875.  
  7876.          
  7877.            
  7878.          
  7879.        
  7880.  
  7881.        
  7882.          <div class="productitem--description">
  7883.            <p>Plugs directly into AC outlet.
  7884. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  7885. Input: 100-240V ~ 50-60Hz
  7886. Output: 1...</p>
  7887.  
  7888.            
  7889.              <a
  7890.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7891.                class="productitem--link"
  7892.                data-product-page-link
  7893.              >
  7894.                View full details
  7895.              </a>
  7896.            
  7897.          </div>
  7898.        
  7899.      </div>
  7900.  
  7901.      
  7902.        
  7903.          
  7904.          
  7905.          
  7906.  
  7907.          
  7908.          
  7909.  
  7910.          
  7911.  
  7912.          
  7913.  
  7914.          <div class="productitem--actions" data-product-actions>
  7915.            <div class="productitem--listview-price">
  7916.              
  7917.  
  7918.  
  7919.  
  7920.  
  7921.  
  7922.  
  7923.  
  7924.  
  7925.  
  7926.  
  7927.  
  7928.  
  7929.  
  7930.  
  7931.  
  7932.  
  7933.  
  7934.  
  7935.  
  7936.  
  7937.  
  7938.  
  7939.  
  7940.  
  7941.  
  7942.  
  7943.  
  7944.  
  7945.  
  7946.  
  7947. <div class="price productitem__price ">
  7948.  
  7949.    <div
  7950.      class="price__compare-at visible"
  7951.      data-price-compare-container
  7952.    >
  7953.  
  7954.      
  7955.        <span class="money price__original" data-price-original></span>
  7956.      
  7957.    </div>
  7958.  
  7959.  
  7960.    
  7961.      
  7962.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7963.        
  7964.          <span class="visually-hidden">Original price</span>
  7965.          <span class="money price__compare-at--min" data-price-compare-min>
  7966.            $40.98
  7967.          </span>
  7968.          -
  7969.          <span class="visually-hidden">Original price</span>
  7970.          <span class="money price__compare-at--max" data-price-compare-max>
  7971.            $40.98
  7972.          </span>
  7973.        
  7974.      </div>
  7975.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7976.        <span class="visually-hidden">Original price</span>
  7977.        <span class="money price__compare-at--single" data-price-compare>
  7978.          
  7979.        </span>
  7980.      </div>
  7981.    
  7982.  
  7983.  
  7984.  <div class="price__current price__current--emphasize " data-price-container>
  7985.  
  7986.    
  7987.  
  7988.    
  7989.      
  7990.      
  7991.      <span class="money" data-price>
  7992.        $40.98
  7993.      </span>
  7994.    
  7995.    
  7996.  </div>
  7997.  
  7998.  
  7999.    
  8000.    <div class="price__current--hidden" data-current-price-range-hidden>
  8001.      
  8002.        <span class="money price__current--min" data-price-min>$40.98</span>
  8003.        -
  8004.        <span class="money price__current--max" data-price-max>$40.98</span>
  8005.      
  8006.    </div>
  8007.    <div class="price__current--hidden" data-current-price-hidden>
  8008.      <span class="visually-hidden">Current price</span>
  8009.      <span class="money" data-price>
  8010.        $40.98
  8011.      </span>
  8012.    </div>
  8013.  
  8014.  
  8015.  
  8016.    
  8017.    
  8018.    
  8019.    
  8020.  
  8021.    <div
  8022.      class="
  8023.        productitem__unit-price
  8024.        hidden
  8025.      "
  8026.      data-unit-price
  8027.    >
  8028.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8029.    </div>
  8030.  
  8031.  
  8032.  
  8033. </div>
  8034.  
  8035.  
  8036.            </div>
  8037.  
  8038.            <div class="productitem--listview-badge">
  8039.              
  8040.  
  8041.  
  8042.  
  8043.  
  8044.  
  8045.  
  8046.  
  8047.  
  8048.  
  8049.  
  8050.  
  8051.  
  8052.  
  8053.  
  8054.  
  8055.  
  8056.  
  8057.  
  8058.  
  8059.  
  8060.  
  8061.  
  8062.  
  8063.  
  8064.  
  8065.  
  8066.  
  8067.            </div>
  8068.  
  8069.            
  8070.              <div
  8071.                class="
  8072.                  productitem--action
  8073.                  quickshop-button
  8074.                  
  8075.                "
  8076.              >
  8077.                <button
  8078.                  class="productitem--action-trigger button-secondary"
  8079.                  data-quickshop-full
  8080.                  
  8081.                  
  8082.                  type="button"
  8083.                >
  8084.                  Quick shop
  8085.                </button>
  8086.              </div>
  8087.            
  8088.  
  8089.            
  8090.              <div
  8091.                class="
  8092.                  productitem--action
  8093.                  atc--button
  8094.                  
  8095.                "
  8096.              >
  8097.                <button
  8098.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8099.                  type="button"
  8100.                  aria-label="Add to cart"
  8101.                  
  8102.                    data-quick-buy
  8103.                  
  8104.                  data-variant-id="40156967370839"
  8105.                  
  8106.                >
  8107.                  <span class="atc-button--text">
  8108.                    Add to cart
  8109.                  </span>
  8110.                  <span class="atc-button--icon"><svg
  8111.  aria-hidden="true"
  8112.  focusable="false"
  8113.  role="presentation"
  8114.  width="26"
  8115.  height="26"
  8116.  viewBox="0 0 26 26"
  8117.  xmlns="http://www.w3.org/2000/svg"
  8118. >
  8119.  <g fill-rule="nonzero" fill="currentColor">
  8120.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  8121.  </g>
  8122. </svg></span>
  8123.                </button>
  8124.              </div>
  8125.            
  8126.          </div>
  8127.        
  8128.      
  8129.    </div>
  8130.  </div>
  8131.  
  8132.  
  8133.    <script type="application/json" data-quick-buy-settings>
  8134.      {
  8135.        "cart_redirection": true,
  8136.        "money_format": "${{amount}}"
  8137.      }
  8138.    </script>
  8139.  
  8140. </li>
  8141.    
  8142.      
  8143.  
  8144.  
  8145.  
  8146.  
  8147.  
  8148.  
  8149.  
  8150.  
  8151.  
  8152.  
  8153.  
  8154.  
  8155.  
  8156.  
  8157.  
  8158.  
  8159.  
  8160.  
  8161.  
  8162.  
  8163.  
  8164.  
  8165.  
  8166.  
  8167.  
  8168.  
  8169.  
  8170.  
  8171.  
  8172.  
  8173.  
  8174.  
  8175.    
  8176.  
  8177.  
  8178.  
  8179. <li
  8180.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8181.  data-product-item
  8182.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8183.  
  8184. >
  8185.  <div class="productitem" data-product-item-content>
  8186.    
  8187.    
  8188.    
  8189.    
  8190.  
  8191.    
  8192.  
  8193.    
  8194.  
  8195.    <div class="productitem__container">
  8196.      
  8197.  
  8198.      <div class="productitem__image-container">
  8199.        <a target="_blank"
  8200.          class="productitem--image-link"
  8201.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8202.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8203.          tabindex="-1"
  8204.          data-product-page-link
  8205.        >
  8206.          <figure
  8207.            class="productitem--image"
  8208.            data-product-item-image
  8209.            
  8210.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8211.            
  8212.          >
  8213.            
  8214.              
  8215.              
  8216.  
  8217.  
  8218.    <noscript data-rimg-noscript>
  8219.      <img loading="lazy"
  8220.        
  8221.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8222.        
  8223.  
  8224.        alt="15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8 - LaptopParts.ca"
  8225.        data-rimg="noscript"
  8226.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8227.        class="productitem--image-primary"
  8228.        
  8229.        
  8230.      >
  8231.    </noscript>
  8232.  
  8233.  
  8234.  <img loading="lazy"
  8235.    
  8236.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8237.    
  8238.    alt="15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8 - LaptopParts.ca"
  8239.  
  8240.    
  8241.      data-rimg="lazy"
  8242.      data-rimg-scale="1"
  8243.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8244.      data-rimg-max="500x500"
  8245.      data-rimg-crop="false"
  8246.      
  8247.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8248.    
  8249.  
  8250.    class="productitem--image-primary"
  8251.    
  8252.    
  8253.  >
  8254.  
  8255.  
  8256.  
  8257.  <div data-rimg-canvas></div>
  8258.  
  8259.  
  8260.            
  8261.  
  8262.            
  8263.  
  8264.  
  8265.  
  8266.  
  8267.  
  8268.  
  8269.  
  8270.  
  8271.  
  8272.  
  8273.  
  8274.  
  8275.  
  8276.  
  8277.  
  8278.  
  8279.  
  8280.  
  8281.  
  8282.  
  8283.  
  8284.  
  8285.  
  8286.  
  8287.  
  8288.  
  8289.  
  8290.          </figure>
  8291.        </a>
  8292.      </div><div class="productitem--info">
  8293.        
  8294.          
  8295.  
  8296.        
  8297.  
  8298.        
  8299.          
  8300.  
  8301.  
  8302.  
  8303.  
  8304.  
  8305.  
  8306.  
  8307.  
  8308.  
  8309.  
  8310.  
  8311.  
  8312.  
  8313.  
  8314.  
  8315.  
  8316.  
  8317.  
  8318.  
  8319.  
  8320.  
  8321.  
  8322.  
  8323.  
  8324.  
  8325.  
  8326.  
  8327.  
  8328.  
  8329.  
  8330. <div class="price productitem__price ">
  8331.  
  8332.    <div
  8333.      class="price__compare-at visible"
  8334.      data-price-compare-container
  8335.    >
  8336.  
  8337.      
  8338.        <span class="money price__original" data-price-original></span>
  8339.      
  8340.    </div>
  8341.  
  8342.  
  8343.    
  8344.      
  8345.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8346.        
  8347.          <span class="visually-hidden">Original price</span>
  8348.          <span class="money price__compare-at--min" data-price-compare-min>
  8349.            $253.99
  8350.          </span>
  8351.          -
  8352.          <span class="visually-hidden">Original price</span>
  8353.          <span class="money price__compare-at--max" data-price-compare-max>
  8354.            $253.99
  8355.          </span>
  8356.        
  8357.      </div>
  8358.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8359.        <span class="visually-hidden">Original price</span>
  8360.        <span class="money price__compare-at--single" data-price-compare>
  8361.          
  8362.        </span>
  8363.      </div>
  8364.    
  8365.  
  8366.  
  8367.  <div class="price__current price__current--emphasize " data-price-container>
  8368.  
  8369.    
  8370.  
  8371.    
  8372.      
  8373.      
  8374.      <span class="money" data-price>
  8375.        $253.99
  8376.      </span>
  8377.    
  8378.    
  8379.  </div>
  8380.  
  8381.  
  8382.    
  8383.    <div class="price__current--hidden" data-current-price-range-hidden>
  8384.      
  8385.        <span class="money price__current--min" data-price-min>$253.99</span>
  8386.        -
  8387.        <span class="money price__current--max" data-price-max>$253.99</span>
  8388.      
  8389.    </div>
  8390.    <div class="price__current--hidden" data-current-price-hidden>
  8391.      <span class="visually-hidden">Current price</span>
  8392.      <span class="money" data-price>
  8393.        $253.99
  8394.      </span>
  8395.    </div>
  8396.  
  8397.  
  8398.  
  8399.    
  8400.    
  8401.    
  8402.    
  8403.  
  8404.    <div
  8405.      class="
  8406.        productitem__unit-price
  8407.        hidden
  8408.      "
  8409.      data-unit-price
  8410.    >
  8411.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8412.    </div>
  8413.  
  8414.  
  8415.  
  8416. </div>
  8417.  
  8418.  
  8419.        
  8420.  
  8421.        <h2 class="productitem--title">
  8422.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8423.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8424.          </a>
  8425.        </h2>
  8426.  
  8427.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8428.        <div class="star_container 3933207593047"></div>
  8429.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8430.  
  8431.        
  8432.          
  8433.            <span class="productitem--vendor">
  8434.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8435.            </span>
  8436.          
  8437.        
  8438.  
  8439.        
  8440.  
  8441.        
  8442.          
  8443.            <div class="productitem__stock-level">
  8444.              <!--
  8445.  
  8446.  
  8447.  
  8448.  
  8449.  
  8450.  
  8451.  
  8452. <div class="product-stock-level-wrapper" >
  8453.  
  8454.    <span class="
  8455.  product-stock-level
  8456.  product-stock-level--continue-selling
  8457.  
  8458. ">
  8459.      
  8460.  
  8461.      <span class="product-stock-level__text">
  8462.        
  8463.        <div class="product-stock-level__badge-text">
  8464.          
  8465.  
  8466.    In stock
  8467.  
  8468.  
  8469.        </div>
  8470.      </span>
  8471.    </span>
  8472.  
  8473. </div>
  8474. -->
  8475.              
  8476.  
  8477.  
  8478.    
  8479.      <b style="color:green">In stock</b>
  8480.    
  8481.  
  8482.  
  8483.  
  8484.  
  8485.  
  8486.  
  8487.  
  8488.            </div>
  8489.          
  8490.  
  8491.          
  8492.            
  8493.          
  8494.        
  8495.  
  8496.        
  8497.          <div class="productitem--description">
  8498.            <p>
  8499. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8500.  
  8501. **This screen will only work if your laptop is one of the models below that ca...</p>
  8502.  
  8503.            
  8504.              <a
  8505.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8506.                class="productitem--link"
  8507.                data-product-page-link
  8508.              >
  8509.                View full details
  8510.              </a>
  8511.            
  8512.          </div>
  8513.        
  8514.      </div>
  8515.  
  8516.      
  8517.        
  8518.          
  8519.          
  8520.          
  8521.  
  8522.          
  8523.          
  8524.  
  8525.          
  8526.  
  8527.          
  8528.  
  8529.          <div class="productitem--actions" data-product-actions>
  8530.            <div class="productitem--listview-price">
  8531.              
  8532.  
  8533.  
  8534.  
  8535.  
  8536.  
  8537.  
  8538.  
  8539.  
  8540.  
  8541.  
  8542.  
  8543.  
  8544.  
  8545.  
  8546.  
  8547.  
  8548.  
  8549.  
  8550.  
  8551.  
  8552.  
  8553.  
  8554.  
  8555.  
  8556.  
  8557.  
  8558.  
  8559.  
  8560.  
  8561.  
  8562. <div class="price productitem__price ">
  8563.  
  8564.    <div
  8565.      class="price__compare-at visible"
  8566.      data-price-compare-container
  8567.    >
  8568.  
  8569.      
  8570.        <span class="money price__original" data-price-original></span>
  8571.      
  8572.    </div>
  8573.  
  8574.  
  8575.    
  8576.      
  8577.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8578.        
  8579.          <span class="visually-hidden">Original price</span>
  8580.          <span class="money price__compare-at--min" data-price-compare-min>
  8581.            $253.99
  8582.          </span>
  8583.          -
  8584.          <span class="visually-hidden">Original price</span>
  8585.          <span class="money price__compare-at--max" data-price-compare-max>
  8586.            $253.99
  8587.          </span>
  8588.        
  8589.      </div>
  8590.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8591.        <span class="visually-hidden">Original price</span>
  8592.        <span class="money price__compare-at--single" data-price-compare>
  8593.          
  8594.        </span>
  8595.      </div>
  8596.    
  8597.  
  8598.  
  8599.  <div class="price__current price__current--emphasize " data-price-container>
  8600.  
  8601.    
  8602.  
  8603.    
  8604.      
  8605.      
  8606.      <span class="money" data-price>
  8607.        $253.99
  8608.      </span>
  8609.    
  8610.    
  8611.  </div>
  8612.  
  8613.  
  8614.    
  8615.    <div class="price__current--hidden" data-current-price-range-hidden>
  8616.      
  8617.        <span class="money price__current--min" data-price-min>$253.99</span>
  8618.        -
  8619.        <span class="money price__current--max" data-price-max>$253.99</span>
  8620.      
  8621.    </div>
  8622.    <div class="price__current--hidden" data-current-price-hidden>
  8623.      <span class="visually-hidden">Current price</span>
  8624.      <span class="money" data-price>
  8625.        $253.99
  8626.      </span>
  8627.    </div>
  8628.  
  8629.  
  8630.  
  8631.    
  8632.    
  8633.    
  8634.    
  8635.  
  8636.    <div
  8637.      class="
  8638.        productitem__unit-price
  8639.        hidden
  8640.      "
  8641.      data-unit-price
  8642.    >
  8643.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8644.    </div>
  8645.  
  8646.  
  8647.  
  8648. </div>
  8649.  
  8650.  
  8651.            </div>
  8652.  
  8653.            <div class="productitem--listview-badge">
  8654.              
  8655.  
  8656.  
  8657.  
  8658.  
  8659.  
  8660.  
  8661.  
  8662.  
  8663.  
  8664.  
  8665.  
  8666.  
  8667.  
  8668.  
  8669.  
  8670.  
  8671.  
  8672.  
  8673.  
  8674.  
  8675.  
  8676.  
  8677.  
  8678.  
  8679.  
  8680.  
  8681.  
  8682.            </div>
  8683.  
  8684.            
  8685.              <div
  8686.                class="
  8687.                  productitem--action
  8688.                  quickshop-button
  8689.                  
  8690.                "
  8691.              >
  8692.                <button
  8693.                  class="productitem--action-trigger button-secondary"
  8694.                  data-quickshop-full
  8695.                  
  8696.                  
  8697.                  type="button"
  8698.                >
  8699.                  Quick shop
  8700.                </button>
  8701.              </div>
  8702.            
  8703.  
  8704.            
  8705.              <div
  8706.                class="
  8707.                  productitem--action
  8708.                  atc--button
  8709.                  
  8710.                "
  8711.              >
  8712.                <button
  8713.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8714.                  type="button"
  8715.                  aria-label="Add to cart"
  8716.                  
  8717.                    data-quick-buy
  8718.                  
  8719.                  data-variant-id="29531492974679"
  8720.                  
  8721.                >
  8722.                  <span class="atc-button--text">
  8723.                    Add to cart
  8724.                  </span>
  8725.                  <span class="atc-button--icon"><svg
  8726.  aria-hidden="true"
  8727.  focusable="false"
  8728.  role="presentation"
  8729.  width="26"
  8730.  height="26"
  8731.  viewBox="0 0 26 26"
  8732.  xmlns="http://www.w3.org/2000/svg"
  8733. >
  8734.  <g fill-rule="nonzero" fill="currentColor">
  8735.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  8736.  </g>
  8737. </svg></span>
  8738.                </button>
  8739.              </div>
  8740.            
  8741.          </div>
  8742.        
  8743.      
  8744.    </div>
  8745.  </div>
  8746.  
  8747.  
  8748.    <script type="application/json" data-quick-buy-settings>
  8749.      {
  8750.        "cart_redirection": true,
  8751.        "money_format": "${{amount}}"
  8752.      }
  8753.    </script>
  8754.  
  8755. </li>
  8756.    
  8757.      
  8758.  
  8759.  
  8760.  
  8761.  
  8762.  
  8763.  
  8764.  
  8765.  
  8766.  
  8767.  
  8768.  
  8769.  
  8770.  
  8771.  
  8772.  
  8773.  
  8774.  
  8775.  
  8776.  
  8777.  
  8778.  
  8779.  
  8780.  
  8781.  
  8782.  
  8783.  
  8784.  
  8785.  
  8786.  
  8787.  
  8788.  
  8789.  
  8790.    
  8791.  
  8792.  
  8793.  
  8794. <li
  8795.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8796.  data-product-item
  8797.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8798.  
  8799. >
  8800.  <div class="productitem" data-product-item-content>
  8801.    
  8802.    
  8803.    
  8804.    
  8805.  
  8806.    
  8807.  
  8808.    
  8809.  
  8810.    <div class="productitem__container">
  8811.      
  8812.  
  8813.      <div class="productitem__image-container">
  8814.        <a target="_blank"
  8815.          class="productitem--image-link"
  8816.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8817.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  8818.          tabindex="-1"
  8819.          data-product-page-link
  8820.        >
  8821.          <figure
  8822.            class="productitem--image"
  8823.            data-product-item-image
  8824.            
  8825.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8826.            
  8827.          >
  8828.            
  8829.              
  8830.              
  8831.  
  8832.  
  8833.    <noscript data-rimg-noscript>
  8834.      <img loading="lazy"
  8835.        
  8836.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8837.        
  8838.  
  8839.        alt="Updated alt text"
  8840.        data-rimg="noscript"
  8841.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  8842.        class="productitem--image-primary"
  8843.        
  8844.        
  8845.      >
  8846.    </noscript>
  8847.  
  8848.  
  8849.  <img loading="lazy"
  8850.    
  8851.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  8852.    
  8853.    alt="Updated alt text"
  8854.  
  8855.    
  8856.      data-rimg="lazy"
  8857.      data-rimg-scale="1"
  8858.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  8859.      data-rimg-max="500x500"
  8860.      data-rimg-crop="false"
  8861.      
  8862.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8863.    
  8864.  
  8865.    class="productitem--image-primary"
  8866.    
  8867.    
  8868.  >
  8869.  
  8870.  
  8871.  
  8872.  <div data-rimg-canvas></div>
  8873.  
  8874.  
  8875.            
  8876.  
  8877.            
  8878.  
  8879.  
  8880.  
  8881.  
  8882.  
  8883.  
  8884.  
  8885.  
  8886.  
  8887.  
  8888.  
  8889.  
  8890.  
  8891.  
  8892.  
  8893.  
  8894.  
  8895.  
  8896.  
  8897.  
  8898.  
  8899.  
  8900.  
  8901.  
  8902.  
  8903.  
  8904.  
  8905.          </figure>
  8906.        </a>
  8907.      </div><div class="productitem--info">
  8908.        
  8909.          
  8910.  
  8911.        
  8912.  
  8913.        
  8914.          
  8915.  
  8916.  
  8917.  
  8918.  
  8919.  
  8920.  
  8921.  
  8922.  
  8923.  
  8924.  
  8925.  
  8926.  
  8927.  
  8928.  
  8929.  
  8930.  
  8931.  
  8932.  
  8933.  
  8934.  
  8935.  
  8936.  
  8937.  
  8938.  
  8939.  
  8940.  
  8941.  
  8942.  
  8943.  
  8944.  
  8945. <div class="price productitem__price ">
  8946.  
  8947.    <div
  8948.      class="price__compare-at visible"
  8949.      data-price-compare-container
  8950.    >
  8951.  
  8952.      
  8953.        <span class="money price__original" data-price-original></span>
  8954.      
  8955.    </div>
  8956.  
  8957.  
  8958.    
  8959.      
  8960.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8961.        
  8962.          <span class="visually-hidden">Original price</span>
  8963.          <span class="money price__compare-at--min" data-price-compare-min>
  8964.            $53.97
  8965.          </span>
  8966.          -
  8967.          <span class="visually-hidden">Original price</span>
  8968.          <span class="money price__compare-at--max" data-price-compare-max>
  8969.            $53.97
  8970.          </span>
  8971.        
  8972.      </div>
  8973.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8974.        <span class="visually-hidden">Original price</span>
  8975.        <span class="money price__compare-at--single" data-price-compare>
  8976.          
  8977.        </span>
  8978.      </div>
  8979.    
  8980.  
  8981.  
  8982.  <div class="price__current price__current--emphasize " data-price-container>
  8983.  
  8984.    
  8985.  
  8986.    
  8987.      
  8988.      
  8989.      <span class="money" data-price>
  8990.        $53.97
  8991.      </span>
  8992.    
  8993.    
  8994.  </div>
  8995.  
  8996.  
  8997.    
  8998.    <div class="price__current--hidden" data-current-price-range-hidden>
  8999.      
  9000.        <span class="money price__current--min" data-price-min>$53.97</span>
  9001.        -
  9002.        <span class="money price__current--max" data-price-max>$53.97</span>
  9003.      
  9004.    </div>
  9005.    <div class="price__current--hidden" data-current-price-hidden>
  9006.      <span class="visually-hidden">Current price</span>
  9007.      <span class="money" data-price>
  9008.        $53.97
  9009.      </span>
  9010.    </div>
  9011.  
  9012.  
  9013.  
  9014.    
  9015.    
  9016.    
  9017.    
  9018.  
  9019.    <div
  9020.      class="
  9021.        productitem__unit-price
  9022.        hidden
  9023.      "
  9024.      data-unit-price
  9025.    >
  9026.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9027.    </div>
  9028.  
  9029.  
  9030.  
  9031. </div>
  9032.  
  9033.  
  9034.        
  9035.  
  9036.        <h2 class="productitem--title">
  9037.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9038.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9039.          </a>
  9040.        </h2>
  9041.  
  9042.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9043.        <div class="star_container 6872273420375"></div>
  9044.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9045.  
  9046.        
  9047.          
  9048.            <span class="productitem--vendor">
  9049.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9050.            </span>
  9051.          
  9052.        
  9053.  
  9054.        
  9055.  
  9056.        
  9057.          
  9058.            <div class="productitem__stock-level">
  9059.              <!--
  9060.  
  9061.  
  9062.  
  9063.  
  9064.  
  9065.  
  9066.  
  9067. <div class="product-stock-level-wrapper" >
  9068.  
  9069.    <span class="
  9070.  product-stock-level
  9071.  product-stock-level--continue-selling
  9072.  
  9073. ">
  9074.      
  9075.  
  9076.      <span class="product-stock-level__text">
  9077.        
  9078.        <div class="product-stock-level__badge-text">
  9079.          
  9080.  
  9081.    In stock
  9082.  
  9083.  
  9084.        </div>
  9085.      </span>
  9086.    </span>
  9087.  
  9088. </div>
  9089. -->
  9090.              
  9091.  
  9092.  
  9093.    
  9094.      <b style="color:green">In stock</b>
  9095.    
  9096.  
  9097.  
  9098.  
  9099.  
  9100.  
  9101.  
  9102.  
  9103.            </div>
  9104.          
  9105.  
  9106.          
  9107.            
  9108.          
  9109.        
  9110.  
  9111.        
  9112.          <div class="productitem--description">
  9113.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9114. Includes power cord.
  9115.  
  9116. Input: 100-240V ~ 50-60Hz
  9117. Output: 19V –...</p>
  9118.  
  9119.            
  9120.              <a
  9121.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9122.                class="productitem--link"
  9123.                data-product-page-link
  9124.              >
  9125.                View full details
  9126.              </a>
  9127.            
  9128.          </div>
  9129.        
  9130.      </div>
  9131.  
  9132.      
  9133.        
  9134.          
  9135.          
  9136.          
  9137.  
  9138.          
  9139.          
  9140.  
  9141.          
  9142.  
  9143.          
  9144.  
  9145.          <div class="productitem--actions" data-product-actions>
  9146.            <div class="productitem--listview-price">
  9147.              
  9148.  
  9149.  
  9150.  
  9151.  
  9152.  
  9153.  
  9154.  
  9155.  
  9156.  
  9157.  
  9158.  
  9159.  
  9160.  
  9161.  
  9162.  
  9163.  
  9164.  
  9165.  
  9166.  
  9167.  
  9168.  
  9169.  
  9170.  
  9171.  
  9172.  
  9173.  
  9174.  
  9175.  
  9176.  
  9177.  
  9178. <div class="price productitem__price ">
  9179.  
  9180.    <div
  9181.      class="price__compare-at visible"
  9182.      data-price-compare-container
  9183.    >
  9184.  
  9185.      
  9186.        <span class="money price__original" data-price-original></span>
  9187.      
  9188.    </div>
  9189.  
  9190.  
  9191.    
  9192.      
  9193.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9194.        
  9195.          <span class="visually-hidden">Original price</span>
  9196.          <span class="money price__compare-at--min" data-price-compare-min>
  9197.            $53.97
  9198.          </span>
  9199.          -
  9200.          <span class="visually-hidden">Original price</span>
  9201.          <span class="money price__compare-at--max" data-price-compare-max>
  9202.            $53.97
  9203.          </span>
  9204.        
  9205.      </div>
  9206.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9207.        <span class="visually-hidden">Original price</span>
  9208.        <span class="money price__compare-at--single" data-price-compare>
  9209.          
  9210.        </span>
  9211.      </div>
  9212.    
  9213.  
  9214.  
  9215.  <div class="price__current price__current--emphasize " data-price-container>
  9216.  
  9217.    
  9218.  
  9219.    
  9220.      
  9221.      
  9222.      <span class="money" data-price>
  9223.        $53.97
  9224.      </span>
  9225.    
  9226.    
  9227.  </div>
  9228.  
  9229.  
  9230.    
  9231.    <div class="price__current--hidden" data-current-price-range-hidden>
  9232.      
  9233.        <span class="money price__current--min" data-price-min>$53.97</span>
  9234.        -
  9235.        <span class="money price__current--max" data-price-max>$53.97</span>
  9236.      
  9237.    </div>
  9238.    <div class="price__current--hidden" data-current-price-hidden>
  9239.      <span class="visually-hidden">Current price</span>
  9240.      <span class="money" data-price>
  9241.        $53.97
  9242.      </span>
  9243.    </div>
  9244.  
  9245.  
  9246.  
  9247.    
  9248.    
  9249.    
  9250.    
  9251.  
  9252.    <div
  9253.      class="
  9254.        productitem__unit-price
  9255.        hidden
  9256.      "
  9257.      data-unit-price
  9258.    >
  9259.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9260.    </div>
  9261.  
  9262.  
  9263.  
  9264. </div>
  9265.  
  9266.  
  9267.            </div>
  9268.  
  9269.            <div class="productitem--listview-badge">
  9270.              
  9271.  
  9272.  
  9273.  
  9274.  
  9275.  
  9276.  
  9277.  
  9278.  
  9279.  
  9280.  
  9281.  
  9282.  
  9283.  
  9284.  
  9285.  
  9286.  
  9287.  
  9288.  
  9289.  
  9290.  
  9291.  
  9292.  
  9293.  
  9294.  
  9295.  
  9296.  
  9297.  
  9298.            </div>
  9299.  
  9300.            
  9301.              <div
  9302.                class="
  9303.                  productitem--action
  9304.                  quickshop-button
  9305.                  
  9306.                "
  9307.              >
  9308.                <button
  9309.                  class="productitem--action-trigger button-secondary"
  9310.                  data-quickshop-full
  9311.                  
  9312.                  
  9313.                  type="button"
  9314.                >
  9315.                  Quick shop
  9316.                </button>
  9317.              </div>
  9318.            
  9319.  
  9320.            
  9321.              <div
  9322.                class="
  9323.                  productitem--action
  9324.                  atc--button
  9325.                  
  9326.                "
  9327.              >
  9328.                <button
  9329.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9330.                  type="button"
  9331.                  aria-label="Add to cart"
  9332.                  
  9333.                    data-quick-buy
  9334.                  
  9335.                  data-variant-id="40155858534487"
  9336.                  
  9337.                >
  9338.                  <span class="atc-button--text">
  9339.                    Add to cart
  9340.                  </span>
  9341.                  <span class="atc-button--icon"><svg
  9342.  aria-hidden="true"
  9343.  focusable="false"
  9344.  role="presentation"
  9345.  width="26"
  9346.  height="26"
  9347.  viewBox="0 0 26 26"
  9348.  xmlns="http://www.w3.org/2000/svg"
  9349. >
  9350.  <g fill-rule="nonzero" fill="currentColor">
  9351.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  9352.  </g>
  9353. </svg></span>
  9354.                </button>
  9355.              </div>
  9356.            
  9357.          </div>
  9358.        
  9359.      
  9360.    </div>
  9361.  </div>
  9362.  
  9363.  
  9364.    <script type="application/json" data-quick-buy-settings>
  9365.      {
  9366.        "cart_redirection": true,
  9367.        "money_format": "${{amount}}"
  9368.      }
  9369.    </script>
  9370.  
  9371. </li>
  9372.    
  9373.      
  9374.  
  9375.  
  9376.  
  9377.  
  9378.  
  9379.  
  9380.  
  9381.  
  9382.  
  9383.  
  9384.  
  9385.  
  9386.  
  9387.  
  9388.  
  9389.  
  9390.  
  9391.  
  9392.  
  9393.  
  9394.  
  9395.  
  9396.  
  9397.  
  9398.  
  9399.  
  9400.  
  9401.  
  9402.  
  9403.  
  9404.  
  9405.  
  9406.    
  9407.  
  9408.  
  9409.  
  9410. <li
  9411.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9412.  data-product-item
  9413.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9414.  
  9415. >
  9416.  <div class="productitem" data-product-item-content>
  9417.    
  9418.    
  9419.    
  9420.    
  9421.  
  9422.    
  9423.  
  9424.    
  9425.  
  9426.    <div class="productitem__container">
  9427.      
  9428.  
  9429.      <div class="productitem__image-container">
  9430.        <a target="_blank"
  9431.          class="productitem--image-link"
  9432.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9433.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9434.          tabindex="-1"
  9435.          data-product-page-link
  9436.        >
  9437.          <figure
  9438.            class="productitem--image"
  9439.            data-product-item-image
  9440.            
  9441.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9442.            
  9443.          >
  9444.            
  9445.              
  9446.              
  9447.  
  9448.  
  9449.    <noscript data-rimg-noscript>
  9450.      <img loading="lazy"
  9451.        
  9452.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9453.        
  9454.  
  9455.        alt="2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable - LaptopParts.ca"
  9456.        data-rimg="noscript"
  9457.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9458.        class="productitem--image-primary"
  9459.        
  9460.        
  9461.      >
  9462.    </noscript>
  9463.  
  9464.  
  9465.  <img loading="lazy"
  9466.    
  9467.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9468.    
  9469.    alt="2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable - LaptopParts.ca"
  9470.  
  9471.    
  9472.      data-rimg="lazy"
  9473.      data-rimg-scale="1"
  9474.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9475.      data-rimg-max="800x800"
  9476.      data-rimg-crop="false"
  9477.      
  9478.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9479.    
  9480.  
  9481.    class="productitem--image-primary"
  9482.    
  9483.    
  9484.  >
  9485.  
  9486.  
  9487.  
  9488.  <div data-rimg-canvas></div>
  9489.  
  9490.  
  9491.            
  9492.  
  9493.            
  9494.  
  9495.  
  9496.  
  9497.  
  9498.  
  9499.  
  9500.  
  9501.  
  9502.  
  9503.  
  9504.  
  9505.  
  9506.  
  9507.  
  9508.  
  9509.  
  9510.  
  9511.  
  9512.  
  9513.  
  9514.  
  9515.  
  9516.  
  9517.  
  9518.  
  9519.  
  9520.  
  9521.          </figure>
  9522.        </a>
  9523.      </div><div class="productitem--info">
  9524.        
  9525.          
  9526.  
  9527.        
  9528.  
  9529.        
  9530.          
  9531.  
  9532.  
  9533.  
  9534.  
  9535.  
  9536.  
  9537.  
  9538.  
  9539.  
  9540.  
  9541.  
  9542.  
  9543.  
  9544.  
  9545.  
  9546.  
  9547.  
  9548.  
  9549.  
  9550.  
  9551.  
  9552.  
  9553.  
  9554.  
  9555.  
  9556.  
  9557.  
  9558.  
  9559.  
  9560.  
  9561. <div class="price productitem__price ">
  9562.  
  9563.    <div
  9564.      class="price__compare-at visible"
  9565.      data-price-compare-container
  9566.    >
  9567.  
  9568.      
  9569.        <span class="money price__original" data-price-original></span>
  9570.      
  9571.    </div>
  9572.  
  9573.  
  9574.    
  9575.      
  9576.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9577.        
  9578.          <span class="visually-hidden">Original price</span>
  9579.          <span class="money price__compare-at--min" data-price-compare-min>
  9580.            $38.99
  9581.          </span>
  9582.          -
  9583.          <span class="visually-hidden">Original price</span>
  9584.          <span class="money price__compare-at--max" data-price-compare-max>
  9585.            $38.99
  9586.          </span>
  9587.        
  9588.      </div>
  9589.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9590.        <span class="visually-hidden">Original price</span>
  9591.        <span class="money price__compare-at--single" data-price-compare>
  9592.          
  9593.        </span>
  9594.      </div>
  9595.    
  9596.  
  9597.  
  9598.  <div class="price__current price__current--emphasize " data-price-container>
  9599.  
  9600.    
  9601.  
  9602.    
  9603.      
  9604.      
  9605.      <span class="money" data-price>
  9606.        $38.99
  9607.      </span>
  9608.    
  9609.    
  9610.  </div>
  9611.  
  9612.  
  9613.    
  9614.    <div class="price__current--hidden" data-current-price-range-hidden>
  9615.      
  9616.        <span class="money price__current--min" data-price-min>$38.99</span>
  9617.        -
  9618.        <span class="money price__current--max" data-price-max>$38.99</span>
  9619.      
  9620.    </div>
  9621.    <div class="price__current--hidden" data-current-price-hidden>
  9622.      <span class="visually-hidden">Current price</span>
  9623.      <span class="money" data-price>
  9624.        $38.99
  9625.      </span>
  9626.    </div>
  9627.  
  9628.  
  9629.  
  9630.    
  9631.    
  9632.    
  9633.    
  9634.  
  9635.    <div
  9636.      class="
  9637.        productitem__unit-price
  9638.        hidden
  9639.      "
  9640.      data-unit-price
  9641.    >
  9642.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9643.    </div>
  9644.  
  9645.  
  9646.  
  9647. </div>
  9648.  
  9649.  
  9650.        
  9651.  
  9652.        <h2 class="productitem--title">
  9653.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9654.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9655.          </a>
  9656.        </h2>
  9657.  
  9658.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9659.        <div class="star_container 4421896306775"></div>
  9660.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9661.  
  9662.        
  9663.          
  9664.            <span class="productitem--vendor">
  9665.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9666.            </span>
  9667.          
  9668.        
  9669.  
  9670.        
  9671.  
  9672.        
  9673.          
  9674.            <div class="productitem__stock-level">
  9675.              <!--
  9676.  
  9677.  
  9678.  
  9679.  
  9680.  
  9681.  
  9682.  
  9683. <div class="product-stock-level-wrapper" >
  9684.  
  9685.    <span class="
  9686.  product-stock-level
  9687.  product-stock-level--continue-selling
  9688.  
  9689. ">
  9690.      
  9691.  
  9692.      <span class="product-stock-level__text">
  9693.        
  9694.        <div class="product-stock-level__badge-text">
  9695.          
  9696.  
  9697.    In stock
  9698.  
  9699.  
  9700.        </div>
  9701.      </span>
  9702.    </span>
  9703.  
  9704. </div>
  9705. -->
  9706.              
  9707.  
  9708.  
  9709.    
  9710.      <b style="color:green">In stock</b>
  9711.    
  9712.  
  9713.  
  9714.  
  9715.  
  9716.  
  9717.  
  9718.  
  9719.            </div>
  9720.          
  9721.  
  9722.          
  9723.            
  9724.          
  9725.        
  9726.  
  9727.        
  9728.          <div class="productitem--description">
  9729.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  9730.  
  9731.            
  9732.          </div>
  9733.        
  9734.      </div>
  9735.  
  9736.      
  9737.        
  9738.          
  9739.          
  9740.          
  9741.  
  9742.          
  9743.          
  9744.  
  9745.          
  9746.  
  9747.          
  9748.  
  9749.          <div class="productitem--actions" data-product-actions>
  9750.            <div class="productitem--listview-price">
  9751.              
  9752.  
  9753.  
  9754.  
  9755.  
  9756.  
  9757.  
  9758.  
  9759.  
  9760.  
  9761.  
  9762.  
  9763.  
  9764.  
  9765.  
  9766.  
  9767.  
  9768.  
  9769.  
  9770.  
  9771.  
  9772.  
  9773.  
  9774.  
  9775.  
  9776.  
  9777.  
  9778.  
  9779.  
  9780.  
  9781.  
  9782. <div class="price productitem__price ">
  9783.  
  9784.    <div
  9785.      class="price__compare-at visible"
  9786.      data-price-compare-container
  9787.    >
  9788.  
  9789.      
  9790.        <span class="money price__original" data-price-original></span>
  9791.      
  9792.    </div>
  9793.  
  9794.  
  9795.    
  9796.      
  9797.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9798.        
  9799.          <span class="visually-hidden">Original price</span>
  9800.          <span class="money price__compare-at--min" data-price-compare-min>
  9801.            $38.99
  9802.          </span>
  9803.          -
  9804.          <span class="visually-hidden">Original price</span>
  9805.          <span class="money price__compare-at--max" data-price-compare-max>
  9806.            $38.99
  9807.          </span>
  9808.        
  9809.      </div>
  9810.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9811.        <span class="visually-hidden">Original price</span>
  9812.        <span class="money price__compare-at--single" data-price-compare>
  9813.          
  9814.        </span>
  9815.      </div>
  9816.    
  9817.  
  9818.  
  9819.  <div class="price__current price__current--emphasize " data-price-container>
  9820.  
  9821.    
  9822.  
  9823.    
  9824.      
  9825.      
  9826.      <span class="money" data-price>
  9827.        $38.99
  9828.      </span>
  9829.    
  9830.    
  9831.  </div>
  9832.  
  9833.  
  9834.    
  9835.    <div class="price__current--hidden" data-current-price-range-hidden>
  9836.      
  9837.        <span class="money price__current--min" data-price-min>$38.99</span>
  9838.        -
  9839.        <span class="money price__current--max" data-price-max>$38.99</span>
  9840.      
  9841.    </div>
  9842.    <div class="price__current--hidden" data-current-price-hidden>
  9843.      <span class="visually-hidden">Current price</span>
  9844.      <span class="money" data-price>
  9845.        $38.99
  9846.      </span>
  9847.    </div>
  9848.  
  9849.  
  9850.  
  9851.    
  9852.    
  9853.    
  9854.    
  9855.  
  9856.    <div
  9857.      class="
  9858.        productitem__unit-price
  9859.        hidden
  9860.      "
  9861.      data-unit-price
  9862.    >
  9863.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9864.    </div>
  9865.  
  9866.  
  9867.  
  9868. </div>
  9869.  
  9870.  
  9871.            </div>
  9872.  
  9873.            <div class="productitem--listview-badge">
  9874.              
  9875.  
  9876.  
  9877.  
  9878.  
  9879.  
  9880.  
  9881.  
  9882.  
  9883.  
  9884.  
  9885.  
  9886.  
  9887.  
  9888.  
  9889.  
  9890.  
  9891.  
  9892.  
  9893.  
  9894.  
  9895.  
  9896.  
  9897.  
  9898.  
  9899.  
  9900.  
  9901.  
  9902.            </div>
  9903.  
  9904.            
  9905.              <div
  9906.                class="
  9907.                  productitem--action
  9908.                  quickshop-button
  9909.                  
  9910.                "
  9911.              >
  9912.                <button
  9913.                  class="productitem--action-trigger button-secondary"
  9914.                  data-quickshop-full
  9915.                  
  9916.                  
  9917.                  type="button"
  9918.                >
  9919.                  Quick shop
  9920.                </button>
  9921.              </div>
  9922.            
  9923.  
  9924.            
  9925.              <div
  9926.                class="
  9927.                  productitem--action
  9928.                  atc--button
  9929.                  
  9930.                "
  9931.              >
  9932.                <button
  9933.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9934.                  type="button"
  9935.                  aria-label="Add to cart"
  9936.                  
  9937.                    data-quick-buy
  9938.                  
  9939.                  data-variant-id="31550087692375"
  9940.                  
  9941.                >
  9942.                  <span class="atc-button--text">
  9943.                    Add to cart
  9944.                  </span>
  9945.                  <span class="atc-button--icon"><svg
  9946.  aria-hidden="true"
  9947.  focusable="false"
  9948.  role="presentation"
  9949.  width="26"
  9950.  height="26"
  9951.  viewBox="0 0 26 26"
  9952.  xmlns="http://www.w3.org/2000/svg"
  9953. >
  9954.  <g fill-rule="nonzero" fill="currentColor">
  9955.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  9956.  </g>
  9957. </svg></span>
  9958.                </button>
  9959.              </div>
  9960.            
  9961.          </div>
  9962.        
  9963.      
  9964.    </div>
  9965.  </div>
  9966.  
  9967.  
  9968.    <script type="application/json" data-quick-buy-settings>
  9969.      {
  9970.        "cart_redirection": true,
  9971.        "money_format": "${{amount}}"
  9972.      }
  9973.    </script>
  9974.  
  9975. </li>
  9976.    
  9977.      
  9978.  
  9979.  
  9980.  
  9981.  
  9982.  
  9983.  
  9984.  
  9985.  
  9986.  
  9987.  
  9988.  
  9989.  
  9990.  
  9991.  
  9992.  
  9993.  
  9994.  
  9995.  
  9996.  
  9997.  
  9998.  
  9999.  
  10000.  
  10001.  
  10002.  
  10003.  
  10004.  
  10005.  
  10006.  
  10007.  
  10008.  
  10009.  
  10010.    
  10011.  
  10012.  
  10013.  
  10014. <li
  10015.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10016.  data-product-item
  10017.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10018.  
  10019. >
  10020.  <div class="productitem" data-product-item-content>
  10021.    
  10022.    
  10023.    
  10024.    
  10025.  
  10026.    
  10027.  
  10028.    
  10029.  
  10030.    <div class="productitem__container">
  10031.      
  10032.  
  10033.      <div class="productitem__image-container">
  10034.        <a target="_blank"
  10035.          class="productitem--image-link"
  10036.          href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10037.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10038.          tabindex="-1"
  10039.          data-product-page-link
  10040.        >
  10041.          <figure
  10042.            class="productitem--image"
  10043.            data-product-item-image
  10044.            
  10045.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10046.            
  10047.          >
  10048.            
  10049.              
  10050.              
  10051.  
  10052.  
  10053.    <noscript data-rimg-noscript>
  10054.      <img loading="lazy"
  10055.        
  10056.          src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10057.        
  10058.  
  10059.        alt="15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0 - LaptopParts.ca"
  10060.        data-rimg="noscript"
  10061.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
  10062.        class="productitem--image-primary"
  10063.        
  10064.        
  10065.      >
  10066.    </noscript>
  10067.  
  10068.  
  10069.  <img loading="lazy"
  10070.    
  10071.      src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
  10072.    
  10073.    alt="15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0 - LaptopParts.ca"
  10074.  
  10075.    
  10076.      data-rimg="lazy"
  10077.      data-rimg-scale="1"
  10078.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
  10079.      data-rimg-max="500x500"
  10080.      data-rimg-crop="false"
  10081.      
  10082.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  10083.    
  10084.  
  10085.    class="productitem--image-primary"
  10086.    
  10087.    
  10088.  >
  10089.  
  10090.  
  10091.  
  10092.  <div data-rimg-canvas></div>
  10093.  
  10094.  
  10095.            
  10096.  
  10097.            
  10098.  
  10099.  
  10100.  
  10101.  
  10102.  
  10103.  
  10104.  
  10105.  
  10106.  
  10107.  
  10108.  
  10109.  
  10110.  
  10111.  
  10112.  
  10113.  
  10114.  
  10115.  
  10116.  
  10117.  
  10118.  
  10119.  
  10120.  
  10121.  
  10122.  
  10123.  
  10124.  
  10125.          </figure>
  10126.        </a>
  10127.      </div><div class="productitem--info">
  10128.        
  10129.          
  10130.  
  10131.        
  10132.  
  10133.        
  10134.          
  10135.  
  10136.  
  10137.  
  10138.  
  10139.  
  10140.  
  10141.  
  10142.  
  10143.  
  10144.  
  10145.  
  10146.  
  10147.  
  10148.  
  10149.  
  10150.  
  10151.  
  10152.  
  10153.  
  10154.  
  10155.  
  10156.  
  10157.  
  10158.  
  10159.  
  10160.  
  10161.  
  10162.  
  10163.  
  10164.  
  10165. <div class="price productitem__price ">
  10166.  
  10167.    <div
  10168.      class="price__compare-at visible"
  10169.      data-price-compare-container
  10170.    >
  10171.  
  10172.      
  10173.        <span class="money price__original" data-price-original></span>
  10174.      
  10175.    </div>
  10176.  
  10177.  
  10178.    
  10179.      
  10180.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10181.        
  10182.          <span class="visually-hidden">Original price</span>
  10183.          <span class="money price__compare-at--min" data-price-compare-min>
  10184.            $253.99
  10185.          </span>
  10186.          -
  10187.          <span class="visually-hidden">Original price</span>
  10188.          <span class="money price__compare-at--max" data-price-compare-max>
  10189.            $253.99
  10190.          </span>
  10191.        
  10192.      </div>
  10193.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10194.        <span class="visually-hidden">Original price</span>
  10195.        <span class="money price__compare-at--single" data-price-compare>
  10196.          
  10197.        </span>
  10198.      </div>
  10199.    
  10200.  
  10201.  
  10202.  <div class="price__current price__current--emphasize " data-price-container>
  10203.  
  10204.    
  10205.  
  10206.    
  10207.      
  10208.      
  10209.      <span class="money" data-price>
  10210.        $253.99
  10211.      </span>
  10212.    
  10213.    
  10214.  </div>
  10215.  
  10216.  
  10217.    
  10218.    <div class="price__current--hidden" data-current-price-range-hidden>
  10219.      
  10220.        <span class="money price__current--min" data-price-min>$253.99</span>
  10221.        -
  10222.        <span class="money price__current--max" data-price-max>$253.99</span>
  10223.      
  10224.    </div>
  10225.    <div class="price__current--hidden" data-current-price-hidden>
  10226.      <span class="visually-hidden">Current price</span>
  10227.      <span class="money" data-price>
  10228.        $253.99
  10229.      </span>
  10230.    </div>
  10231.  
  10232.  
  10233.  
  10234.    
  10235.    
  10236.    
  10237.    
  10238.  
  10239.    <div
  10240.      class="
  10241.        productitem__unit-price
  10242.        hidden
  10243.      "
  10244.      data-unit-price
  10245.    >
  10246.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  10247.    </div>
  10248.  
  10249.  
  10250.  
  10251. </div>
  10252.  
  10253.  
  10254.        
  10255.  
  10256.        <h2 class="productitem--title">
  10257.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
  10258.            15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
  10259.          </a>
  10260.        </h2>
  10261.  
  10262.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10263.        <div class="star_container 3929811091543"></div>
  10264.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10265.  
  10266.        
  10267.          
  10268.            <span class="productitem--vendor">
  10269.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  10270.            </span>
  10271.          
  10272.        
  10273.  
  10274.        
  10275.  
  10276.        
  10277.          
  10278.            <div class="productitem__stock-level">
  10279.              <!--
  10280.  
  10281.  
  10282.  
  10283.  
  10284.  
  10285.  
  10286.  
  10287. <div class="product-stock-level-wrapper" >
  10288.  
  10289.    <span class="
  10290.  product-stock-level
  10291.  product-stock-level--continue-selling
  10292.  
  10293. ">
  10294.      
  10295.  
  10296.      <span class="product-stock-level__text">
  10297.        
  10298.        <div class="product-stock-level__badge-text">
  10299.          
  10300.  
  10301.    In stock
  10302.  
  10303.  
  10304.        </div>
  10305.      </span>
  10306.    </span>
  10307.  
  10308. </div>
  10309. -->
  10310.              
  10311.  
  10312.  
  10313.    
  10314.      <b style="color:green">In stock</b>
  10315.    
  10316.  
  10317.  
  10318.  
  10319.  
  10320.  
  10321.  
  10322.  
  10323.            </div>
  10324.          
  10325.  
  10326.          
  10327.            
  10328.          
  10329.        
  10330.  
  10331.        
  10332.          <div class="productitem--description">
  10333.            <p>
  10334. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  10335.  
  10336. **This screen will only work if your laptop is one of the models below that ca...</p>
  10337.  
  10338.            
  10339.              <a
  10340.                href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
  10341.                class="productitem--link"
  10342.                data-product-page-link
  10343.              >
  10344.                View full details
  10345.              </a>
  10346.            
  10347.          </div>
  10348.        
  10349.      </div>
  10350.  
  10351.      
  10352.        
  10353.          
  10354.          
  10355.          
  10356.  
  10357.          
  10358.          
  10359.  
  10360.          
  10361.  
  10362.          
  10363.  
  10364.          <div class="productitem--actions" data-product-actions>
  10365.            <div class="productitem--listview-price">
  10366.              
  10367.  
  10368.  
  10369.  
  10370.  
  10371.  
  10372.  
  10373.  
  10374.  
  10375.  
  10376.  
  10377.  
  10378.  
  10379.  
  10380.  
  10381.  
  10382.  
  10383.  
  10384.  
  10385.  
  10386.  
  10387.  
  10388.  
  10389.  
  10390.  
  10391.  
  10392.  
  10393.  
  10394.  
  10395.  
  10396.  
  10397. <div class="price productitem__price ">
  10398.  
  10399.    <div
  10400.      class="price__compare-at visible"
  10401.      data-price-compare-container
  10402.    >
  10403.  
  10404.      
  10405.        <span class="money price__original" data-price-original></span>
  10406.      
  10407.    </div>
  10408.  
  10409.  
  10410.    
  10411.      
  10412.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10413.        
  10414.          <span class="visually-hidden">Original price</span>
  10415.          <span class="money price__compare-at--min" data-price-compare-min>
  10416.            $253.99
  10417.          </span>
  10418.          -
  10419.          <span class="visually-hidden">Original price</span>
  10420.          <span class="money price__compare-at--max" data-price-compare-max>
  10421.            $253.99
  10422.          </span>
  10423.        
  10424.      </div>
  10425.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10426.        <span class="visually-hidden">Original price</span>
  10427.        <span class="money price__compare-at--single" data-price-compare>
  10428.          
  10429.        </span>
  10430.      </div>
  10431.    
  10432.  
  10433.  
  10434.  <div class="price__current price__current--emphasize " data-price-container>
  10435.  
  10436.    
  10437.  
  10438.    
  10439.      
  10440.      
  10441.      <span class="money" data-price>
  10442.        $253.99
  10443.      </span>
  10444.    
  10445.    
  10446.  </div>
  10447.  
  10448.  
  10449.    
  10450.    <div class="price__current--hidden" data-current-price-range-hidden>
  10451.      
  10452.        <span class="money price__current--min" data-price-min>$253.99</span>
  10453.        -
  10454.        <span class="money price__current--max" data-price-max>$253.99</span>
  10455.      
  10456.    </div>
  10457.    <div class="price__current--hidden" data-current-price-hidden>
  10458.      <span class="visually-hidden">Current price</span>
  10459.      <span class="money" data-price>
  10460.        $253.99
  10461.      </span>
  10462.    </div>
  10463.  
  10464.  
  10465.  
  10466.    
  10467.    
  10468.    
  10469.    
  10470.  
  10471.    <div
  10472.      class="
  10473.        productitem__unit-price
  10474.        hidden
  10475.      "
  10476.      data-unit-price
  10477.    >
  10478.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  10479.    </div>
  10480.  
  10481.  
  10482.  
  10483. </div>
  10484.  
  10485.  
  10486.            </div>
  10487.  
  10488.            <div class="productitem--listview-badge">
  10489.              
  10490.  
  10491.  
  10492.  
  10493.  
  10494.  
  10495.  
  10496.  
  10497.  
  10498.  
  10499.  
  10500.  
  10501.  
  10502.  
  10503.  
  10504.  
  10505.  
  10506.  
  10507.  
  10508.  
  10509.  
  10510.  
  10511.  
  10512.  
  10513.  
  10514.  
  10515.  
  10516.  
  10517.            </div>
  10518.  
  10519.            
  10520.              <div
  10521.                class="
  10522.                  productitem--action
  10523.                  quickshop-button
  10524.                  
  10525.                "
  10526.              >
  10527.                <button
  10528.                  class="productitem--action-trigger button-secondary"
  10529.                  data-quickshop-full
  10530.                  
  10531.                  
  10532.                  type="button"
  10533.                >
  10534.                  Quick shop
  10535.                </button>
  10536.              </div>
  10537.            
  10538.  
  10539.            
  10540.              <div
  10541.                class="
  10542.                  productitem--action
  10543.                  atc--button
  10544.                  
  10545.                "
  10546.              >
  10547.                <button
  10548.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10549.                  type="button"
  10550.                  aria-label="Add to cart"
  10551.                  
  10552.                    data-quick-buy
  10553.                  
  10554.                  data-variant-id="29564283224151"
  10555.                  
  10556.                >
  10557.                  <span class="atc-button--text">
  10558.                    Add to cart
  10559.                  </span>
  10560.                  <span class="atc-button--icon"><svg
  10561.  aria-hidden="true"
  10562.  focusable="false"
  10563.  role="presentation"
  10564.  width="26"
  10565.  height="26"
  10566.  viewBox="0 0 26 26"
  10567.  xmlns="http://www.w3.org/2000/svg"
  10568. >
  10569.  <g fill-rule="nonzero" fill="currentColor">
  10570.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  10571.  </g>
  10572. </svg></span>
  10573.                </button>
  10574.              </div>
  10575.            
  10576.          </div>
  10577.        
  10578.      
  10579.    </div>
  10580.  </div>
  10581.  
  10582.  
  10583.    <script type="application/json" data-quick-buy-settings>
  10584.      {
  10585.        "cart_redirection": true,
  10586.        "money_format": "${{amount}}"
  10587.      }
  10588.    </script>
  10589.  
  10590. </li>
  10591.    
  10592.      
  10593.  
  10594.  
  10595.  
  10596.  
  10597.  
  10598.  
  10599.  
  10600.  
  10601.  
  10602.  
  10603.  
  10604.  
  10605.  
  10606.  
  10607.  
  10608.  
  10609.  
  10610.  
  10611.  
  10612.  
  10613.  
  10614.  
  10615.  
  10616.  
  10617.  
  10618.  
  10619.  
  10620.  
  10621.  
  10622.  
  10623.  
  10624.  
  10625.    
  10626.  
  10627.  
  10628.  
  10629. <li
  10630.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  10631.  data-product-item
  10632.  data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10633.  
  10634. >
  10635.  <div class="productitem" data-product-item-content>
  10636.    
  10637.    
  10638.    
  10639.    
  10640.  
  10641.    
  10642.  
  10643.    
  10644.  
  10645.    <div class="productitem__container">
  10646.      
  10647.  
  10648.      <div class="productitem__image-container">
  10649.        <a target="_blank"
  10650.          class="productitem--image-link"
  10651.          href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10652.          aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10653.          tabindex="-1"
  10654.          data-product-page-link
  10655.        >
  10656.          <figure
  10657.            class="productitem--image"
  10658.            data-product-item-image
  10659.            
  10660.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  10661.            
  10662.          >
  10663.            
  10664.              
  10665.              
  10666.  
  10667.  
  10668.    <noscript data-rimg-noscript>
  10669.      <img loading="lazy"
  10670.        
  10671.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10672.        
  10673.  
  10674.        alt="5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  10675.        data-rimg="noscript"
  10676.        srcset="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007 1x, //laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_599x599.jpg?v=1648053007 1.17x"
  10677.        class="productitem--image-primary"
  10678.        
  10679.        
  10680.      >
  10681.    </noscript>
  10682.  
  10683.  
  10684.  <img loading="lazy"
  10685.    
  10686.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
  10687.    
  10688.    alt="5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug - LaptopParts.ca"
  10689.  
  10690.    
  10691.      data-rimg="lazy"
  10692.      data-rimg-scale="1"
  10693.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
  10694.      data-rimg-max="600x600"
  10695.      data-rimg-crop="false"
  10696.      
  10697.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  10698.    
  10699.  
  10700.    class="productitem--image-primary"
  10701.    
  10702.    
  10703.  >
  10704.  
  10705.  
  10706.  
  10707.  <div data-rimg-canvas></div>
  10708.  
  10709.  
  10710.            
  10711.  
  10712.            
  10713.  
  10714.  
  10715.  
  10716.  
  10717.  
  10718.  
  10719.  
  10720.  
  10721.  
  10722.  
  10723.  
  10724.  
  10725.  
  10726.  
  10727.  
  10728.  
  10729.  
  10730.  
  10731.  
  10732.  
  10733.  
  10734.  
  10735.  
  10736.  
  10737.  
  10738.  
  10739.  
  10740.          </figure>
  10741.        </a>
  10742.      </div><div class="productitem--info">
  10743.        
  10744.          
  10745.  
  10746.        
  10747.  
  10748.        
  10749.          
  10750.  
  10751.  
  10752.  
  10753.  
  10754.  
  10755.  
  10756.  
  10757.  
  10758.  
  10759.  
  10760.  
  10761.  
  10762.  
  10763.  
  10764.  
  10765.  
  10766.  
  10767.  
  10768.  
  10769.  
  10770.  
  10771.  
  10772.  
  10773.  
  10774.  
  10775.  
  10776.  
  10777.  
  10778.  
  10779.  
  10780. <div class="price productitem__price ">
  10781.  
  10782.    <div
  10783.      class="price__compare-at visible"
  10784.      data-price-compare-container
  10785.    >
  10786.  
  10787.      
  10788.        <span class="money price__original" data-price-original></span>
  10789.      
  10790.    </div>
  10791.  
  10792.  
  10793.    
  10794.      
  10795.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10796.        
  10797.          <span class="visually-hidden">Original price</span>
  10798.          <span class="money price__compare-at--min" data-price-compare-min>
  10799.            $38.99
  10800.          </span>
  10801.          -
  10802.          <span class="visually-hidden">Original price</span>
  10803.          <span class="money price__compare-at--max" data-price-compare-max>
  10804.            $38.99
  10805.          </span>
  10806.        
  10807.      </div>
  10808.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10809.        <span class="visually-hidden">Original price</span>
  10810.        <span class="money price__compare-at--single" data-price-compare>
  10811.          
  10812.        </span>
  10813.      </div>
  10814.    
  10815.  
  10816.  
  10817.  <div class="price__current price__current--emphasize " data-price-container>
  10818.  
  10819.    
  10820.  
  10821.    
  10822.      
  10823.      
  10824.      <span class="money" data-price>
  10825.        $38.99
  10826.      </span>
  10827.    
  10828.    
  10829.  </div>
  10830.  
  10831.  
  10832.    
  10833.    <div class="price__current--hidden" data-current-price-range-hidden>
  10834.      
  10835.        <span class="money price__current--min" data-price-min>$38.99</span>
  10836.        -
  10837.        <span class="money price__current--max" data-price-max>$38.99</span>
  10838.      
  10839.    </div>
  10840.    <div class="price__current--hidden" data-current-price-hidden>
  10841.      <span class="visually-hidden">Current price</span>
  10842.      <span class="money" data-price>
  10843.        $38.99
  10844.      </span>
  10845.    </div>
  10846.  
  10847.  
  10848.  
  10849.    
  10850.    
  10851.    
  10852.    
  10853.  
  10854.    <div
  10855.      class="
  10856.        productitem__unit-price
  10857.        hidden
  10858.      "
  10859.      data-unit-price
  10860.    >
  10861.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  10862.    </div>
  10863.  
  10864.  
  10865.  
  10866. </div>
  10867.  
  10868.  
  10869.        
  10870.  
  10871.        <h2 class="productitem--title">
  10872.          <a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  10873.            5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  10874.          </a>
  10875.        </h2>
  10876.  
  10877.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  10878.        <div class="star_container 3483509915735"></div>
  10879.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  10880.  
  10881.        
  10882.          
  10883.            <span class="productitem--vendor">
  10884.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  10885.            </span>
  10886.          
  10887.        
  10888.  
  10889.        
  10890.  
  10891.        
  10892.          
  10893.            <div class="productitem__stock-level">
  10894.              <!--
  10895.  
  10896.  
  10897.  
  10898.  
  10899.  
  10900.  
  10901.  
  10902. <div class="product-stock-level-wrapper" >
  10903.  
  10904.    <span class="
  10905.  product-stock-level
  10906.  product-stock-level--continue-selling
  10907.  
  10908. ">
  10909.      
  10910.  
  10911.      <span class="product-stock-level__text">
  10912.        
  10913.        <div class="product-stock-level__badge-text">
  10914.          
  10915.  
  10916.    In stock
  10917.  
  10918.  
  10919.        </div>
  10920.      </span>
  10921.    </span>
  10922.  
  10923. </div>
  10924. -->
  10925.              
  10926.  
  10927.  
  10928.    
  10929.      <b style="color:green">In stock</b>
  10930.    
  10931.  
  10932.  
  10933.  
  10934.  
  10935.  
  10936.  
  10937.  
  10938.            </div>
  10939.          
  10940.  
  10941.          
  10942.            
  10943.          
  10944.        
  10945.  
  10946.        
  10947.          <div class="productitem--description">
  10948.            <p>Plugs directly into AC outlet.
  10949.  
  10950. Input: 100-240V ~ 50-60Hz
  10951. Output: 12V – 1.5A 18W
  10952. Connector Tip: mini USB
  10953. Colour: Black
  10954.  
  10955. Compatible Part #s: KP.01...</p>
  10956.  
  10957.            
  10958.              <a
  10959.                href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  10960.                class="productitem--link"
  10961.                data-product-page-link
  10962.              >
  10963.                View full details
  10964.              </a>
  10965.            
  10966.          </div>
  10967.        
  10968.      </div>
  10969.  
  10970.      
  10971.        
  10972.          
  10973.          
  10974.          
  10975.  
  10976.          
  10977.          
  10978.  
  10979.          
  10980.  
  10981.          
  10982.  
  10983.          <div class="productitem--actions" data-product-actions>
  10984.            <div class="productitem--listview-price">
  10985.              
  10986.  
  10987.  
  10988.  
  10989.  
  10990.  
  10991.  
  10992.  
  10993.  
  10994.  
  10995.  
  10996.  
  10997.  
  10998.  
  10999.  
  11000.  
  11001.  
  11002.  
  11003.  
  11004.  
  11005.  
  11006.  
  11007.  
  11008.  
  11009.  
  11010.  
  11011.  
  11012.  
  11013.  
  11014.  
  11015.  
  11016. <div class="price productitem__price ">
  11017.  
  11018.    <div
  11019.      class="price__compare-at visible"
  11020.      data-price-compare-container
  11021.    >
  11022.  
  11023.      
  11024.        <span class="money price__original" data-price-original></span>
  11025.      
  11026.    </div>
  11027.  
  11028.  
  11029.    
  11030.      
  11031.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11032.        
  11033.          <span class="visually-hidden">Original price</span>
  11034.          <span class="money price__compare-at--min" data-price-compare-min>
  11035.            $38.99
  11036.          </span>
  11037.          -
  11038.          <span class="visually-hidden">Original price</span>
  11039.          <span class="money price__compare-at--max" data-price-compare-max>
  11040.            $38.99
  11041.          </span>
  11042.        
  11043.      </div>
  11044.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11045.        <span class="visually-hidden">Original price</span>
  11046.        <span class="money price__compare-at--single" data-price-compare>
  11047.          
  11048.        </span>
  11049.      </div>
  11050.    
  11051.  
  11052.  
  11053.  <div class="price__current price__current--emphasize " data-price-container>
  11054.  
  11055.    
  11056.  
  11057.    
  11058.      
  11059.      
  11060.      <span class="money" data-price>
  11061.        $38.99
  11062.      </span>
  11063.    
  11064.    
  11065.  </div>
  11066.  
  11067.  
  11068.    
  11069.    <div class="price__current--hidden" data-current-price-range-hidden>
  11070.      
  11071.        <span class="money price__current--min" data-price-min>$38.99</span>
  11072.        -
  11073.        <span class="money price__current--max" data-price-max>$38.99</span>
  11074.      
  11075.    </div>
  11076.    <div class="price__current--hidden" data-current-price-hidden>
  11077.      <span class="visually-hidden">Current price</span>
  11078.      <span class="money" data-price>
  11079.        $38.99
  11080.      </span>
  11081.    </div>
  11082.  
  11083.  
  11084.  
  11085.    
  11086.    
  11087.    
  11088.    
  11089.  
  11090.    <div
  11091.      class="
  11092.        productitem__unit-price
  11093.        hidden
  11094.      "
  11095.      data-unit-price
  11096.    >
  11097.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  11098.    </div>
  11099.  
  11100.  
  11101.  
  11102. </div>
  11103.  
  11104.  
  11105.            </div>
  11106.  
  11107.            <div class="productitem--listview-badge">
  11108.              
  11109.  
  11110.  
  11111.  
  11112.  
  11113.  
  11114.  
  11115.  
  11116.  
  11117.  
  11118.  
  11119.  
  11120.  
  11121.  
  11122.  
  11123.  
  11124.  
  11125.  
  11126.  
  11127.  
  11128.  
  11129.  
  11130.  
  11131.  
  11132.  
  11133.  
  11134.  
  11135.  
  11136.            </div>
  11137.  
  11138.            
  11139.              <div
  11140.                class="
  11141.                  productitem--action
  11142.                  quickshop-button
  11143.                  
  11144.                "
  11145.              >
  11146.                <button
  11147.                  class="productitem--action-trigger button-secondary"
  11148.                  data-quickshop-full
  11149.                  
  11150.                  
  11151.                  type="button"
  11152.                >
  11153.                  Quick shop
  11154.                </button>
  11155.              </div>
  11156.            
  11157.  
  11158.            
  11159.              <div
  11160.                class="
  11161.                  productitem--action
  11162.                  atc--button
  11163.                  
  11164.                "
  11165.              >
  11166.                <button
  11167.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11168.                  type="button"
  11169.                  aria-label="Add to cart"
  11170.                  
  11171.                    data-quick-buy
  11172.                  
  11173.                  data-variant-id="39666212831319"
  11174.                  
  11175.                >
  11176.                  <span class="atc-button--text">
  11177.                    Add to cart
  11178.                  </span>
  11179.                  <span class="atc-button--icon"><svg
  11180.  aria-hidden="true"
  11181.  focusable="false"
  11182.  role="presentation"
  11183.  width="26"
  11184.  height="26"
  11185.  viewBox="0 0 26 26"
  11186.  xmlns="http://www.w3.org/2000/svg"
  11187. >
  11188.  <g fill-rule="nonzero" fill="currentColor">
  11189.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  11190.  </g>
  11191. </svg></span>
  11192.                </button>
  11193.              </div>
  11194.            
  11195.          </div>
  11196.        
  11197.      
  11198.    </div>
  11199.  </div>
  11200.  
  11201.  
  11202.    <script type="application/json" data-quick-buy-settings>
  11203.      {
  11204.        "cart_redirection": true,
  11205.        "money_format": "${{amount}}"
  11206.      }
  11207.    </script>
  11208.  
  11209. </li>
  11210.    
  11211.      
  11212.  
  11213.  
  11214.  
  11215.  
  11216.  
  11217.  
  11218.  
  11219.  
  11220.  
  11221.  
  11222.  
  11223.  
  11224.  
  11225.  
  11226.  
  11227.  
  11228.  
  11229.  
  11230.  
  11231.  
  11232.  
  11233.  
  11234.  
  11235.  
  11236.  
  11237.  
  11238.  
  11239.  
  11240.  
  11241.  
  11242.  
  11243.  
  11244.    
  11245.  
  11246.  
  11247.  
  11248. <li
  11249.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11250.  data-product-item
  11251.  data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11252.  
  11253. >
  11254.  <div class="productitem" data-product-item-content>
  11255.    
  11256.    
  11257.    
  11258.    
  11259.  
  11260.    
  11261.  
  11262.    
  11263.  
  11264.    <div class="productitem__container">
  11265.      
  11266.  
  11267.      <div class="productitem__image-container">
  11268.        <a target="_blank"
  11269.          class="productitem--image-link"
  11270.          href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11271.          aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11272.          tabindex="-1"
  11273.          data-product-page-link
  11274.        >
  11275.          <figure
  11276.            class="productitem--image"
  11277.            data-product-item-image
  11278.            
  11279.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11280.            
  11281.          >
  11282.            
  11283.              
  11284.              
  11285.  
  11286.  
  11287.    <noscript data-rimg-noscript>
  11288.      <img loading="lazy"
  11289.        
  11290.          src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11291.        
  11292.  
  11293.        alt="5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A - LaptopParts.ca"
  11294.        data-rimg="noscript"
  11295.        srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
  11296.        class="productitem--image-primary"
  11297.        
  11298.        
  11299.      >
  11300.    </noscript>
  11301.  
  11302.  
  11303.  <img loading="lazy"
  11304.    
  11305.      src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
  11306.    
  11307.    alt="5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A - LaptopParts.ca"
  11308.  
  11309.    
  11310.      data-rimg="lazy"
  11311.      data-rimg-scale="1"
  11312.      data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
  11313.      data-rimg-max="500x500"
  11314.      data-rimg-crop="false"
  11315.      
  11316.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  11317.    
  11318.  
  11319.    class="productitem--image-primary"
  11320.    
  11321.    
  11322.  >
  11323.  
  11324.  
  11325.  
  11326.  <div data-rimg-canvas></div>
  11327.  
  11328.  
  11329.            
  11330.  
  11331.            
  11332.  
  11333.  
  11334.  
  11335.  
  11336.  
  11337.  
  11338.  
  11339.  
  11340.  
  11341.  
  11342.  
  11343.  
  11344.  
  11345.  
  11346.  
  11347.  
  11348.  
  11349.  
  11350.  
  11351.  
  11352.  
  11353.  
  11354.  
  11355.  
  11356.  
  11357.  
  11358.  
  11359.          </figure>
  11360.        </a>
  11361.      </div><div class="productitem--info">
  11362.        
  11363.          
  11364.  
  11365.        
  11366.  
  11367.        
  11368.          
  11369.  
  11370.  
  11371.  
  11372.  
  11373.  
  11374.  
  11375.  
  11376.  
  11377.  
  11378.  
  11379.  
  11380.  
  11381.  
  11382.  
  11383.  
  11384.  
  11385.  
  11386.  
  11387.  
  11388.  
  11389.  
  11390.  
  11391.  
  11392.  
  11393.  
  11394.  
  11395.  
  11396.  
  11397.  
  11398.  
  11399. <div class="price productitem__price ">
  11400.  
  11401.    <div
  11402.      class="price__compare-at visible"
  11403.      data-price-compare-container
  11404.    >
  11405.  
  11406.      
  11407.        <span class="money price__original" data-price-original></span>
  11408.      
  11409.    </div>
  11410.  
  11411.  
  11412.    
  11413.      
  11414.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11415.        
  11416.          <span class="visually-hidden">Original price</span>
  11417.          <span class="money price__compare-at--min" data-price-compare-min>
  11418.            $106.99
  11419.          </span>
  11420.          -
  11421.          <span class="visually-hidden">Original price</span>
  11422.          <span class="money price__compare-at--max" data-price-compare-max>
  11423.            $106.99
  11424.          </span>
  11425.        
  11426.      </div>
  11427.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11428.        <span class="visually-hidden">Original price</span>
  11429.        <span class="money price__compare-at--single" data-price-compare>
  11430.          
  11431.        </span>
  11432.      </div>
  11433.    
  11434.  
  11435.  
  11436.  <div class="price__current price__current--emphasize " data-price-container>
  11437.  
  11438.    
  11439.  
  11440.    
  11441.      
  11442.      
  11443.      <span class="money" data-price>
  11444.        $106.99
  11445.      </span>
  11446.    
  11447.    
  11448.  </div>
  11449.  
  11450.  
  11451.    
  11452.    <div class="price__current--hidden" data-current-price-range-hidden>
  11453.      
  11454.        <span class="money price__current--min" data-price-min>$106.99</span>
  11455.        -
  11456.        <span class="money price__current--max" data-price-max>$106.99</span>
  11457.      
  11458.    </div>
  11459.    <div class="price__current--hidden" data-current-price-hidden>
  11460.      <span class="visually-hidden">Current price</span>
  11461.      <span class="money" data-price>
  11462.        $106.99
  11463.      </span>
  11464.    </div>
  11465.  
  11466.  
  11467.  
  11468.    
  11469.    
  11470.    
  11471.    
  11472.  
  11473.    <div
  11474.      class="
  11475.        productitem__unit-price
  11476.        hidden
  11477.      "
  11478.      data-unit-price
  11479.    >
  11480.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  11481.    </div>
  11482.  
  11483.  
  11484.  
  11485. </div>
  11486.  
  11487.  
  11488.        
  11489.  
  11490.        <h2 class="productitem--title">
  11491.          <a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
  11492.            5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
  11493.          </a>
  11494.        </h2>
  11495.  
  11496.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  11497.        <div class="star_container 592337698839"></div>
  11498.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  11499.  
  11500.        
  11501.          
  11502.            <span class="productitem--vendor">
  11503.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  11504.            </span>
  11505.          
  11506.        
  11507.  
  11508.        
  11509.  
  11510.        
  11511.          
  11512.            <div class="productitem__stock-level">
  11513.              <!--
  11514.  
  11515.  
  11516.  
  11517.  
  11518.  
  11519.  
  11520.  
  11521. <div class="product-stock-level-wrapper" >
  11522.  
  11523.    <span class="
  11524.  product-stock-level
  11525.  product-stock-level--continue-selling
  11526.  
  11527. ">
  11528.      
  11529.  
  11530.      <span class="product-stock-level__text">
  11531.        
  11532.        <div class="product-stock-level__badge-text">
  11533.          
  11534.  
  11535.    In stock
  11536.  
  11537.  
  11538.        </div>
  11539.      </span>
  11540.    </span>
  11541.  
  11542. </div>
  11543. -->
  11544.              
  11545.  
  11546.  
  11547.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  11548.  
  11549.  
  11550.  
  11551.  
  11552.            </div>
  11553.          
  11554.  
  11555.          
  11556.            
  11557.          
  11558.        
  11559.  
  11560.        
  11561.          <div class="productitem--description">
  11562.            <p>
  11563. Description: 5 slot printhead for select HP printers. This item is refurbished.  Compatible Part #'s: CB326-30002, CN642A.  Compatible Models: HP ...</p>
  11564.  
  11565.            
  11566.              <a
  11567.                href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
  11568.                class="productitem--link"
  11569.                data-product-page-link
  11570.              >
  11571.                View full details
  11572.              </a>
  11573.            
  11574.          </div>
  11575.        
  11576.      </div>
  11577.  
  11578.      
  11579.        
  11580.          
  11581.          
  11582.          
  11583.  
  11584.          
  11585.          
  11586.  
  11587.          
  11588.  
  11589.          
  11590.  
  11591.          <div class="productitem--actions" data-product-actions>
  11592.            <div class="productitem--listview-price">
  11593.              
  11594.  
  11595.  
  11596.  
  11597.  
  11598.  
  11599.  
  11600.  
  11601.  
  11602.  
  11603.  
  11604.  
  11605.  
  11606.  
  11607.  
  11608.  
  11609.  
  11610.  
  11611.  
  11612.  
  11613.  
  11614.  
  11615.  
  11616.  
  11617.  
  11618.  
  11619.  
  11620.  
  11621.  
  11622.  
  11623.  
  11624. <div class="price productitem__price ">
  11625.  
  11626.    <div
  11627.      class="price__compare-at visible"
  11628.      data-price-compare-container
  11629.    >
  11630.  
  11631.      
  11632.        <span class="money price__original" data-price-original></span>
  11633.      
  11634.    </div>
  11635.  
  11636.  
  11637.    
  11638.      
  11639.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  11640.        
  11641.          <span class="visually-hidden">Original price</span>
  11642.          <span class="money price__compare-at--min" data-price-compare-min>
  11643.            $106.99
  11644.          </span>
  11645.          -
  11646.          <span class="visually-hidden">Original price</span>
  11647.          <span class="money price__compare-at--max" data-price-compare-max>
  11648.            $106.99
  11649.          </span>
  11650.        
  11651.      </div>
  11652.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  11653.        <span class="visually-hidden">Original price</span>
  11654.        <span class="money price__compare-at--single" data-price-compare>
  11655.          
  11656.        </span>
  11657.      </div>
  11658.    
  11659.  
  11660.  
  11661.  <div class="price__current price__current--emphasize " data-price-container>
  11662.  
  11663.    
  11664.  
  11665.    
  11666.      
  11667.      
  11668.      <span class="money" data-price>
  11669.        $106.99
  11670.      </span>
  11671.    
  11672.    
  11673.  </div>
  11674.  
  11675.  
  11676.    
  11677.    <div class="price__current--hidden" data-current-price-range-hidden>
  11678.      
  11679.        <span class="money price__current--min" data-price-min>$106.99</span>
  11680.        -
  11681.        <span class="money price__current--max" data-price-max>$106.99</span>
  11682.      
  11683.    </div>
  11684.    <div class="price__current--hidden" data-current-price-hidden>
  11685.      <span class="visually-hidden">Current price</span>
  11686.      <span class="money" data-price>
  11687.        $106.99
  11688.      </span>
  11689.    </div>
  11690.  
  11691.  
  11692.  
  11693.    
  11694.    
  11695.    
  11696.    
  11697.  
  11698.    <div
  11699.      class="
  11700.        productitem__unit-price
  11701.        hidden
  11702.      "
  11703.      data-unit-price
  11704.    >
  11705.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  11706.    </div>
  11707.  
  11708.  
  11709.  
  11710. </div>
  11711.  
  11712.  
  11713.            </div>
  11714.  
  11715.            <div class="productitem--listview-badge">
  11716.              
  11717.  
  11718.  
  11719.  
  11720.  
  11721.  
  11722.  
  11723.  
  11724.  
  11725.  
  11726.  
  11727.  
  11728.  
  11729.  
  11730.  
  11731.  
  11732.  
  11733.  
  11734.  
  11735.  
  11736.  
  11737.  
  11738.  
  11739.  
  11740.  
  11741.  
  11742.  
  11743.  
  11744.            </div>
  11745.  
  11746.            
  11747.              <div
  11748.                class="
  11749.                  productitem--action
  11750.                  quickshop-button
  11751.                  
  11752.                "
  11753.              >
  11754.                <button
  11755.                  class="productitem--action-trigger button-secondary"
  11756.                  data-quickshop-full
  11757.                  
  11758.                  
  11759.                  type="button"
  11760.                >
  11761.                  Quick shop
  11762.                </button>
  11763.              </div>
  11764.            
  11765.  
  11766.            
  11767.              <div
  11768.                class="
  11769.                  productitem--action
  11770.                  atc--button
  11771.                  
  11772.                "
  11773.              >
  11774.                <button
  11775.                  class="productitem--action-trigger productitem--action-atc button-primary"
  11776.                  type="button"
  11777.                  aria-label="Add to cart"
  11778.                  
  11779.                    data-quick-buy
  11780.                  
  11781.                  data-variant-id="6936707596311"
  11782.                  
  11783.                >
  11784.                  <span class="atc-button--text">
  11785.                    Add to cart
  11786.                  </span>
  11787.                  <span class="atc-button--icon"><svg
  11788.  aria-hidden="true"
  11789.  focusable="false"
  11790.  role="presentation"
  11791.  width="26"
  11792.  height="26"
  11793.  viewBox="0 0 26 26"
  11794.  xmlns="http://www.w3.org/2000/svg"
  11795. >
  11796.  <g fill-rule="nonzero" fill="currentColor">
  11797.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  11798.  </g>
  11799. </svg></span>
  11800.                </button>
  11801.              </div>
  11802.            
  11803.          </div>
  11804.        
  11805.      
  11806.    </div>
  11807.  </div>
  11808.  
  11809.  
  11810.    <script type="application/json" data-quick-buy-settings>
  11811.      {
  11812.        "cart_redirection": true,
  11813.        "money_format": "${{amount}}"
  11814.      }
  11815.    </script>
  11816.  
  11817. </li>
  11818.    
  11819.      
  11820.  
  11821.  
  11822.  
  11823.  
  11824.  
  11825.  
  11826.  
  11827.  
  11828.  
  11829.  
  11830.  
  11831.  
  11832.  
  11833.  
  11834.  
  11835.  
  11836.  
  11837.  
  11838.  
  11839.  
  11840.  
  11841.  
  11842.  
  11843.  
  11844.  
  11845.  
  11846.  
  11847.  
  11848.  
  11849.  
  11850.  
  11851.  
  11852.    
  11853.  
  11854.  
  11855.  
  11856. <li
  11857.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  11858.  data-product-item
  11859.  data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11860.  
  11861. >
  11862.  <div class="productitem" data-product-item-content>
  11863.    
  11864.    
  11865.    
  11866.    
  11867.  
  11868.    
  11869.  
  11870.    
  11871.  
  11872.    <div class="productitem__container">
  11873.      
  11874.  
  11875.      <div class="productitem__image-container">
  11876.        <a target="_blank"
  11877.          class="productitem--image-link"
  11878.          href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11879.          aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
  11880.          tabindex="-1"
  11881.          data-product-page-link
  11882.        >
  11883.          <figure
  11884.            class="productitem--image"
  11885.            data-product-item-image
  11886.            
  11887.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  11888.            
  11889.          >
  11890.            
  11891.              
  11892.              
  11893.  
  11894.  
  11895.    <noscript data-rimg-noscript>
  11896.      <img loading="lazy"
  11897.        
  11898.          src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11899.        
  11900.  
  11901.        alt="500GB 7mm 2.5&quot; 7200RPM Laptop Hard Drive for Lenovo - LaptopParts.ca"
  11902.        data-rimg="noscript"
  11903.        srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
  11904.        class="productitem--image-primary"
  11905.        
  11906.        
  11907.      >
  11908.    </noscript>
  11909.  
  11910.  
  11911.  <img loading="lazy"
  11912.    
  11913.      src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
  11914.    
  11915.    alt="500GB 7mm 2.5&quot; 7200RPM Laptop Hard Drive for Lenovo - LaptopParts.ca"
  11916.  
  11917.    
  11918.      data-rimg="lazy"
  11919.      data-rimg-scale="1"
  11920.      data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
  11921.      data-rimg-max="1000x1000"
  11922.      data-rimg-crop="false"
  11923.      
  11924.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  11925.    
  11926.  
  11927.    class="productitem--image-primary"
  11928.    
  11929.    
  11930.  >
  11931.  
  11932.  
  11933.  
  11934.  <div data-rimg-canvas></div>
  11935.  
  11936.  
  11937.            
  11938.  
  11939.            
  11940.  
  11941.  
  11942.  
  11943.  
  11944.  
  11945.  
  11946.  
  11947.  
  11948.  
  11949.  
  11950.  
  11951.  
  11952.  
  11953.  
  11954.  
  11955.  
  11956.  
  11957.  
  11958.  
  11959.  
  11960.  
  11961.  
  11962.  
  11963.  
  11964.  
  11965.  
  11966.  
  11967.          </figure>
  11968.        </a>
  11969.      </div><div class="productitem--info">
  11970.        
  11971.          
  11972.  
  11973.        
  11974.  
  11975.        
  11976.          
  11977.  
  11978.  
  11979.  
  11980.  
  11981.  
  11982.  
  11983.  
  11984.  
  11985.  
  11986.  
  11987.  
  11988.  
  11989.  
  11990.  
  11991.  
  11992.  
  11993.  
  11994.  
  11995.  
  11996.  
  11997.  
  11998.  
  11999.  
  12000.  
  12001.  
  12002.  
  12003.  
  12004.  
  12005.  
  12006.  
  12007. <div class="price productitem__price ">
  12008.  
  12009.    <div
  12010.      class="price__compare-at visible"
  12011.      data-price-compare-container
  12012.    >
  12013.  
  12014.      
  12015.        <span class="money price__original" data-price-original></span>
  12016.      
  12017.    </div>
  12018.  
  12019.  
  12020.    
  12021.      
  12022.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12023.        
  12024.          <span class="visually-hidden">Original price</span>
  12025.          <span class="money price__compare-at--min" data-price-compare-min>
  12026.            $62.99
  12027.          </span>
  12028.          -
  12029.          <span class="visually-hidden">Original price</span>
  12030.          <span class="money price__compare-at--max" data-price-compare-max>
  12031.            $62.99
  12032.          </span>
  12033.        
  12034.      </div>
  12035.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12036.        <span class="visually-hidden">Original price</span>
  12037.        <span class="money price__compare-at--single" data-price-compare>
  12038.          
  12039.        </span>
  12040.      </div>
  12041.    
  12042.  
  12043.  
  12044.  <div class="price__current price__current--emphasize " data-price-container>
  12045.  
  12046.    
  12047.  
  12048.    
  12049.      
  12050.      
  12051.      <span class="money" data-price>
  12052.        $62.99
  12053.      </span>
  12054.    
  12055.    
  12056.  </div>
  12057.  
  12058.  
  12059.    
  12060.    <div class="price__current--hidden" data-current-price-range-hidden>
  12061.      
  12062.        <span class="money price__current--min" data-price-min>$62.99</span>
  12063.        -
  12064.        <span class="money price__current--max" data-price-max>$62.99</span>
  12065.      
  12066.    </div>
  12067.    <div class="price__current--hidden" data-current-price-hidden>
  12068.      <span class="visually-hidden">Current price</span>
  12069.      <span class="money" data-price>
  12070.        $62.99
  12071.      </span>
  12072.    </div>
  12073.  
  12074.  
  12075.  
  12076.    
  12077.    
  12078.    
  12079.    
  12080.  
  12081.    <div
  12082.      class="
  12083.        productitem__unit-price
  12084.        hidden
  12085.      "
  12086.      data-unit-price
  12087.    >
  12088.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  12089.    </div>
  12090.  
  12091.  
  12092.  
  12093. </div>
  12094.  
  12095.  
  12096.        
  12097.  
  12098.        <h2 class="productitem--title">
  12099.          <a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
  12100.            500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
  12101.          </a>
  12102.        </h2>
  12103.  
  12104.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12105.        <div class="star_container 1362179063831"></div>
  12106.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12107.  
  12108.        
  12109.          
  12110.            <span class="productitem--vendor">
  12111.              <a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
  12112.            </span>
  12113.          
  12114.        
  12115.  
  12116.        
  12117.  
  12118.        
  12119.          
  12120.            <div class="productitem__stock-level">
  12121.              <!--
  12122.  
  12123.  
  12124.  
  12125.  
  12126.  
  12127.  
  12128.  
  12129. <div class="product-stock-level-wrapper" >
  12130.  
  12131.    <span class="
  12132.  product-stock-level
  12133.  product-stock-level--continue-selling
  12134.  
  12135. ">
  12136.      
  12137.  
  12138.      <span class="product-stock-level__text">
  12139.        
  12140.        <div class="product-stock-level__badge-text">
  12141.          
  12142.  
  12143.    In stock
  12144.  
  12145.  
  12146.        </div>
  12147.      </span>
  12148.    </span>
  12149.  
  12150. </div>
  12151. -->
  12152.              
  12153.  
  12154.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12155.  
  12156.  
  12157.  
  12158.  
  12159.  
  12160.  
  12161.  
  12162.            </div>
  12163.          
  12164.  
  12165.          
  12166.            
  12167.          
  12168.        
  12169.  
  12170.        
  12171.          <div class="productitem--description">
  12172.            <p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
  12173.  
  12174.            
  12175.          </div>
  12176.        
  12177.      </div>
  12178.  
  12179.      
  12180.        
  12181.          
  12182.          
  12183.          
  12184.  
  12185.          
  12186.          
  12187.  
  12188.          
  12189.  
  12190.          
  12191.  
  12192.          <div class="productitem--actions" data-product-actions>
  12193.            <div class="productitem--listview-price">
  12194.              
  12195.  
  12196.  
  12197.  
  12198.  
  12199.  
  12200.  
  12201.  
  12202.  
  12203.  
  12204.  
  12205.  
  12206.  
  12207.  
  12208.  
  12209.  
  12210.  
  12211.  
  12212.  
  12213.  
  12214.  
  12215.  
  12216.  
  12217.  
  12218.  
  12219.  
  12220.  
  12221.  
  12222.  
  12223.  
  12224.  
  12225. <div class="price productitem__price ">
  12226.  
  12227.    <div
  12228.      class="price__compare-at visible"
  12229.      data-price-compare-container
  12230.    >
  12231.  
  12232.      
  12233.        <span class="money price__original" data-price-original></span>
  12234.      
  12235.    </div>
  12236.  
  12237.  
  12238.    
  12239.      
  12240.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12241.        
  12242.          <span class="visually-hidden">Original price</span>
  12243.          <span class="money price__compare-at--min" data-price-compare-min>
  12244.            $62.99
  12245.          </span>
  12246.          -
  12247.          <span class="visually-hidden">Original price</span>
  12248.          <span class="money price__compare-at--max" data-price-compare-max>
  12249.            $62.99
  12250.          </span>
  12251.        
  12252.      </div>
  12253.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12254.        <span class="visually-hidden">Original price</span>
  12255.        <span class="money price__compare-at--single" data-price-compare>
  12256.          
  12257.        </span>
  12258.      </div>
  12259.    
  12260.  
  12261.  
  12262.  <div class="price__current price__current--emphasize " data-price-container>
  12263.  
  12264.    
  12265.  
  12266.    
  12267.      
  12268.      
  12269.      <span class="money" data-price>
  12270.        $62.99
  12271.      </span>
  12272.    
  12273.    
  12274.  </div>
  12275.  
  12276.  
  12277.    
  12278.    <div class="price__current--hidden" data-current-price-range-hidden>
  12279.      
  12280.        <span class="money price__current--min" data-price-min>$62.99</span>
  12281.        -
  12282.        <span class="money price__current--max" data-price-max>$62.99</span>
  12283.      
  12284.    </div>
  12285.    <div class="price__current--hidden" data-current-price-hidden>
  12286.      <span class="visually-hidden">Current price</span>
  12287.      <span class="money" data-price>
  12288.        $62.99
  12289.      </span>
  12290.    </div>
  12291.  
  12292.  
  12293.  
  12294.    
  12295.    
  12296.    
  12297.    
  12298.  
  12299.    <div
  12300.      class="
  12301.        productitem__unit-price
  12302.        hidden
  12303.      "
  12304.      data-unit-price
  12305.    >
  12306.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  12307.    </div>
  12308.  
  12309.  
  12310.  
  12311. </div>
  12312.  
  12313.  
  12314.            </div>
  12315.  
  12316.            <div class="productitem--listview-badge">
  12317.              
  12318.  
  12319.  
  12320.  
  12321.  
  12322.  
  12323.  
  12324.  
  12325.  
  12326.  
  12327.  
  12328.  
  12329.  
  12330.  
  12331.  
  12332.  
  12333.  
  12334.  
  12335.  
  12336.  
  12337.  
  12338.  
  12339.  
  12340.  
  12341.  
  12342.  
  12343.  
  12344.  
  12345.            </div>
  12346.  
  12347.            
  12348.              <div
  12349.                class="
  12350.                  productitem--action
  12351.                  quickshop-button
  12352.                  
  12353.                "
  12354.              >
  12355.                <button
  12356.                  class="productitem--action-trigger button-secondary"
  12357.                  data-quickshop-full
  12358.                  
  12359.                  
  12360.                  type="button"
  12361.                >
  12362.                  Quick shop
  12363.                </button>
  12364.              </div>
  12365.            
  12366.  
  12367.            
  12368.              <div
  12369.                class="
  12370.                  productitem--action
  12371.                  atc--button
  12372.                  
  12373.                "
  12374.              >
  12375.                <button
  12376.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12377.                  type="button"
  12378.                  aria-label="Add to cart"
  12379.                  
  12380.                    data-quick-buy
  12381.                  
  12382.                  data-variant-id="12366737309719"
  12383.                  
  12384.                >
  12385.                  <span class="atc-button--text">
  12386.                    Add to cart
  12387.                  </span>
  12388.                  <span class="atc-button--icon"><svg
  12389.  aria-hidden="true"
  12390.  focusable="false"
  12391.  role="presentation"
  12392.  width="26"
  12393.  height="26"
  12394.  viewBox="0 0 26 26"
  12395.  xmlns="http://www.w3.org/2000/svg"
  12396. >
  12397.  <g fill-rule="nonzero" fill="currentColor">
  12398.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  12399.  </g>
  12400. </svg></span>
  12401.                </button>
  12402.              </div>
  12403.            
  12404.          </div>
  12405.        
  12406.      
  12407.    </div>
  12408.  </div>
  12409.  
  12410.  
  12411.    <script type="application/json" data-quick-buy-settings>
  12412.      {
  12413.        "cart_redirection": true,
  12414.        "money_format": "${{amount}}"
  12415.      }
  12416.    </script>
  12417.  
  12418. </li>
  12419.    
  12420.      
  12421.  
  12422.  
  12423.  
  12424.  
  12425.  
  12426.  
  12427.  
  12428.  
  12429.  
  12430.  
  12431.  
  12432.  
  12433.  
  12434.  
  12435.  
  12436.  
  12437.  
  12438.  
  12439.  
  12440.  
  12441.  
  12442.  
  12443.  
  12444.  
  12445.  
  12446.  
  12447.  
  12448.  
  12449.  
  12450.  
  12451.  
  12452.  
  12453.    
  12454.  
  12455.  
  12456.  
  12457. <li
  12458.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  12459.  data-product-item
  12460.  data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12461.  
  12462. >
  12463.  <div class="productitem" data-product-item-content>
  12464.    
  12465.    
  12466.    
  12467.    
  12468.  
  12469.    
  12470.  
  12471.    
  12472.  
  12473.    <div class="productitem__container">
  12474.      
  12475.  
  12476.      <div class="productitem__image-container">
  12477.        <a target="_blank"
  12478.          class="productitem--image-link"
  12479.          href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12480.          aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12481.          tabindex="-1"
  12482.          data-product-page-link
  12483.        >
  12484.          <figure
  12485.            class="productitem--image"
  12486.            data-product-item-image
  12487.            
  12488.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  12489.            
  12490.          >
  12491.            
  12492.              
  12493.              
  12494.  
  12495.  
  12496.    <noscript data-rimg-noscript>
  12497.      <img loading="lazy"
  12498.        
  12499.          src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12500.        
  12501.  
  12502.        alt="4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10 - LaptopParts.ca"
  12503.        data-rimg="noscript"
  12504.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
  12505.        class="productitem--image-primary"
  12506.        
  12507.        
  12508.      >
  12509.    </noscript>
  12510.  
  12511.  
  12512.  <img loading="lazy"
  12513.    
  12514.      src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
  12515.    
  12516.    alt="4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10 - LaptopParts.ca"
  12517.  
  12518.    
  12519.      data-rimg="lazy"
  12520.      data-rimg-scale="1"
  12521.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
  12522.      data-rimg-max="500x500"
  12523.      data-rimg-crop="false"
  12524.      
  12525.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  12526.    
  12527.  
  12528.    class="productitem--image-primary"
  12529.    
  12530.    
  12531.  >
  12532.  
  12533.  
  12534.  
  12535.  <div data-rimg-canvas></div>
  12536.  
  12537.  
  12538.            
  12539.  
  12540.            
  12541.  
  12542.  
  12543.  
  12544.  
  12545.  
  12546.  
  12547.  
  12548.  
  12549.  
  12550.  
  12551.  
  12552.  
  12553.  
  12554.  
  12555.  
  12556.  
  12557.  
  12558.  
  12559.  
  12560.  
  12561.  
  12562.  
  12563.  
  12564.  
  12565.  
  12566.  
  12567.  
  12568.          </figure>
  12569.        </a>
  12570.      </div><div class="productitem--info">
  12571.        
  12572.          
  12573.  
  12574.        
  12575.  
  12576.        
  12577.          
  12578.  
  12579.  
  12580.  
  12581.  
  12582.  
  12583.  
  12584.  
  12585.  
  12586.  
  12587.  
  12588.  
  12589.  
  12590.  
  12591.  
  12592.  
  12593.  
  12594.  
  12595.  
  12596.  
  12597.  
  12598.  
  12599.  
  12600.  
  12601.  
  12602.  
  12603.  
  12604.  
  12605.  
  12606.  
  12607.  
  12608. <div class="price productitem__price ">
  12609.  
  12610.    <div
  12611.      class="price__compare-at visible"
  12612.      data-price-compare-container
  12613.    >
  12614.  
  12615.      
  12616.        <span class="money price__original" data-price-original></span>
  12617.      
  12618.    </div>
  12619.  
  12620.  
  12621.    
  12622.      
  12623.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12624.        
  12625.          <span class="visually-hidden">Original price</span>
  12626.          <span class="money price__compare-at--min" data-price-compare-min>
  12627.            $54.99
  12628.          </span>
  12629.          -
  12630.          <span class="visually-hidden">Original price</span>
  12631.          <span class="money price__compare-at--max" data-price-compare-max>
  12632.            $54.99
  12633.          </span>
  12634.        
  12635.      </div>
  12636.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12637.        <span class="visually-hidden">Original price</span>
  12638.        <span class="money price__compare-at--single" data-price-compare>
  12639.          
  12640.        </span>
  12641.      </div>
  12642.    
  12643.  
  12644.  
  12645.  <div class="price__current price__current--emphasize " data-price-container>
  12646.  
  12647.    
  12648.  
  12649.    
  12650.      
  12651.      
  12652.      <span class="money" data-price>
  12653.        $54.99
  12654.      </span>
  12655.    
  12656.    
  12657.  </div>
  12658.  
  12659.  
  12660.    
  12661.    <div class="price__current--hidden" data-current-price-range-hidden>
  12662.      
  12663.        <span class="money price__current--min" data-price-min>$54.99</span>
  12664.        -
  12665.        <span class="money price__current--max" data-price-max>$54.99</span>
  12666.      
  12667.    </div>
  12668.    <div class="price__current--hidden" data-current-price-hidden>
  12669.      <span class="visually-hidden">Current price</span>
  12670.      <span class="money" data-price>
  12671.        $54.99
  12672.      </span>
  12673.    </div>
  12674.  
  12675.  
  12676.  
  12677.    
  12678.    
  12679.    
  12680.    
  12681.  
  12682.    <div
  12683.      class="
  12684.        productitem__unit-price
  12685.        hidden
  12686.      "
  12687.      data-unit-price
  12688.    >
  12689.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  12690.    </div>
  12691.  
  12692.  
  12693.  
  12694. </div>
  12695.  
  12696.  
  12697.        
  12698.  
  12699.        <h2 class="productitem--title">
  12700.          <a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
  12701.            4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
  12702.          </a>
  12703.        </h2>
  12704.  
  12705.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  12706.        <div class="star_container 3929813123159"></div>
  12707.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  12708.  
  12709.        
  12710.          
  12711.            <span class="productitem--vendor">
  12712.              <a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
  12713.            </span>
  12714.          
  12715.        
  12716.  
  12717.        
  12718.  
  12719.        
  12720.          
  12721.            <div class="productitem__stock-level">
  12722.              <!--
  12723.  
  12724.  
  12725.  
  12726.  
  12727.  
  12728.  
  12729.  
  12730. <div class="product-stock-level-wrapper" >
  12731.  
  12732.    <span class="
  12733.  product-stock-level
  12734.  product-stock-level--continue-selling
  12735.  
  12736. ">
  12737.      
  12738.  
  12739.      <span class="product-stock-level__text">
  12740.        
  12741.        <div class="product-stock-level__badge-text">
  12742.          
  12743.  
  12744.    In stock
  12745.  
  12746.  
  12747.        </div>
  12748.      </span>
  12749.    </span>
  12750.  
  12751. </div>
  12752. -->
  12753.              
  12754.  
  12755.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  12756.  
  12757.  
  12758.  
  12759.  
  12760.  
  12761.  
  12762.  
  12763.            </div>
  12764.          
  12765.  
  12766.          
  12767.            
  12768.          
  12769.        
  12770.  
  12771.        
  12772.          <div class="productitem--description">
  12773.            <p>
  12774. Description: New laptop lcd video cable. This cable is the 4K UHD (3840 x 2160) touchscreen version. If your laptop does not have a touchscreen th...</p>
  12775.  
  12776.            
  12777.              <a
  12778.                href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
  12779.                class="productitem--link"
  12780.                data-product-page-link
  12781.              >
  12782.                View full details
  12783.              </a>
  12784.            
  12785.          </div>
  12786.        
  12787.      </div>
  12788.  
  12789.      
  12790.        
  12791.          
  12792.          
  12793.          
  12794.  
  12795.          
  12796.          
  12797.  
  12798.          
  12799.  
  12800.          
  12801.  
  12802.          <div class="productitem--actions" data-product-actions>
  12803.            <div class="productitem--listview-price">
  12804.              
  12805.  
  12806.  
  12807.  
  12808.  
  12809.  
  12810.  
  12811.  
  12812.  
  12813.  
  12814.  
  12815.  
  12816.  
  12817.  
  12818.  
  12819.  
  12820.  
  12821.  
  12822.  
  12823.  
  12824.  
  12825.  
  12826.  
  12827.  
  12828.  
  12829.  
  12830.  
  12831.  
  12832.  
  12833.  
  12834.  
  12835. <div class="price productitem__price ">
  12836.  
  12837.    <div
  12838.      class="price__compare-at visible"
  12839.      data-price-compare-container
  12840.    >
  12841.  
  12842.      
  12843.        <span class="money price__original" data-price-original></span>
  12844.      
  12845.    </div>
  12846.  
  12847.  
  12848.    
  12849.      
  12850.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  12851.        
  12852.          <span class="visually-hidden">Original price</span>
  12853.          <span class="money price__compare-at--min" data-price-compare-min>
  12854.            $54.99
  12855.          </span>
  12856.          -
  12857.          <span class="visually-hidden">Original price</span>
  12858.          <span class="money price__compare-at--max" data-price-compare-max>
  12859.            $54.99
  12860.          </span>
  12861.        
  12862.      </div>
  12863.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  12864.        <span class="visually-hidden">Original price</span>
  12865.        <span class="money price__compare-at--single" data-price-compare>
  12866.          
  12867.        </span>
  12868.      </div>
  12869.    
  12870.  
  12871.  
  12872.  <div class="price__current price__current--emphasize " data-price-container>
  12873.  
  12874.    
  12875.  
  12876.    
  12877.      
  12878.      
  12879.      <span class="money" data-price>
  12880.        $54.99
  12881.      </span>
  12882.    
  12883.    
  12884.  </div>
  12885.  
  12886.  
  12887.    
  12888.    <div class="price__current--hidden" data-current-price-range-hidden>
  12889.      
  12890.        <span class="money price__current--min" data-price-min>$54.99</span>
  12891.        -
  12892.        <span class="money price__current--max" data-price-max>$54.99</span>
  12893.      
  12894.    </div>
  12895.    <div class="price__current--hidden" data-current-price-hidden>
  12896.      <span class="visually-hidden">Current price</span>
  12897.      <span class="money" data-price>
  12898.        $54.99
  12899.      </span>
  12900.    </div>
  12901.  
  12902.  
  12903.  
  12904.    
  12905.    
  12906.    
  12907.    
  12908.  
  12909.    <div
  12910.      class="
  12911.        productitem__unit-price
  12912.        hidden
  12913.      "
  12914.      data-unit-price
  12915.    >
  12916.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  12917.    </div>
  12918.  
  12919.  
  12920.  
  12921. </div>
  12922.  
  12923.  
  12924.            </div>
  12925.  
  12926.            <div class="productitem--listview-badge">
  12927.              
  12928.  
  12929.  
  12930.  
  12931.  
  12932.  
  12933.  
  12934.  
  12935.  
  12936.  
  12937.  
  12938.  
  12939.  
  12940.  
  12941.  
  12942.  
  12943.  
  12944.  
  12945.  
  12946.  
  12947.  
  12948.  
  12949.  
  12950.  
  12951.  
  12952.  
  12953.  
  12954.  
  12955.            </div>
  12956.  
  12957.            
  12958.              <div
  12959.                class="
  12960.                  productitem--action
  12961.                  quickshop-button
  12962.                  
  12963.                "
  12964.              >
  12965.                <button
  12966.                  class="productitem--action-trigger button-secondary"
  12967.                  data-quickshop-full
  12968.                  
  12969.                  
  12970.                  type="button"
  12971.                >
  12972.                  Quick shop
  12973.                </button>
  12974.              </div>
  12975.            
  12976.  
  12977.            
  12978.              <div
  12979.                class="
  12980.                  productitem--action
  12981.                  atc--button
  12982.                  
  12983.                "
  12984.              >
  12985.                <button
  12986.                  class="productitem--action-trigger productitem--action-atc button-primary"
  12987.                  type="button"
  12988.                  aria-label="Add to cart"
  12989.                  
  12990.                    data-quick-buy
  12991.                  
  12992.                  data-variant-id="29531497529431"
  12993.                  
  12994.                >
  12995.                  <span class="atc-button--text">
  12996.                    Add to cart
  12997.                  </span>
  12998.                  <span class="atc-button--icon"><svg
  12999.  aria-hidden="true"
  13000.  focusable="false"
  13001.  role="presentation"
  13002.  width="26"
  13003.  height="26"
  13004.  viewBox="0 0 26 26"
  13005.  xmlns="http://www.w3.org/2000/svg"
  13006. >
  13007.  <g fill-rule="nonzero" fill="currentColor">
  13008.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  13009.  </g>
  13010. </svg></span>
  13011.                </button>
  13012.              </div>
  13013.            
  13014.          </div>
  13015.        
  13016.      
  13017.    </div>
  13018.  </div>
  13019.  
  13020.  
  13021.    <script type="application/json" data-quick-buy-settings>
  13022.      {
  13023.        "cart_redirection": true,
  13024.        "money_format": "${{amount}}"
  13025.      }
  13026.    </script>
  13027.  
  13028. </li>
  13029.    
  13030.      
  13031.  
  13032.  
  13033.  
  13034.  
  13035.  
  13036.  
  13037.  
  13038.  
  13039.  
  13040.  
  13041.  
  13042.  
  13043.  
  13044.  
  13045.  
  13046.  
  13047.  
  13048.  
  13049.  
  13050.  
  13051.  
  13052.  
  13053.  
  13054.  
  13055.  
  13056.  
  13057.  
  13058.  
  13059.  
  13060.  
  13061.  
  13062.  
  13063.    
  13064.  
  13065.  
  13066.  
  13067. <li
  13068.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13069.  data-product-item
  13070.  data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13071.  
  13072. >
  13073.  <div class="productitem" data-product-item-content>
  13074.    
  13075.    
  13076.    
  13077.    
  13078.  
  13079.    
  13080.  
  13081.    
  13082.  
  13083.    <div class="productitem__container">
  13084.      
  13085.  
  13086.      <div class="productitem__image-container">
  13087.        <a target="_blank"
  13088.          class="productitem--image-link"
  13089.          href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13090.          aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13091.          tabindex="-1"
  13092.          data-product-page-link
  13093.        >
  13094.          <figure
  13095.            class="productitem--image"
  13096.            data-product-item-image
  13097.            
  13098.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13099.            
  13100.          >
  13101.            
  13102.              
  13103.              
  13104.  
  13105.  
  13106.    <noscript data-rimg-noscript>
  13107.      <img loading="lazy"
  13108.        
  13109.          src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13110.        
  13111.  
  13112.        alt="925740-002"
  13113.        data-rimg="noscript"
  13114.        srcset="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198 1x, //laptopparts.ca/cdn/shop/files/tpn-ca06_1024x1024.jpg?v=1721171198 2x, //laptopparts.ca/cdn/shop/files/tpn-ca06_1039x1039.jpg?v=1721171198 2.03x"
  13115.        class="productitem--image-primary"
  13116.        
  13117.        
  13118.      >
  13119.    </noscript>
  13120.  
  13121.  
  13122.  <img loading="lazy"
  13123.    
  13124.      src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
  13125.    
  13126.    alt="925740-002"
  13127.  
  13128.    
  13129.      data-rimg="lazy"
  13130.      data-rimg-scale="1"
  13131.      data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
  13132.      data-rimg-max="1043x1043"
  13133.      data-rimg-crop="false"
  13134.      
  13135.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  13136.    
  13137.  
  13138.    class="productitem--image-primary"
  13139.    
  13140.    
  13141.  >
  13142.  
  13143.  
  13144.  
  13145.  <div data-rimg-canvas></div>
  13146.  
  13147.  
  13148.            
  13149.  
  13150.            
  13151.  
  13152.  
  13153.  
  13154.  
  13155.  
  13156.  
  13157.  
  13158.  
  13159.  
  13160.  
  13161.  
  13162.  
  13163.  
  13164.  
  13165.  
  13166.  
  13167.  
  13168.  
  13169.  
  13170.  
  13171.  
  13172.  
  13173.  
  13174.  
  13175.  
  13176.  
  13177.  
  13178.          </figure>
  13179.        </a>
  13180.      </div><div class="productitem--info">
  13181.        
  13182.          
  13183.  
  13184.        
  13185.  
  13186.        
  13187.          
  13188.  
  13189.  
  13190.  
  13191.  
  13192.  
  13193.  
  13194.  
  13195.  
  13196.  
  13197.  
  13198.  
  13199.  
  13200.  
  13201.  
  13202.  
  13203.  
  13204.  
  13205.  
  13206.  
  13207.  
  13208.  
  13209.  
  13210.  
  13211.  
  13212.  
  13213.  
  13214.  
  13215.  
  13216.  
  13217.  
  13218. <div class="price productitem__price ">
  13219.  
  13220.    <div
  13221.      class="price__compare-at visible"
  13222.      data-price-compare-container
  13223.    >
  13224.  
  13225.      
  13226.        <span class="money price__original" data-price-original></span>
  13227.      
  13228.    </div>
  13229.  
  13230.  
  13231.    
  13232.      
  13233.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13234.        
  13235.          <span class="visually-hidden">Original price</span>
  13236.          <span class="money price__compare-at--min" data-price-compare-min>
  13237.            $65.98
  13238.          </span>
  13239.          -
  13240.          <span class="visually-hidden">Original price</span>
  13241.          <span class="money price__compare-at--max" data-price-compare-max>
  13242.            $65.98
  13243.          </span>
  13244.        
  13245.      </div>
  13246.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13247.        <span class="visually-hidden">Original price</span>
  13248.        <span class="money price__compare-at--single" data-price-compare>
  13249.          
  13250.        </span>
  13251.      </div>
  13252.    
  13253.  
  13254.  
  13255.  <div class="price__current price__current--emphasize " data-price-container>
  13256.  
  13257.    
  13258.  
  13259.    
  13260.      
  13261.      
  13262.      <span class="money" data-price>
  13263.        $65.98
  13264.      </span>
  13265.    
  13266.    
  13267.  </div>
  13268.  
  13269.  
  13270.    
  13271.    <div class="price__current--hidden" data-current-price-range-hidden>
  13272.      
  13273.        <span class="money price__current--min" data-price-min>$65.98</span>
  13274.        -
  13275.        <span class="money price__current--max" data-price-max>$65.98</span>
  13276.      
  13277.    </div>
  13278.    <div class="price__current--hidden" data-current-price-hidden>
  13279.      <span class="visually-hidden">Current price</span>
  13280.      <span class="money" data-price>
  13281.        $65.98
  13282.      </span>
  13283.    </div>
  13284.  
  13285.  
  13286.  
  13287.    
  13288.    
  13289.    
  13290.    
  13291.  
  13292.    <div
  13293.      class="
  13294.        productitem__unit-price
  13295.        hidden
  13296.      "
  13297.      data-unit-price
  13298.    >
  13299.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  13300.    </div>
  13301.  
  13302.  
  13303.  
  13304. </div>
  13305.  
  13306.  
  13307.        
  13308.  
  13309.        <h2 class="productitem--title">
  13310.          <a href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1" data-product-page-link>
  13311.            925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
  13312.          </a>
  13313.        </h2>
  13314.  
  13315.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13316.        <div class="star_container 6881873985623"></div>
  13317.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13318.  
  13319.        
  13320.          
  13321.            <span class="productitem--vendor">
  13322.              <a href="/collections/vendors?q=HP" title="HP">HP</a>
  13323.            </span>
  13324.          
  13325.        
  13326.  
  13327.        
  13328.  
  13329.        
  13330.          
  13331.            <div class="productitem__stock-level">
  13332.              <!--
  13333.  
  13334.  
  13335.  
  13336.  
  13337.  
  13338.  
  13339.  
  13340. <div class="product-stock-level-wrapper" >
  13341.  
  13342.    <span class="
  13343.  product-stock-level
  13344.  product-stock-level--continue-selling
  13345.  
  13346. ">
  13347.      
  13348.  
  13349.      <span class="product-stock-level__text">
  13350.        
  13351.        <div class="product-stock-level__badge-text">
  13352.          
  13353.  
  13354.    In stock
  13355.  
  13356.  
  13357.        </div>
  13358.      </span>
  13359.    </span>
  13360.  
  13361. </div>
  13362. -->
  13363.              
  13364.  
  13365.  
  13366.    
  13367.      <b style="color:green">In stock</b>
  13368.    
  13369.  
  13370.  
  13371.  
  13372.  
  13373.  
  13374.  
  13375.  
  13376.            </div>
  13377.          
  13378.  
  13379.          
  13380.            
  13381.          
  13382.        
  13383.  
  13384.        
  13385.          <div class="productitem--description">
  13386.            <p>Specifications:Input: 100-240V~1.2A~0.6A 50-60HzOutput : 5V 3A/9V 3A/10V 5A/12V 5A/15V 4.33A/20V 3.25AAdapter Plug Size: USB Type COutlet: 3-prongC...</p>
  13387.  
  13388.            
  13389.              <a
  13390.                href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
  13391.                class="productitem--link"
  13392.                data-product-page-link
  13393.              >
  13394.                View full details
  13395.              </a>
  13396.            
  13397.          </div>
  13398.        
  13399.      </div>
  13400.  
  13401.      
  13402.        
  13403.          
  13404.          
  13405.          
  13406.  
  13407.          
  13408.          
  13409.  
  13410.          
  13411.  
  13412.          
  13413.  
  13414.          <div class="productitem--actions" data-product-actions>
  13415.            <div class="productitem--listview-price">
  13416.              
  13417.  
  13418.  
  13419.  
  13420.  
  13421.  
  13422.  
  13423.  
  13424.  
  13425.  
  13426.  
  13427.  
  13428.  
  13429.  
  13430.  
  13431.  
  13432.  
  13433.  
  13434.  
  13435.  
  13436.  
  13437.  
  13438.  
  13439.  
  13440.  
  13441.  
  13442.  
  13443.  
  13444.  
  13445.  
  13446.  
  13447. <div class="price productitem__price ">
  13448.  
  13449.    <div
  13450.      class="price__compare-at visible"
  13451.      data-price-compare-container
  13452.    >
  13453.  
  13454.      
  13455.        <span class="money price__original" data-price-original></span>
  13456.      
  13457.    </div>
  13458.  
  13459.  
  13460.    
  13461.      
  13462.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13463.        
  13464.          <span class="visually-hidden">Original price</span>
  13465.          <span class="money price__compare-at--min" data-price-compare-min>
  13466.            $65.98
  13467.          </span>
  13468.          -
  13469.          <span class="visually-hidden">Original price</span>
  13470.          <span class="money price__compare-at--max" data-price-compare-max>
  13471.            $65.98
  13472.          </span>
  13473.        
  13474.      </div>
  13475.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13476.        <span class="visually-hidden">Original price</span>
  13477.        <span class="money price__compare-at--single" data-price-compare>
  13478.          
  13479.        </span>
  13480.      </div>
  13481.    
  13482.  
  13483.  
  13484.  <div class="price__current price__current--emphasize " data-price-container>
  13485.  
  13486.    
  13487.  
  13488.    
  13489.      
  13490.      
  13491.      <span class="money" data-price>
  13492.        $65.98
  13493.      </span>
  13494.    
  13495.    
  13496.  </div>
  13497.  
  13498.  
  13499.    
  13500.    <div class="price__current--hidden" data-current-price-range-hidden>
  13501.      
  13502.        <span class="money price__current--min" data-price-min>$65.98</span>
  13503.        -
  13504.        <span class="money price__current--max" data-price-max>$65.98</span>
  13505.      
  13506.    </div>
  13507.    <div class="price__current--hidden" data-current-price-hidden>
  13508.      <span class="visually-hidden">Current price</span>
  13509.      <span class="money" data-price>
  13510.        $65.98
  13511.      </span>
  13512.    </div>
  13513.  
  13514.  
  13515.  
  13516.    
  13517.    
  13518.    
  13519.    
  13520.  
  13521.    <div
  13522.      class="
  13523.        productitem__unit-price
  13524.        hidden
  13525.      "
  13526.      data-unit-price
  13527.    >
  13528.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  13529.    </div>
  13530.  
  13531.  
  13532.  
  13533. </div>
  13534.  
  13535.  
  13536.            </div>
  13537.  
  13538.            <div class="productitem--listview-badge">
  13539.              
  13540.  
  13541.  
  13542.  
  13543.  
  13544.  
  13545.  
  13546.  
  13547.  
  13548.  
  13549.  
  13550.  
  13551.  
  13552.  
  13553.  
  13554.  
  13555.  
  13556.  
  13557.  
  13558.  
  13559.  
  13560.  
  13561.  
  13562.  
  13563.  
  13564.  
  13565.  
  13566.  
  13567.            </div>
  13568.  
  13569.            
  13570.              <div
  13571.                class="
  13572.                  productitem--action
  13573.                  quickshop-button
  13574.                  
  13575.                "
  13576.              >
  13577.                <button
  13578.                  class="productitem--action-trigger button-secondary"
  13579.                  data-quickshop-full
  13580.                  
  13581.                  
  13582.                  type="button"
  13583.                >
  13584.                  Quick shop
  13585.                </button>
  13586.              </div>
  13587.            
  13588.  
  13589.            
  13590.              <div
  13591.                class="
  13592.                  productitem--action
  13593.                  atc--button
  13594.                  
  13595.                "
  13596.              >
  13597.                <button
  13598.                  class="productitem--action-trigger productitem--action-atc button-primary"
  13599.                  type="button"
  13600.                  aria-label="Add to cart"
  13601.                  
  13602.                    data-quick-buy
  13603.                  
  13604.                  data-variant-id="40183331749975"
  13605.                  
  13606.                >
  13607.                  <span class="atc-button--text">
  13608.                    Add to cart
  13609.                  </span>
  13610.                  <span class="atc-button--icon"><svg
  13611.  aria-hidden="true"
  13612.  focusable="false"
  13613.  role="presentation"
  13614.  width="26"
  13615.  height="26"
  13616.  viewBox="0 0 26 26"
  13617.  xmlns="http://www.w3.org/2000/svg"
  13618. >
  13619.  <g fill-rule="nonzero" fill="currentColor">
  13620.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  13621.  </g>
  13622. </svg></span>
  13623.                </button>
  13624.              </div>
  13625.            
  13626.          </div>
  13627.        
  13628.      
  13629.    </div>
  13630.  </div>
  13631.  
  13632.  
  13633.    <script type="application/json" data-quick-buy-settings>
  13634.      {
  13635.        "cart_redirection": true,
  13636.        "money_format": "${{amount}}"
  13637.      }
  13638.    </script>
  13639.  
  13640. </li>
  13641.    
  13642.      
  13643.  
  13644.  
  13645.  
  13646.  
  13647.  
  13648.  
  13649.  
  13650.  
  13651.  
  13652.  
  13653.  
  13654.  
  13655.  
  13656.  
  13657.  
  13658.  
  13659.  
  13660.  
  13661.  
  13662.  
  13663.  
  13664.  
  13665.  
  13666.  
  13667.  
  13668.  
  13669.  
  13670.  
  13671.  
  13672.  
  13673.  
  13674.  
  13675.    
  13676.  
  13677.  
  13678.  
  13679. <li
  13680.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  13681.  data-product-item
  13682.  data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13683.  
  13684. >
  13685.  <div class="productitem" data-product-item-content>
  13686.    
  13687.    
  13688.    
  13689.    
  13690.  
  13691.    
  13692.  
  13693.    
  13694.  
  13695.    <div class="productitem__container">
  13696.      
  13697.  
  13698.      <div class="productitem__image-container">
  13699.        <a target="_blank"
  13700.          class="productitem--image-link"
  13701.          href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13702.          aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  13703.          tabindex="-1"
  13704.          data-product-page-link
  13705.        >
  13706.          <figure
  13707.            class="productitem--image"
  13708.            data-product-item-image
  13709.            
  13710.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  13711.            
  13712.          >
  13713.            
  13714.              
  13715.              
  13716.  
  13717.  
  13718.    <noscript data-rimg-noscript>
  13719.      <img loading="lazy"
  13720.        
  13721.          src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13722.        
  13723.  
  13724.        alt="Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001 - LaptopParts.ca"
  13725.        data-rimg="noscript"
  13726.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
  13727.        class="productitem--image-primary"
  13728.        
  13729.        
  13730.      >
  13731.    </noscript>
  13732.  
  13733.  
  13734.  <img loading="lazy"
  13735.    
  13736.      src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
  13737.    
  13738.    alt="Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001 - LaptopParts.ca"
  13739.  
  13740.    
  13741.      data-rimg="lazy"
  13742.      data-rimg-scale="1"
  13743.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
  13744.      data-rimg-max="500x500"
  13745.      data-rimg-crop="false"
  13746.      
  13747.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  13748.    
  13749.  
  13750.    class="productitem--image-primary"
  13751.    
  13752.    
  13753.  >
  13754.  
  13755.  
  13756.  
  13757.  <div data-rimg-canvas></div>
  13758.  
  13759.  
  13760.            
  13761.  
  13762.            
  13763.  
  13764.  
  13765.  
  13766.  
  13767.  
  13768.  
  13769.  
  13770.  
  13771.  
  13772.  
  13773.  
  13774.  
  13775.  
  13776.  
  13777.  
  13778.  
  13779.  
  13780.  
  13781.  
  13782.  
  13783.  
  13784.  
  13785.  
  13786.  
  13787.  
  13788.  
  13789.  
  13790.          </figure>
  13791.        </a>
  13792.      </div><div class="productitem--info">
  13793.        
  13794.          
  13795.  
  13796.        
  13797.  
  13798.        
  13799.          
  13800.  
  13801.  
  13802.  
  13803.  
  13804.  
  13805.  
  13806.  
  13807.  
  13808.  
  13809.  
  13810.  
  13811.  
  13812.  
  13813.  
  13814.  
  13815.  
  13816.  
  13817.  
  13818.  
  13819.  
  13820.  
  13821.  
  13822.  
  13823.  
  13824.  
  13825.  
  13826.  
  13827.  
  13828.  
  13829.  
  13830. <div class="price productitem__price ">
  13831.  
  13832.    <div
  13833.      class="price__compare-at visible"
  13834.      data-price-compare-container
  13835.    >
  13836.  
  13837.      
  13838.        <span class="money price__original" data-price-original></span>
  13839.      
  13840.    </div>
  13841.  
  13842.  
  13843.    
  13844.      
  13845.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  13846.        
  13847.          <span class="visually-hidden">Original price</span>
  13848.          <span class="money price__compare-at--min" data-price-compare-min>
  13849.            $54.99
  13850.          </span>
  13851.          -
  13852.          <span class="visually-hidden">Original price</span>
  13853.          <span class="money price__compare-at--max" data-price-compare-max>
  13854.            $54.99
  13855.          </span>
  13856.        
  13857.      </div>
  13858.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  13859.        <span class="visually-hidden">Original price</span>
  13860.        <span class="money price__compare-at--single" data-price-compare>
  13861.          
  13862.        </span>
  13863.      </div>
  13864.    
  13865.  
  13866.  
  13867.  <div class="price__current price__current--emphasize " data-price-container>
  13868.  
  13869.    
  13870.  
  13871.    
  13872.      
  13873.      
  13874.      <span class="money" data-price>
  13875.        $54.99
  13876.      </span>
  13877.    
  13878.    
  13879.  </div>
  13880.  
  13881.  
  13882.    
  13883.    <div class="price__current--hidden" data-current-price-range-hidden>
  13884.      
  13885.        <span class="money price__current--min" data-price-min>$54.99</span>
  13886.        -
  13887.        <span class="money price__current--max" data-price-max>$54.99</span>
  13888.      
  13889.    </div>
  13890.    <div class="price__current--hidden" data-current-price-hidden>
  13891.      <span class="visually-hidden">Current price</span>
  13892.      <span class="money" data-price>
  13893.        $54.99
  13894.      </span>
  13895.    </div>
  13896.  
  13897.  
  13898.  
  13899.    
  13900.    
  13901.    
  13902.    
  13903.  
  13904.    <div
  13905.      class="
  13906.        productitem__unit-price
  13907.        hidden
  13908.      "
  13909.      data-unit-price
  13910.    >
  13911.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  13912.    </div>
  13913.  
  13914.  
  13915.  
  13916. </div>
  13917.  
  13918.  
  13919.        
  13920.  
  13921.        <h2 class="productitem--title">
  13922.          <a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
  13923.            Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
  13924.          </a>
  13925.        </h2>
  13926.  
  13927.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  13928.        <div class="star_container 3929815122007"></div>
  13929.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  13930.  
  13931.        
  13932.          
  13933.            <span class="productitem--vendor">
  13934.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  13935.            </span>
  13936.          
  13937.        
  13938.  
  13939.        
  13940.  
  13941.        
  13942.          
  13943.            <div class="productitem__stock-level">
  13944.              <!--
  13945.  
  13946.  
  13947.  
  13948.  
  13949.  
  13950.  
  13951.  
  13952. <div class="product-stock-level-wrapper" >
  13953.  
  13954.    <span class="
  13955.  product-stock-level
  13956.  product-stock-level--continue-selling
  13957.  
  13958. ">
  13959.      
  13960.  
  13961.      <span class="product-stock-level__text">
  13962.        
  13963.        <div class="product-stock-level__badge-text">
  13964.          
  13965.  
  13966.    In stock
  13967.  
  13968.  
  13969.        </div>
  13970.      </span>
  13971.    </span>
  13972.  
  13973. </div>
  13974. -->
  13975.              
  13976.  
  13977.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  13978.  
  13979.  
  13980.  
  13981.  
  13982.  
  13983.  
  13984.  
  13985.            </div>
  13986.          
  13987.  
  13988.          
  13989.            
  13990.          
  13991.        
  13992.  
  13993.        
  13994.          <div class="productitem--description">
  13995.            <p>
  13996. Description: New Acer server replacement case cooling fan.
  13997.  
  13998. Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
  13999.  
  14000. Compatible Models:
  14001. Acer Altos AT1...</p>
  14002.  
  14003.            
  14004.              <a
  14005.                href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
  14006.                class="productitem--link"
  14007.                data-product-page-link
  14008.              >
  14009.                View full details
  14010.              </a>
  14011.            
  14012.          </div>
  14013.        
  14014.      </div>
  14015.  
  14016.      
  14017.        
  14018.          
  14019.          
  14020.          
  14021.  
  14022.          
  14023.          
  14024.  
  14025.          
  14026.  
  14027.          
  14028.  
  14029.          <div class="productitem--actions" data-product-actions>
  14030.            <div class="productitem--listview-price">
  14031.              
  14032.  
  14033.  
  14034.  
  14035.  
  14036.  
  14037.  
  14038.  
  14039.  
  14040.  
  14041.  
  14042.  
  14043.  
  14044.  
  14045.  
  14046.  
  14047.  
  14048.  
  14049.  
  14050.  
  14051.  
  14052.  
  14053.  
  14054.  
  14055.  
  14056.  
  14057.  
  14058.  
  14059.  
  14060.  
  14061.  
  14062. <div class="price productitem__price ">
  14063.  
  14064.    <div
  14065.      class="price__compare-at visible"
  14066.      data-price-compare-container
  14067.    >
  14068.  
  14069.      
  14070.        <span class="money price__original" data-price-original></span>
  14071.      
  14072.    </div>
  14073.  
  14074.  
  14075.    
  14076.      
  14077.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14078.        
  14079.          <span class="visually-hidden">Original price</span>
  14080.          <span class="money price__compare-at--min" data-price-compare-min>
  14081.            $54.99
  14082.          </span>
  14083.          -
  14084.          <span class="visually-hidden">Original price</span>
  14085.          <span class="money price__compare-at--max" data-price-compare-max>
  14086.            $54.99
  14087.          </span>
  14088.        
  14089.      </div>
  14090.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14091.        <span class="visually-hidden">Original price</span>
  14092.        <span class="money price__compare-at--single" data-price-compare>
  14093.          
  14094.        </span>
  14095.      </div>
  14096.    
  14097.  
  14098.  
  14099.  <div class="price__current price__current--emphasize " data-price-container>
  14100.  
  14101.    
  14102.  
  14103.    
  14104.      
  14105.      
  14106.      <span class="money" data-price>
  14107.        $54.99
  14108.      </span>
  14109.    
  14110.    
  14111.  </div>
  14112.  
  14113.  
  14114.    
  14115.    <div class="price__current--hidden" data-current-price-range-hidden>
  14116.      
  14117.        <span class="money price__current--min" data-price-min>$54.99</span>
  14118.        -
  14119.        <span class="money price__current--max" data-price-max>$54.99</span>
  14120.      
  14121.    </div>
  14122.    <div class="price__current--hidden" data-current-price-hidden>
  14123.      <span class="visually-hidden">Current price</span>
  14124.      <span class="money" data-price>
  14125.        $54.99
  14126.      </span>
  14127.    </div>
  14128.  
  14129.  
  14130.  
  14131.    
  14132.    
  14133.    
  14134.    
  14135.  
  14136.    <div
  14137.      class="
  14138.        productitem__unit-price
  14139.        hidden
  14140.      "
  14141.      data-unit-price
  14142.    >
  14143.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  14144.    </div>
  14145.  
  14146.  
  14147.  
  14148. </div>
  14149.  
  14150.  
  14151.            </div>
  14152.  
  14153.            <div class="productitem--listview-badge">
  14154.              
  14155.  
  14156.  
  14157.  
  14158.  
  14159.  
  14160.  
  14161.  
  14162.  
  14163.  
  14164.  
  14165.  
  14166.  
  14167.  
  14168.  
  14169.  
  14170.  
  14171.  
  14172.  
  14173.  
  14174.  
  14175.  
  14176.  
  14177.  
  14178.  
  14179.  
  14180.  
  14181.  
  14182.            </div>
  14183.  
  14184.            
  14185.              <div
  14186.                class="
  14187.                  productitem--action
  14188.                  quickshop-button
  14189.                  
  14190.                "
  14191.              >
  14192.                <button
  14193.                  class="productitem--action-trigger button-secondary"
  14194.                  data-quickshop-full
  14195.                  
  14196.                  
  14197.                  type="button"
  14198.                >
  14199.                  Quick shop
  14200.                </button>
  14201.              </div>
  14202.            
  14203.  
  14204.            
  14205.              <div
  14206.                class="
  14207.                  productitem--action
  14208.                  atc--button
  14209.                  
  14210.                "
  14211.              >
  14212.                <button
  14213.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14214.                  type="button"
  14215.                  aria-label="Add to cart"
  14216.                  
  14217.                    data-quick-buy
  14218.                  
  14219.                  data-variant-id="29507473014871"
  14220.                  
  14221.                >
  14222.                  <span class="atc-button--text">
  14223.                    Add to cart
  14224.                  </span>
  14225.                  <span class="atc-button--icon"><svg
  14226.  aria-hidden="true"
  14227.  focusable="false"
  14228.  role="presentation"
  14229.  width="26"
  14230.  height="26"
  14231.  viewBox="0 0 26 26"
  14232.  xmlns="http://www.w3.org/2000/svg"
  14233. >
  14234.  <g fill-rule="nonzero" fill="currentColor">
  14235.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  14236.  </g>
  14237. </svg></span>
  14238.                </button>
  14239.              </div>
  14240.            
  14241.          </div>
  14242.        
  14243.      
  14244.    </div>
  14245.  </div>
  14246.  
  14247.  
  14248.    <script type="application/json" data-quick-buy-settings>
  14249.      {
  14250.        "cart_redirection": true,
  14251.        "money_format": "${{amount}}"
  14252.      }
  14253.    </script>
  14254.  
  14255. </li>
  14256.    
  14257.      
  14258.  
  14259.  
  14260.  
  14261.  
  14262.  
  14263.  
  14264.  
  14265.  
  14266.  
  14267.  
  14268.  
  14269.  
  14270.  
  14271.  
  14272.  
  14273.  
  14274.  
  14275.  
  14276.  
  14277.  
  14278.  
  14279.  
  14280.  
  14281.  
  14282.  
  14283.  
  14284.  
  14285.  
  14286.  
  14287.  
  14288.  
  14289.  
  14290.    
  14291.  
  14292.  
  14293.  
  14294. <li
  14295.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14296.  data-product-item
  14297.  data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14298.  
  14299. >
  14300.  <div class="productitem" data-product-item-content>
  14301.    
  14302.    
  14303.    
  14304.    
  14305.  
  14306.    
  14307.  
  14308.    
  14309.  
  14310.    <div class="productitem__container">
  14311.      
  14312.  
  14313.      <div class="productitem__image-container">
  14314.        <a target="_blank"
  14315.          class="productitem--image-link"
  14316.          href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14317.          aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14318.          tabindex="-1"
  14319.          data-product-page-link
  14320.        >
  14321.          <figure
  14322.            class="productitem--image"
  14323.            data-product-item-image
  14324.            
  14325.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14326.            
  14327.          >
  14328.            
  14329.              
  14330.              
  14331.  
  14332.  
  14333.    <noscript data-rimg-noscript>
  14334.      <img loading="lazy"
  14335.        
  14336.          src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14337.        
  14338.  
  14339.        alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14340.        data-rimg="noscript"
  14341.        srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
  14342.        class="productitem--image-primary"
  14343.        
  14344.        
  14345.      >
  14346.    </noscript>
  14347.  
  14348.  
  14349.  <img loading="lazy"
  14350.    
  14351.      src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
  14352.    
  14353.    alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14354.  
  14355.    
  14356.      data-rimg="lazy"
  14357.      data-rimg-scale="1"
  14358.      data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
  14359.      data-rimg-max="500x500"
  14360.      data-rimg-crop="false"
  14361.      
  14362.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14363.    
  14364.  
  14365.    class="productitem--image-primary"
  14366.    
  14367.    
  14368.  >
  14369.  
  14370.  
  14371.  
  14372.  <div data-rimg-canvas></div>
  14373.  
  14374.  
  14375.            
  14376.  
  14377.            
  14378.  
  14379.  
  14380.  
  14381.  
  14382.  
  14383.  
  14384.  
  14385.  
  14386.  
  14387.  
  14388.  
  14389.  
  14390.  
  14391.  
  14392.  
  14393.  
  14394.  
  14395.  
  14396.  
  14397.  
  14398.  
  14399.  
  14400.  
  14401.  
  14402.  
  14403.  
  14404.  
  14405.          </figure>
  14406.        </a>
  14407.      </div><div class="productitem--info">
  14408.        
  14409.          
  14410.  
  14411.        
  14412.  
  14413.        
  14414.          
  14415.  
  14416.  
  14417.  
  14418.  
  14419.  
  14420.  
  14421.  
  14422.  
  14423.  
  14424.  
  14425.  
  14426.  
  14427.  
  14428.  
  14429.  
  14430.  
  14431.  
  14432.  
  14433.  
  14434.  
  14435.  
  14436.  
  14437.  
  14438.  
  14439.  
  14440.  
  14441.  
  14442.  
  14443.  
  14444.  
  14445. <div class="price productitem__price ">
  14446.  
  14447.    <div
  14448.      class="price__compare-at visible"
  14449.      data-price-compare-container
  14450.    >
  14451.  
  14452.      
  14453.        <span class="money price__original" data-price-original></span>
  14454.      
  14455.    </div>
  14456.  
  14457.  
  14458.    
  14459.      
  14460.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14461.        
  14462.          <span class="visually-hidden">Original price</span>
  14463.          <span class="money price__compare-at--min" data-price-compare-min>
  14464.            $106.99
  14465.          </span>
  14466.          -
  14467.          <span class="visually-hidden">Original price</span>
  14468.          <span class="money price__compare-at--max" data-price-compare-max>
  14469.            $106.99
  14470.          </span>
  14471.        
  14472.      </div>
  14473.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14474.        <span class="visually-hidden">Original price</span>
  14475.        <span class="money price__compare-at--single" data-price-compare>
  14476.          
  14477.        </span>
  14478.      </div>
  14479.    
  14480.  
  14481.  
  14482.  <div class="price__current price__current--emphasize " data-price-container>
  14483.  
  14484.    
  14485.  
  14486.    
  14487.      
  14488.      
  14489.      <span class="money" data-price>
  14490.        $106.99
  14491.      </span>
  14492.    
  14493.    
  14494.  </div>
  14495.  
  14496.  
  14497.    
  14498.    <div class="price__current--hidden" data-current-price-range-hidden>
  14499.      
  14500.        <span class="money price__current--min" data-price-min>$106.99</span>
  14501.        -
  14502.        <span class="money price__current--max" data-price-max>$106.99</span>
  14503.      
  14504.    </div>
  14505.    <div class="price__current--hidden" data-current-price-hidden>
  14506.      <span class="visually-hidden">Current price</span>
  14507.      <span class="money" data-price>
  14508.        $106.99
  14509.      </span>
  14510.    </div>
  14511.  
  14512.  
  14513.  
  14514.    
  14515.    
  14516.    
  14517.    
  14518.  
  14519.    <div
  14520.      class="
  14521.        productitem__unit-price
  14522.        hidden
  14523.      "
  14524.      data-unit-price
  14525.    >
  14526.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  14527.    </div>
  14528.  
  14529.  
  14530.  
  14531. </div>
  14532.  
  14533.  
  14534.        
  14535.  
  14536.        <h2 class="productitem--title">
  14537.          <a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  14538.            Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
  14539.          </a>
  14540.        </h2>
  14541.  
  14542.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  14543.        <div class="star_container 4451279622"></div>
  14544.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  14545.  
  14546.        
  14547.          
  14548.            <span class="productitem--vendor">
  14549.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  14550.            </span>
  14551.          
  14552.        
  14553.  
  14554.        
  14555.  
  14556.        
  14557.          
  14558.            <div class="productitem__stock-level">
  14559.              <!--
  14560.  
  14561.  
  14562.  
  14563.  
  14564.  
  14565.  
  14566.  
  14567. <div class="product-stock-level-wrapper" >
  14568.  
  14569.    <span class="
  14570.  product-stock-level
  14571.  product-stock-level--continue-selling
  14572.  
  14573. ">
  14574.      
  14575.  
  14576.      <span class="product-stock-level__text">
  14577.        
  14578.        <div class="product-stock-level__badge-text">
  14579.          
  14580.  
  14581.    In stock
  14582.  
  14583.  
  14584.        </div>
  14585.      </span>
  14586.    </span>
  14587.  
  14588. </div>
  14589. -->
  14590.              
  14591.  
  14592.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  14593.  
  14594.  
  14595.  
  14596.  
  14597.  
  14598.  
  14599.  
  14600.            </div>
  14601.          
  14602.  
  14603.          
  14604.            
  14605.          
  14606.        
  14607.  
  14608.        
  14609.          <div class="productitem--description">
  14610.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  14611.  
  14612.            
  14613.              <a
  14614.                href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
  14615.                class="productitem--link"
  14616.                data-product-page-link
  14617.              >
  14618.                View full details
  14619.              </a>
  14620.            
  14621.          </div>
  14622.        
  14623.      </div>
  14624.  
  14625.      
  14626.        
  14627.          
  14628.          
  14629.          
  14630.  
  14631.          
  14632.          
  14633.  
  14634.          
  14635.  
  14636.          
  14637.  
  14638.          <div class="productitem--actions" data-product-actions>
  14639.            <div class="productitem--listview-price">
  14640.              
  14641.  
  14642.  
  14643.  
  14644.  
  14645.  
  14646.  
  14647.  
  14648.  
  14649.  
  14650.  
  14651.  
  14652.  
  14653.  
  14654.  
  14655.  
  14656.  
  14657.  
  14658.  
  14659.  
  14660.  
  14661.  
  14662.  
  14663.  
  14664.  
  14665.  
  14666.  
  14667.  
  14668.  
  14669.  
  14670.  
  14671. <div class="price productitem__price ">
  14672.  
  14673.    <div
  14674.      class="price__compare-at visible"
  14675.      data-price-compare-container
  14676.    >
  14677.  
  14678.      
  14679.        <span class="money price__original" data-price-original></span>
  14680.      
  14681.    </div>
  14682.  
  14683.  
  14684.    
  14685.      
  14686.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  14687.        
  14688.          <span class="visually-hidden">Original price</span>
  14689.          <span class="money price__compare-at--min" data-price-compare-min>
  14690.            $106.99
  14691.          </span>
  14692.          -
  14693.          <span class="visually-hidden">Original price</span>
  14694.          <span class="money price__compare-at--max" data-price-compare-max>
  14695.            $106.99
  14696.          </span>
  14697.        
  14698.      </div>
  14699.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  14700.        <span class="visually-hidden">Original price</span>
  14701.        <span class="money price__compare-at--single" data-price-compare>
  14702.          
  14703.        </span>
  14704.      </div>
  14705.    
  14706.  
  14707.  
  14708.  <div class="price__current price__current--emphasize " data-price-container>
  14709.  
  14710.    
  14711.  
  14712.    
  14713.      
  14714.      
  14715.      <span class="money" data-price>
  14716.        $106.99
  14717.      </span>
  14718.    
  14719.    
  14720.  </div>
  14721.  
  14722.  
  14723.    
  14724.    <div class="price__current--hidden" data-current-price-range-hidden>
  14725.      
  14726.        <span class="money price__current--min" data-price-min>$106.99</span>
  14727.        -
  14728.        <span class="money price__current--max" data-price-max>$106.99</span>
  14729.      
  14730.    </div>
  14731.    <div class="price__current--hidden" data-current-price-hidden>
  14732.      <span class="visually-hidden">Current price</span>
  14733.      <span class="money" data-price>
  14734.        $106.99
  14735.      </span>
  14736.    </div>
  14737.  
  14738.  
  14739.  
  14740.    
  14741.    
  14742.    
  14743.    
  14744.  
  14745.    <div
  14746.      class="
  14747.        productitem__unit-price
  14748.        hidden
  14749.      "
  14750.      data-unit-price
  14751.    >
  14752.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  14753.    </div>
  14754.  
  14755.  
  14756.  
  14757. </div>
  14758.  
  14759.  
  14760.            </div>
  14761.  
  14762.            <div class="productitem--listview-badge">
  14763.              
  14764.  
  14765.  
  14766.  
  14767.  
  14768.  
  14769.  
  14770.  
  14771.  
  14772.  
  14773.  
  14774.  
  14775.  
  14776.  
  14777.  
  14778.  
  14779.  
  14780.  
  14781.  
  14782.  
  14783.  
  14784.  
  14785.  
  14786.  
  14787.  
  14788.  
  14789.  
  14790.  
  14791.            </div>
  14792.  
  14793.            
  14794.              <div
  14795.                class="
  14796.                  productitem--action
  14797.                  quickshop-button
  14798.                  
  14799.                "
  14800.              >
  14801.                <button
  14802.                  class="productitem--action-trigger button-secondary"
  14803.                  data-quickshop-full
  14804.                  
  14805.                  
  14806.                  type="button"
  14807.                >
  14808.                  Quick shop
  14809.                </button>
  14810.              </div>
  14811.            
  14812.  
  14813.            
  14814.              <div
  14815.                class="
  14816.                  productitem--action
  14817.                  atc--button
  14818.                  
  14819.                "
  14820.              >
  14821.                <button
  14822.                  class="productitem--action-trigger productitem--action-atc button-primary"
  14823.                  type="button"
  14824.                  aria-label="Add to cart"
  14825.                  
  14826.                    data-quick-buy
  14827.                  
  14828.                  data-variant-id="39666365366359"
  14829.                  
  14830.                >
  14831.                  <span class="atc-button--text">
  14832.                    Add to cart
  14833.                  </span>
  14834.                  <span class="atc-button--icon"><svg
  14835.  aria-hidden="true"
  14836.  focusable="false"
  14837.  role="presentation"
  14838.  width="26"
  14839.  height="26"
  14840.  viewBox="0 0 26 26"
  14841.  xmlns="http://www.w3.org/2000/svg"
  14842. >
  14843.  <g fill-rule="nonzero" fill="currentColor">
  14844.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  14845.  </g>
  14846. </svg></span>
  14847.                </button>
  14848.              </div>
  14849.            
  14850.          </div>
  14851.        
  14852.      
  14853.    </div>
  14854.  </div>
  14855.  
  14856.  
  14857.    <script type="application/json" data-quick-buy-settings>
  14858.      {
  14859.        "cart_redirection": true,
  14860.        "money_format": "${{amount}}"
  14861.      }
  14862.    </script>
  14863.  
  14864. </li>
  14865.    
  14866.      
  14867.  
  14868.  
  14869.  
  14870.  
  14871.  
  14872.  
  14873.  
  14874.  
  14875.  
  14876.  
  14877.  
  14878.  
  14879.  
  14880.  
  14881.  
  14882.  
  14883.  
  14884.  
  14885.  
  14886.  
  14887.  
  14888.  
  14889.  
  14890.  
  14891.  
  14892.  
  14893.  
  14894.  
  14895.  
  14896.  
  14897.  
  14898.  
  14899.    
  14900.  
  14901.  
  14902.  
  14903. <li
  14904.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  14905.  data-product-item
  14906.  data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14907.  
  14908. >
  14909.  <div class="productitem" data-product-item-content>
  14910.    
  14911.    
  14912.    
  14913.    
  14914.  
  14915.    
  14916.  
  14917.    
  14918.  
  14919.    <div class="productitem__container">
  14920.      
  14921.  
  14922.      <div class="productitem__image-container">
  14923.        <a target="_blank"
  14924.          class="productitem--image-link"
  14925.          href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14926.          aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  14927.          tabindex="-1"
  14928.          data-product-page-link
  14929.        >
  14930.          <figure
  14931.            class="productitem--image"
  14932.            data-product-item-image
  14933.            
  14934.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  14935.            
  14936.          >
  14937.            
  14938.              
  14939.              
  14940.  
  14941.  
  14942.    <noscript data-rimg-noscript>
  14943.      <img loading="lazy"
  14944.        
  14945.          src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14946.        
  14947.  
  14948.        alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14949.        data-rimg="noscript"
  14950.        srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
  14951.        class="productitem--image-primary"
  14952.        
  14953.        
  14954.      >
  14955.    </noscript>
  14956.  
  14957.  
  14958.  <img loading="lazy"
  14959.    
  14960.      src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
  14961.    
  14962.    alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
  14963.  
  14964.    
  14965.      data-rimg="lazy"
  14966.      data-rimg-scale="1"
  14967.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
  14968.      data-rimg-max="500x500"
  14969.      data-rimg-crop="false"
  14970.      
  14971.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  14972.    
  14973.  
  14974.    class="productitem--image-primary"
  14975.    
  14976.    
  14977.  >
  14978.  
  14979.  
  14980.  
  14981.  <div data-rimg-canvas></div>
  14982.  
  14983.  
  14984.            
  14985.  
  14986.            
  14987.  
  14988.  
  14989.  
  14990.  
  14991.  
  14992.  
  14993.  
  14994.  
  14995.  
  14996.  
  14997.  
  14998.  
  14999.  
  15000.  
  15001.  
  15002.  
  15003.  
  15004.  
  15005.  
  15006.  
  15007.  
  15008.  
  15009.  
  15010.  
  15011.  
  15012.  
  15013.  
  15014.          </figure>
  15015.        </a>
  15016.      </div><div class="productitem--info">
  15017.        
  15018.          
  15019.  
  15020.        
  15021.  
  15022.        
  15023.          
  15024.  
  15025.  
  15026.  
  15027.  
  15028.  
  15029.  
  15030.  
  15031.  
  15032.  
  15033.  
  15034.  
  15035.  
  15036.  
  15037.  
  15038.  
  15039.  
  15040.  
  15041.  
  15042.  
  15043.  
  15044.  
  15045.  
  15046.  
  15047.  
  15048.  
  15049.  
  15050.  
  15051.  
  15052.  
  15053.  
  15054. <div class="price productitem__price ">
  15055.  
  15056.    <div
  15057.      class="price__compare-at visible"
  15058.      data-price-compare-container
  15059.    >
  15060.  
  15061.      
  15062.        <span class="money price__original" data-price-original></span>
  15063.      
  15064.    </div>
  15065.  
  15066.  
  15067.    
  15068.      
  15069.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15070.        
  15071.          <span class="visually-hidden">Original price</span>
  15072.          <span class="money price__compare-at--min" data-price-compare-min>
  15073.            $106.99
  15074.          </span>
  15075.          -
  15076.          <span class="visually-hidden">Original price</span>
  15077.          <span class="money price__compare-at--max" data-price-compare-max>
  15078.            $106.99
  15079.          </span>
  15080.        
  15081.      </div>
  15082.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15083.        <span class="visually-hidden">Original price</span>
  15084.        <span class="money price__compare-at--single" data-price-compare>
  15085.          
  15086.        </span>
  15087.      </div>
  15088.    
  15089.  
  15090.  
  15091.  <div class="price__current price__current--emphasize " data-price-container>
  15092.  
  15093.    
  15094.  
  15095.    
  15096.      
  15097.      
  15098.      <span class="money" data-price>
  15099.        $106.99
  15100.      </span>
  15101.    
  15102.    
  15103.  </div>
  15104.  
  15105.  
  15106.    
  15107.    <div class="price__current--hidden" data-current-price-range-hidden>
  15108.      
  15109.        <span class="money price__current--min" data-price-min>$106.99</span>
  15110.        -
  15111.        <span class="money price__current--max" data-price-max>$106.99</span>
  15112.      
  15113.    </div>
  15114.    <div class="price__current--hidden" data-current-price-hidden>
  15115.      <span class="visually-hidden">Current price</span>
  15116.      <span class="money" data-price>
  15117.        $106.99
  15118.      </span>
  15119.    </div>
  15120.  
  15121.  
  15122.  
  15123.    
  15124.    
  15125.    
  15126.    
  15127.  
  15128.    <div
  15129.      class="
  15130.        productitem__unit-price
  15131.        hidden
  15132.      "
  15133.      data-unit-price
  15134.    >
  15135.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  15136.    </div>
  15137.  
  15138.  
  15139.  
  15140. </div>
  15141.  
  15142.  
  15143.        
  15144.  
  15145.        <h2 class="productitem--title">
  15146.          <a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
  15147.            Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
  15148.          </a>
  15149.        </h2>
  15150.  
  15151.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15152.        <div class="star_container 4451280006"></div>
  15153.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15154.  
  15155.        
  15156.          
  15157.            <span class="productitem--vendor">
  15158.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15159.            </span>
  15160.          
  15161.        
  15162.  
  15163.        
  15164.  
  15165.        
  15166.          
  15167.            <div class="productitem__stock-level">
  15168.              <!--
  15169.  
  15170.  
  15171.  
  15172.  
  15173.  
  15174.  
  15175.  
  15176. <div class="product-stock-level-wrapper" >
  15177.  
  15178.    <span class="
  15179.  product-stock-level
  15180.  product-stock-level--continue-selling
  15181.  
  15182. ">
  15183.      
  15184.  
  15185.      <span class="product-stock-level__text">
  15186.        
  15187.        <div class="product-stock-level__badge-text">
  15188.          
  15189.  
  15190.    In stock
  15191.  
  15192.  
  15193.        </div>
  15194.      </span>
  15195.    </span>
  15196.  
  15197. </div>
  15198. -->
  15199.              
  15200.  
  15201.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  15202.  
  15203.  
  15204.  
  15205.  
  15206.  
  15207.  
  15208.  
  15209.            </div>
  15210.          
  15211.  
  15212.          
  15213.            
  15214.          
  15215.        
  15216.  
  15217.        
  15218.          <div class="productitem--description">
  15219.            <p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
  15220.  
  15221.            
  15222.              <a
  15223.                href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
  15224.                class="productitem--link"
  15225.                data-product-page-link
  15226.              >
  15227.                View full details
  15228.              </a>
  15229.            
  15230.          </div>
  15231.        
  15232.      </div>
  15233.  
  15234.      
  15235.        
  15236.          
  15237.          
  15238.          
  15239.  
  15240.          
  15241.          
  15242.  
  15243.          
  15244.  
  15245.          
  15246.  
  15247.          <div class="productitem--actions" data-product-actions>
  15248.            <div class="productitem--listview-price">
  15249.              
  15250.  
  15251.  
  15252.  
  15253.  
  15254.  
  15255.  
  15256.  
  15257.  
  15258.  
  15259.  
  15260.  
  15261.  
  15262.  
  15263.  
  15264.  
  15265.  
  15266.  
  15267.  
  15268.  
  15269.  
  15270.  
  15271.  
  15272.  
  15273.  
  15274.  
  15275.  
  15276.  
  15277.  
  15278.  
  15279.  
  15280. <div class="price productitem__price ">
  15281.  
  15282.    <div
  15283.      class="price__compare-at visible"
  15284.      data-price-compare-container
  15285.    >
  15286.  
  15287.      
  15288.        <span class="money price__original" data-price-original></span>
  15289.      
  15290.    </div>
  15291.  
  15292.  
  15293.    
  15294.      
  15295.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15296.        
  15297.          <span class="visually-hidden">Original price</span>
  15298.          <span class="money price__compare-at--min" data-price-compare-min>
  15299.            $106.99
  15300.          </span>
  15301.          -
  15302.          <span class="visually-hidden">Original price</span>
  15303.          <span class="money price__compare-at--max" data-price-compare-max>
  15304.            $106.99
  15305.          </span>
  15306.        
  15307.      </div>
  15308.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15309.        <span class="visually-hidden">Original price</span>
  15310.        <span class="money price__compare-at--single" data-price-compare>
  15311.          
  15312.        </span>
  15313.      </div>
  15314.    
  15315.  
  15316.  
  15317.  <div class="price__current price__current--emphasize " data-price-container>
  15318.  
  15319.    
  15320.  
  15321.    
  15322.      
  15323.      
  15324.      <span class="money" data-price>
  15325.        $106.99
  15326.      </span>
  15327.    
  15328.    
  15329.  </div>
  15330.  
  15331.  
  15332.    
  15333.    <div class="price__current--hidden" data-current-price-range-hidden>
  15334.      
  15335.        <span class="money price__current--min" data-price-min>$106.99</span>
  15336.        -
  15337.        <span class="money price__current--max" data-price-max>$106.99</span>
  15338.      
  15339.    </div>
  15340.    <div class="price__current--hidden" data-current-price-hidden>
  15341.      <span class="visually-hidden">Current price</span>
  15342.      <span class="money" data-price>
  15343.        $106.99
  15344.      </span>
  15345.    </div>
  15346.  
  15347.  
  15348.  
  15349.    
  15350.    
  15351.    
  15352.    
  15353.  
  15354.    <div
  15355.      class="
  15356.        productitem__unit-price
  15357.        hidden
  15358.      "
  15359.      data-unit-price
  15360.    >
  15361.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  15362.    </div>
  15363.  
  15364.  
  15365.  
  15366. </div>
  15367.  
  15368.  
  15369.            </div>
  15370.  
  15371.            <div class="productitem--listview-badge">
  15372.              
  15373.  
  15374.  
  15375.  
  15376.  
  15377.  
  15378.  
  15379.  
  15380.  
  15381.  
  15382.  
  15383.  
  15384.  
  15385.  
  15386.  
  15387.  
  15388.  
  15389.  
  15390.  
  15391.  
  15392.  
  15393.  
  15394.  
  15395.  
  15396.  
  15397.  
  15398.  
  15399.  
  15400.            </div>
  15401.  
  15402.            
  15403.              <div
  15404.                class="
  15405.                  productitem--action
  15406.                  quickshop-button
  15407.                  
  15408.                "
  15409.              >
  15410.                <button
  15411.                  class="productitem--action-trigger button-secondary"
  15412.                  data-quickshop-full
  15413.                  
  15414.                  
  15415.                  type="button"
  15416.                >
  15417.                  Quick shop
  15418.                </button>
  15419.              </div>
  15420.            
  15421.  
  15422.            
  15423.              <div
  15424.                class="
  15425.                  productitem--action
  15426.                  atc--button
  15427.                  
  15428.                "
  15429.              >
  15430.                <button
  15431.                  class="productitem--action-trigger productitem--action-atc button-primary"
  15432.                  type="button"
  15433.                  aria-label="Add to cart"
  15434.                  
  15435.                    data-quick-buy
  15436.                  
  15437.                  data-variant-id="39666365268055"
  15438.                  
  15439.                >
  15440.                  <span class="atc-button--text">
  15441.                    Add to cart
  15442.                  </span>
  15443.                  <span class="atc-button--icon"><svg
  15444.  aria-hidden="true"
  15445.  focusable="false"
  15446.  role="presentation"
  15447.  width="26"
  15448.  height="26"
  15449.  viewBox="0 0 26 26"
  15450.  xmlns="http://www.w3.org/2000/svg"
  15451. >
  15452.  <g fill-rule="nonzero" fill="currentColor">
  15453.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  15454.  </g>
  15455. </svg></span>
  15456.                </button>
  15457.              </div>
  15458.            
  15459.          </div>
  15460.        
  15461.      
  15462.    </div>
  15463.  </div>
  15464.  
  15465.  
  15466.    <script type="application/json" data-quick-buy-settings>
  15467.      {
  15468.        "cart_redirection": true,
  15469.        "money_format": "${{amount}}"
  15470.      }
  15471.    </script>
  15472.  
  15473. </li>
  15474.    
  15475.      
  15476.  
  15477.  
  15478.  
  15479.  
  15480.  
  15481.  
  15482.  
  15483.  
  15484.  
  15485.  
  15486.  
  15487.  
  15488.  
  15489.  
  15490.  
  15491.  
  15492.  
  15493.  
  15494.  
  15495.  
  15496.  
  15497.  
  15498.  
  15499.  
  15500.  
  15501.  
  15502.  
  15503.  
  15504.  
  15505.  
  15506.  
  15507.  
  15508.    
  15509.  
  15510.  
  15511.  
  15512. <li
  15513.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  15514.  data-product-item
  15515.  data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15516.  
  15517. >
  15518.  <div class="productitem" data-product-item-content>
  15519.    
  15520.    
  15521.    
  15522.    
  15523.  
  15524.    
  15525.  
  15526.    
  15527.  
  15528.    <div class="productitem__container">
  15529.      
  15530.  
  15531.      <div class="productitem__image-container">
  15532.        <a target="_blank"
  15533.          class="productitem--image-link"
  15534.          href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15535.          aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15536.          tabindex="-1"
  15537.          data-product-page-link
  15538.        >
  15539.          <figure
  15540.            class="productitem--image"
  15541.            data-product-item-image
  15542.            
  15543.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  15544.            
  15545.          >
  15546.            
  15547.              
  15548.              
  15549.  
  15550.  
  15551.    <noscript data-rimg-noscript>
  15552.      <img loading="lazy"
  15553.        
  15554.          src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15555.        
  15556.  
  15557.        alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15558.        data-rimg="noscript"
  15559.        srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
  15560.        class="productitem--image-primary"
  15561.        
  15562.        
  15563.      >
  15564.    </noscript>
  15565.  
  15566.  
  15567.  <img loading="lazy"
  15568.    
  15569.      src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
  15570.    
  15571.    alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
  15572.  
  15573.    
  15574.      data-rimg="lazy"
  15575.      data-rimg-scale="1"
  15576.      data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
  15577.      data-rimg-max="500x500"
  15578.      data-rimg-crop="false"
  15579.      
  15580.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  15581.    
  15582.  
  15583.    class="productitem--image-primary"
  15584.    
  15585.    
  15586.  >
  15587.  
  15588.  
  15589.  
  15590.  <div data-rimg-canvas></div>
  15591.  
  15592.  
  15593.            
  15594.  
  15595.            
  15596.  
  15597.  
  15598.  
  15599.  
  15600.  
  15601.  
  15602.  
  15603.  
  15604.  
  15605.  
  15606.  
  15607.  
  15608.  
  15609.  
  15610.  
  15611.  
  15612.  
  15613.  
  15614.  
  15615.  
  15616.  
  15617.  
  15618.  
  15619.  
  15620.  
  15621.  
  15622.  
  15623.          </figure>
  15624.        </a>
  15625.      </div><div class="productitem--info">
  15626.        
  15627.          
  15628.  
  15629.        
  15630.  
  15631.        
  15632.          
  15633.  
  15634.  
  15635.  
  15636.  
  15637.  
  15638.  
  15639.  
  15640.  
  15641.  
  15642.  
  15643.  
  15644.  
  15645.  
  15646.  
  15647.  
  15648.  
  15649.  
  15650.  
  15651.  
  15652.  
  15653.  
  15654.  
  15655.  
  15656.  
  15657.  
  15658.  
  15659.  
  15660.  
  15661.  
  15662.  
  15663. <div class="price productitem__price ">
  15664.  
  15665.    <div
  15666.      class="price__compare-at visible"
  15667.      data-price-compare-container
  15668.    >
  15669.  
  15670.      
  15671.        <span class="money price__original" data-price-original></span>
  15672.      
  15673.    </div>
  15674.  
  15675.  
  15676.    
  15677.      
  15678.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15679.        
  15680.          <span class="visually-hidden">Original price</span>
  15681.          <span class="money price__compare-at--min" data-price-compare-min>
  15682.            $86.99
  15683.          </span>
  15684.          -
  15685.          <span class="visually-hidden">Original price</span>
  15686.          <span class="money price__compare-at--max" data-price-compare-max>
  15687.            $86.99
  15688.          </span>
  15689.        
  15690.      </div>
  15691.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15692.        <span class="visually-hidden">Original price</span>
  15693.        <span class="money price__compare-at--single" data-price-compare>
  15694.          
  15695.        </span>
  15696.      </div>
  15697.    
  15698.  
  15699.  
  15700.  <div class="price__current price__current--emphasize " data-price-container>
  15701.  
  15702.    
  15703.  
  15704.    
  15705.      
  15706.      
  15707.      <span class="money" data-price>
  15708.        $86.99
  15709.      </span>
  15710.    
  15711.    
  15712.  </div>
  15713.  
  15714.  
  15715.    
  15716.    <div class="price__current--hidden" data-current-price-range-hidden>
  15717.      
  15718.        <span class="money price__current--min" data-price-min>$86.99</span>
  15719.        -
  15720.        <span class="money price__current--max" data-price-max>$86.99</span>
  15721.      
  15722.    </div>
  15723.    <div class="price__current--hidden" data-current-price-hidden>
  15724.      <span class="visually-hidden">Current price</span>
  15725.      <span class="money" data-price>
  15726.        $86.99
  15727.      </span>
  15728.    </div>
  15729.  
  15730.  
  15731.  
  15732.    
  15733.    
  15734.    
  15735.    
  15736.  
  15737.    <div
  15738.      class="
  15739.        productitem__unit-price
  15740.        hidden
  15741.      "
  15742.      data-unit-price
  15743.    >
  15744.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  15745.    </div>
  15746.  
  15747.  
  15748.  
  15749. </div>
  15750.  
  15751.  
  15752.        
  15753.  
  15754.        <h2 class="productitem--title">
  15755.          <a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
  15756.            Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
  15757.          </a>
  15758.        </h2>
  15759.  
  15760.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  15761.        <div class="star_container 4451281286"></div>
  15762.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  15763.  
  15764.        
  15765.          
  15766.            <span class="productitem--vendor">
  15767.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  15768.            </span>
  15769.          
  15770.        
  15771.  
  15772.        
  15773.  
  15774.        
  15775.          
  15776.            <div class="productitem__stock-level">
  15777.              <!--
  15778.  
  15779.  
  15780.  
  15781.  
  15782.  
  15783.  
  15784.  
  15785. <div class="product-stock-level-wrapper" >
  15786.  
  15787.    <span class="
  15788.  product-stock-level
  15789.  product-stock-level--continue-selling
  15790.  
  15791. ">
  15792.      
  15793.  
  15794.      <span class="product-stock-level__text">
  15795.        
  15796.        <div class="product-stock-level__badge-text">
  15797.          
  15798.  
  15799.    In stock
  15800.  
  15801.  
  15802.        </div>
  15803.      </span>
  15804.    </span>
  15805.  
  15806. </div>
  15807. -->
  15808.              
  15809.  
  15810.  
  15811.    
  15812.      <b style="color:green">In stock</b>
  15813.    
  15814.  
  15815.  
  15816.  
  15817.  
  15818.  
  15819.  
  15820.  
  15821.            </div>
  15822.          
  15823.  
  15824.          
  15825.            
  15826.          
  15827.        
  15828.  
  15829.        
  15830.          <div class="productitem--description">
  15831.            <p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
  15832.  
  15833.            
  15834.              <a
  15835.                href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
  15836.                class="productitem--link"
  15837.                data-product-page-link
  15838.              >
  15839.                View full details
  15840.              </a>
  15841.            
  15842.          </div>
  15843.        
  15844.      </div>
  15845.  
  15846.      
  15847.        
  15848.          
  15849.          
  15850.          
  15851.  
  15852.          
  15853.          
  15854.  
  15855.          
  15856.  
  15857.          
  15858.  
  15859.          <div class="productitem--actions" data-product-actions>
  15860.            <div class="productitem--listview-price">
  15861.              
  15862.  
  15863.  
  15864.  
  15865.  
  15866.  
  15867.  
  15868.  
  15869.  
  15870.  
  15871.  
  15872.  
  15873.  
  15874.  
  15875.  
  15876.  
  15877.  
  15878.  
  15879.  
  15880.  
  15881.  
  15882.  
  15883.  
  15884.  
  15885.  
  15886.  
  15887.  
  15888.  
  15889.  
  15890.  
  15891.  
  15892. <div class="price productitem__price ">
  15893.  
  15894.    <div
  15895.      class="price__compare-at visible"
  15896.      data-price-compare-container
  15897.    >
  15898.  
  15899.      
  15900.        <span class="money price__original" data-price-original></span>
  15901.      
  15902.    </div>
  15903.  
  15904.  
  15905.    
  15906.      
  15907.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  15908.        
  15909.          <span class="visually-hidden">Original price</span>
  15910.          <span class="money price__compare-at--min" data-price-compare-min>
  15911.            $86.99
  15912.          </span>
  15913.          -
  15914.          <span class="visually-hidden">Original price</span>
  15915.          <span class="money price__compare-at--max" data-price-compare-max>
  15916.            $86.99
  15917.          </span>
  15918.        
  15919.      </div>
  15920.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  15921.        <span class="visually-hidden">Original price</span>
  15922.        <span class="money price__compare-at--single" data-price-compare>
  15923.          
  15924.        </span>
  15925.      </div>
  15926.    
  15927.  
  15928.  
  15929.  <div class="price__current price__current--emphasize " data-price-container>
  15930.  
  15931.    
  15932.  
  15933.    
  15934.      
  15935.      
  15936.      <span class="money" data-price>
  15937.        $86.99
  15938.      </span>
  15939.    
  15940.    
  15941.  </div>
  15942.  
  15943.  
  15944.    
  15945.    <div class="price__current--hidden" data-current-price-range-hidden>
  15946.      
  15947.        <span class="money price__current--min" data-price-min>$86.99</span>
  15948.        -
  15949.        <span class="money price__current--max" data-price-max>$86.99</span>
  15950.      
  15951.    </div>
  15952.    <div class="price__current--hidden" data-current-price-hidden>
  15953.      <span class="visually-hidden">Current price</span>
  15954.      <span class="money" data-price>
  15955.        $86.99
  15956.      </span>
  15957.    </div>
  15958.  
  15959.  
  15960.  
  15961.    
  15962.    
  15963.    
  15964.    
  15965.  
  15966.    <div
  15967.      class="
  15968.        productitem__unit-price
  15969.        hidden
  15970.      "
  15971.      data-unit-price
  15972.    >
  15973.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  15974.    </div>
  15975.  
  15976.  
  15977.  
  15978. </div>
  15979.  
  15980.  
  15981.            </div>
  15982.  
  15983.            <div class="productitem--listview-badge">
  15984.              
  15985.  
  15986.  
  15987.  
  15988.  
  15989.  
  15990.  
  15991.  
  15992.  
  15993.  
  15994.  
  15995.  
  15996.  
  15997.  
  15998.  
  15999.  
  16000.  
  16001.  
  16002.  
  16003.  
  16004.  
  16005.  
  16006.  
  16007.  
  16008.  
  16009.  
  16010.  
  16011.  
  16012.            </div>
  16013.  
  16014.            
  16015.              <div
  16016.                class="
  16017.                  productitem--action
  16018.                  quickshop-button
  16019.                  
  16020.                "
  16021.              >
  16022.                <button
  16023.                  class="productitem--action-trigger button-secondary"
  16024.                  data-quickshop-full
  16025.                  
  16026.                  
  16027.                  type="button"
  16028.                >
  16029.                  Quick shop
  16030.                </button>
  16031.              </div>
  16032.            
  16033.  
  16034.            
  16035.              <div
  16036.                class="
  16037.                  productitem--action
  16038.                  atc--button
  16039.                  
  16040.                "
  16041.              >
  16042.                <button
  16043.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16044.                  type="button"
  16045.                  aria-label="Add to cart"
  16046.                  
  16047.                    data-quick-buy
  16048.                  
  16049.                  data-variant-id="39666363793495"
  16050.                  
  16051.                >
  16052.                  <span class="atc-button--text">
  16053.                    Add to cart
  16054.                  </span>
  16055.                  <span class="atc-button--icon"><svg
  16056.  aria-hidden="true"
  16057.  focusable="false"
  16058.  role="presentation"
  16059.  width="26"
  16060.  height="26"
  16061.  viewBox="0 0 26 26"
  16062.  xmlns="http://www.w3.org/2000/svg"
  16063. >
  16064.  <g fill-rule="nonzero" fill="currentColor">
  16065.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  16066.  </g>
  16067. </svg></span>
  16068.                </button>
  16069.              </div>
  16070.            
  16071.          </div>
  16072.        
  16073.      
  16074.    </div>
  16075.  </div>
  16076.  
  16077.  
  16078.    <script type="application/json" data-quick-buy-settings>
  16079.      {
  16080.        "cart_redirection": true,
  16081.        "money_format": "${{amount}}"
  16082.      }
  16083.    </script>
  16084.  
  16085. </li>
  16086.    
  16087.      
  16088.  
  16089.  
  16090.  
  16091.  
  16092.  
  16093.  
  16094.  
  16095.  
  16096.  
  16097.  
  16098.  
  16099.  
  16100.  
  16101.  
  16102.  
  16103.  
  16104.  
  16105.  
  16106.  
  16107.  
  16108.  
  16109.  
  16110.  
  16111.  
  16112.  
  16113.  
  16114.  
  16115.  
  16116.  
  16117.  
  16118.  
  16119.  
  16120.    
  16121.  
  16122.  
  16123.  
  16124. <li
  16125.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16126.  data-product-item
  16127.  data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16128.  
  16129. >
  16130.  <div class="productitem" data-product-item-content>
  16131.    
  16132.    
  16133.    
  16134.    
  16135.  
  16136.    
  16137.  
  16138.    
  16139.  
  16140.    <div class="productitem__container">
  16141.      
  16142.  
  16143.      <div class="productitem__image-container">
  16144.        <a target="_blank"
  16145.          class="productitem--image-link"
  16146.          href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16147.          aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16148.          tabindex="-1"
  16149.          data-product-page-link
  16150.        >
  16151.          <figure
  16152.            class="productitem--image"
  16153.            data-product-item-image
  16154.            
  16155.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  16156.            
  16157.          >
  16158.            
  16159.              
  16160.              
  16161.  
  16162.  
  16163.    <noscript data-rimg-noscript>
  16164.      <img loading="lazy"
  16165.        
  16166.          src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16167.        
  16168.  
  16169.        alt="Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210 - LaptopParts.ca"
  16170.        data-rimg="noscript"
  16171.        srcset="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255 1x, //laptopparts.ca/cdn/shop/products/33.paa02.007_650x650.jpg?v=1697125255 1.27x"
  16172.        class="productitem--image-primary"
  16173.        
  16174.        
  16175.      >
  16176.    </noscript>
  16177.  
  16178.  
  16179.  <img loading="lazy"
  16180.    
  16181.      src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
  16182.    
  16183.    alt="Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210 - LaptopParts.ca"
  16184.  
  16185.    
  16186.      data-rimg="lazy"
  16187.      data-rimg-scale="1"
  16188.      data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
  16189.      data-rimg-max="655x655"
  16190.      data-rimg-crop="false"
  16191.      
  16192.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  16193.    
  16194.  
  16195.    class="productitem--image-primary"
  16196.    
  16197.    
  16198.  >
  16199.  
  16200.  
  16201.  
  16202.  <div data-rimg-canvas></div>
  16203.  
  16204.  
  16205.            
  16206.  
  16207.            
  16208.  
  16209.  
  16210.  
  16211.  
  16212.  
  16213.  
  16214.  
  16215.  
  16216.  
  16217.  
  16218.  
  16219.  
  16220.  
  16221.  
  16222.  
  16223.  
  16224.  
  16225.  
  16226.  
  16227.  
  16228.  
  16229.  
  16230.  
  16231.  
  16232.  
  16233.  
  16234.  
  16235.          </figure>
  16236.        </a>
  16237.      </div><div class="productitem--info">
  16238.        
  16239.          
  16240.  
  16241.        
  16242.  
  16243.        
  16244.          
  16245.  
  16246.  
  16247.  
  16248.  
  16249.  
  16250.  
  16251.  
  16252.  
  16253.  
  16254.  
  16255.  
  16256.  
  16257.  
  16258.  
  16259.  
  16260.  
  16261.  
  16262.  
  16263.  
  16264.  
  16265.  
  16266.  
  16267.  
  16268.  
  16269.  
  16270.  
  16271.  
  16272.  
  16273.  
  16274.  
  16275. <div class="price productitem__price ">
  16276.  
  16277.    <div
  16278.      class="price__compare-at visible"
  16279.      data-price-compare-container
  16280.    >
  16281.  
  16282.      
  16283.        <span class="money price__original" data-price-original></span>
  16284.      
  16285.    </div>
  16286.  
  16287.  
  16288.    
  16289.      
  16290.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16291.        
  16292.          <span class="visually-hidden">Original price</span>
  16293.          <span class="money price__compare-at--min" data-price-compare-min>
  16294.            $65.99
  16295.          </span>
  16296.          -
  16297.          <span class="visually-hidden">Original price</span>
  16298.          <span class="money price__compare-at--max" data-price-compare-max>
  16299.            $65.99
  16300.          </span>
  16301.        
  16302.      </div>
  16303.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16304.        <span class="visually-hidden">Original price</span>
  16305.        <span class="money price__compare-at--single" data-price-compare>
  16306.          
  16307.        </span>
  16308.      </div>
  16309.    
  16310.  
  16311.  
  16312.  <div class="price__current price__current--emphasize " data-price-container>
  16313.  
  16314.    
  16315.  
  16316.    
  16317.      
  16318.      
  16319.      <span class="money" data-price>
  16320.        $65.99
  16321.      </span>
  16322.    
  16323.    
  16324.  </div>
  16325.  
  16326.  
  16327.    
  16328.    <div class="price__current--hidden" data-current-price-range-hidden>
  16329.      
  16330.        <span class="money price__current--min" data-price-min>$65.99</span>
  16331.        -
  16332.        <span class="money price__current--max" data-price-max>$65.99</span>
  16333.      
  16334.    </div>
  16335.    <div class="price__current--hidden" data-current-price-hidden>
  16336.      <span class="visually-hidden">Current price</span>
  16337.      <span class="money" data-price>
  16338.        $65.99
  16339.      </span>
  16340.    </div>
  16341.  
  16342.  
  16343.  
  16344.    
  16345.    
  16346.    
  16347.    
  16348.  
  16349.    <div
  16350.      class="
  16351.        productitem__unit-price
  16352.        hidden
  16353.      "
  16354.      data-unit-price
  16355.    >
  16356.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  16357.    </div>
  16358.  
  16359.  
  16360.  
  16361. </div>
  16362.  
  16363.  
  16364.        
  16365.  
  16366.        <h2 class="productitem--title">
  16367.          <a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
  16368.            Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
  16369.          </a>
  16370.        </h2>
  16371.  
  16372.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16373.        <div class="star_container 243102056471"></div>
  16374.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16375.  
  16376.        
  16377.          
  16378.            <span class="productitem--vendor">
  16379.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16380.            </span>
  16381.          
  16382.        
  16383.  
  16384.        
  16385.  
  16386.        
  16387.          
  16388.            <div class="productitem__stock-level">
  16389.              <!--
  16390.  
  16391.  
  16392.  
  16393.  
  16394.  
  16395.  
  16396.  
  16397. <div class="product-stock-level-wrapper" >
  16398.  
  16399.    <span class="
  16400.  product-stock-level
  16401.  product-stock-level--continue-selling
  16402.  
  16403. ">
  16404.      
  16405.  
  16406.      <span class="product-stock-level__text">
  16407.        
  16408.        <div class="product-stock-level__badge-text">
  16409.          
  16410.  
  16411.    In stock
  16412.  
  16413.  
  16414.        </div>
  16415.      </span>
  16416.    </span>
  16417.  
  16418. </div>
  16419. -->
  16420.              
  16421.  
  16422.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  16423.  
  16424.  
  16425.  
  16426.  
  16427.  
  16428.  
  16429.  
  16430.            </div>
  16431.          
  16432.  
  16433.          
  16434.            
  16435.          
  16436.        
  16437.  
  16438.        
  16439.          <div class="productitem--description">
  16440.            <p>Description: New genuine Acer laptop hinge and bracket set.
  16441. Part #'s: 33.PAA02.007, 091203 240, 091221 210.
  16442. Compatible Models: Acer Aspire 4235, 42...</p>
  16443.  
  16444.            
  16445.              <a
  16446.                href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
  16447.                class="productitem--link"
  16448.                data-product-page-link
  16449.              >
  16450.                View full details
  16451.              </a>
  16452.            
  16453.          </div>
  16454.        
  16455.      </div>
  16456.  
  16457.      
  16458.        
  16459.          
  16460.          
  16461.          
  16462.  
  16463.          
  16464.          
  16465.  
  16466.          
  16467.  
  16468.          
  16469.  
  16470.          <div class="productitem--actions" data-product-actions>
  16471.            <div class="productitem--listview-price">
  16472.              
  16473.  
  16474.  
  16475.  
  16476.  
  16477.  
  16478.  
  16479.  
  16480.  
  16481.  
  16482.  
  16483.  
  16484.  
  16485.  
  16486.  
  16487.  
  16488.  
  16489.  
  16490.  
  16491.  
  16492.  
  16493.  
  16494.  
  16495.  
  16496.  
  16497.  
  16498.  
  16499.  
  16500.  
  16501.  
  16502.  
  16503. <div class="price productitem__price ">
  16504.  
  16505.    <div
  16506.      class="price__compare-at visible"
  16507.      data-price-compare-container
  16508.    >
  16509.  
  16510.      
  16511.        <span class="money price__original" data-price-original></span>
  16512.      
  16513.    </div>
  16514.  
  16515.  
  16516.    
  16517.      
  16518.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16519.        
  16520.          <span class="visually-hidden">Original price</span>
  16521.          <span class="money price__compare-at--min" data-price-compare-min>
  16522.            $65.99
  16523.          </span>
  16524.          -
  16525.          <span class="visually-hidden">Original price</span>
  16526.          <span class="money price__compare-at--max" data-price-compare-max>
  16527.            $65.99
  16528.          </span>
  16529.        
  16530.      </div>
  16531.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16532.        <span class="visually-hidden">Original price</span>
  16533.        <span class="money price__compare-at--single" data-price-compare>
  16534.          
  16535.        </span>
  16536.      </div>
  16537.    
  16538.  
  16539.  
  16540.  <div class="price__current price__current--emphasize " data-price-container>
  16541.  
  16542.    
  16543.  
  16544.    
  16545.      
  16546.      
  16547.      <span class="money" data-price>
  16548.        $65.99
  16549.      </span>
  16550.    
  16551.    
  16552.  </div>
  16553.  
  16554.  
  16555.    
  16556.    <div class="price__current--hidden" data-current-price-range-hidden>
  16557.      
  16558.        <span class="money price__current--min" data-price-min>$65.99</span>
  16559.        -
  16560.        <span class="money price__current--max" data-price-max>$65.99</span>
  16561.      
  16562.    </div>
  16563.    <div class="price__current--hidden" data-current-price-hidden>
  16564.      <span class="visually-hidden">Current price</span>
  16565.      <span class="money" data-price>
  16566.        $65.99
  16567.      </span>
  16568.    </div>
  16569.  
  16570.  
  16571.  
  16572.    
  16573.    
  16574.    
  16575.    
  16576.  
  16577.    <div
  16578.      class="
  16579.        productitem__unit-price
  16580.        hidden
  16581.      "
  16582.      data-unit-price
  16583.    >
  16584.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  16585.    </div>
  16586.  
  16587.  
  16588.  
  16589. </div>
  16590.  
  16591.  
  16592.            </div>
  16593.  
  16594.            <div class="productitem--listview-badge">
  16595.              
  16596.  
  16597.  
  16598.  
  16599.  
  16600.  
  16601.  
  16602.  
  16603.  
  16604.  
  16605.  
  16606.  
  16607.  
  16608.  
  16609.  
  16610.  
  16611.  
  16612.  
  16613.  
  16614.  
  16615.  
  16616.  
  16617.  
  16618.  
  16619.  
  16620.  
  16621.  
  16622.  
  16623.            </div>
  16624.  
  16625.            
  16626.              <div
  16627.                class="
  16628.                  productitem--action
  16629.                  quickshop-button
  16630.                  
  16631.                "
  16632.              >
  16633.                <button
  16634.                  class="productitem--action-trigger button-secondary"
  16635.                  data-quickshop-full
  16636.                  
  16637.                  
  16638.                  type="button"
  16639.                >
  16640.                  Quick shop
  16641.                </button>
  16642.              </div>
  16643.            
  16644.  
  16645.            
  16646.              <div
  16647.                class="
  16648.                  productitem--action
  16649.                  atc--button
  16650.                  
  16651.                "
  16652.              >
  16653.                <button
  16654.                  class="productitem--action-trigger productitem--action-atc button-primary"
  16655.                  type="button"
  16656.                  aria-label="Add to cart"
  16657.                  
  16658.                    data-quick-buy
  16659.                  
  16660.                  data-variant-id="2838819504151"
  16661.                  
  16662.                >
  16663.                  <span class="atc-button--text">
  16664.                    Add to cart
  16665.                  </span>
  16666.                  <span class="atc-button--icon"><svg
  16667.  aria-hidden="true"
  16668.  focusable="false"
  16669.  role="presentation"
  16670.  width="26"
  16671.  height="26"
  16672.  viewBox="0 0 26 26"
  16673.  xmlns="http://www.w3.org/2000/svg"
  16674. >
  16675.  <g fill-rule="nonzero" fill="currentColor">
  16676.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  16677.  </g>
  16678. </svg></span>
  16679.                </button>
  16680.              </div>
  16681.            
  16682.          </div>
  16683.        
  16684.      
  16685.    </div>
  16686.  </div>
  16687.  
  16688.  
  16689.    <script type="application/json" data-quick-buy-settings>
  16690.      {
  16691.        "cart_redirection": true,
  16692.        "money_format": "${{amount}}"
  16693.      }
  16694.    </script>
  16695.  
  16696. </li>
  16697.    
  16698.      
  16699.  
  16700.  
  16701.  
  16702.  
  16703.  
  16704.  
  16705.  
  16706.  
  16707.  
  16708.  
  16709.  
  16710.  
  16711.  
  16712.  
  16713.  
  16714.  
  16715.  
  16716.  
  16717.  
  16718.  
  16719.  
  16720.  
  16721.  
  16722.  
  16723.  
  16724.  
  16725.  
  16726.  
  16727.  
  16728.  
  16729.  
  16730.  
  16731.    
  16732.  
  16733.  
  16734.  
  16735. <li
  16736.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  16737.  data-product-item
  16738.  data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16739.  
  16740. >
  16741.  <div class="productitem" data-product-item-content>
  16742.    
  16743.    
  16744.    
  16745.    
  16746.  
  16747.    
  16748.  
  16749.    
  16750.  
  16751.    <div class="productitem__container">
  16752.      
  16753.  
  16754.      <div class="productitem__image-container">
  16755.        <a target="_blank"
  16756.          class="productitem--image-link"
  16757.          href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16758.          aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  16759.          tabindex="-1"
  16760.          data-product-page-link
  16761.        >
  16762.          <figure
  16763.            class="productitem--image"
  16764.            data-product-item-image
  16765.            
  16766.              style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
  16767.            
  16768.          >
  16769.            
  16770.              
  16771.              
  16772.  
  16773.  
  16774.    <noscript data-rimg-noscript>
  16775.      <img loading="lazy"
  16776.        
  16777.          src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16778.        
  16779.  
  16780.        alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16781.        data-rimg="noscript"
  16782.        srcset="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053 1x, //laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_753x1439.jpg?v=1728212053 1.47x"
  16783.        class="productitem--image-primary"
  16784.        
  16785.        
  16786.      >
  16787.    </noscript>
  16788.  
  16789.  
  16790.  <img loading="lazy"
  16791.    
  16792.      src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
  16793.    
  16794.    alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right &amp; Left Lcd Hinge Set"
  16795.  
  16796.    
  16797.      data-rimg="lazy"
  16798.      data-rimg-scale="1"
  16799.      data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
  16800.      data-rimg-max="757x1447"
  16801.      data-rimg-crop="false"
  16802.      
  16803.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
  16804.    
  16805.  
  16806.    class="productitem--image-primary"
  16807.    
  16808.    
  16809.  >
  16810.  
  16811.  
  16812.  
  16813.  <div data-rimg-canvas></div>
  16814.  
  16815.  
  16816.            
  16817.  
  16818.            
  16819.  
  16820.  
  16821.  
  16822.  
  16823.  
  16824.  
  16825.  
  16826.  
  16827.  
  16828.  
  16829.  
  16830.  
  16831.  
  16832.  
  16833.  
  16834.  
  16835.  
  16836.  
  16837.  
  16838.  
  16839.  
  16840.  
  16841.  
  16842.  
  16843.  
  16844.  
  16845.  
  16846.          </figure>
  16847.        </a>
  16848.      </div><div class="productitem--info">
  16849.        
  16850.          
  16851.  
  16852.        
  16853.  
  16854.        
  16855.          
  16856.  
  16857.  
  16858.  
  16859.  
  16860.  
  16861.  
  16862.  
  16863.  
  16864.  
  16865.  
  16866.  
  16867.  
  16868.  
  16869.  
  16870.  
  16871.  
  16872.  
  16873.  
  16874.  
  16875.  
  16876.  
  16877.  
  16878.  
  16879.  
  16880.  
  16881.  
  16882.  
  16883.  
  16884.  
  16885.  
  16886. <div class="price productitem__price ">
  16887.  
  16888.    <div
  16889.      class="price__compare-at visible"
  16890.      data-price-compare-container
  16891.    >
  16892.  
  16893.      
  16894.        <span class="money price__original" data-price-original></span>
  16895.      
  16896.    </div>
  16897.  
  16898.  
  16899.    
  16900.      
  16901.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  16902.        
  16903.          <span class="visually-hidden">Original price</span>
  16904.          <span class="money price__compare-at--min" data-price-compare-min>
  16905.            $50.98
  16906.          </span>
  16907.          -
  16908.          <span class="visually-hidden">Original price</span>
  16909.          <span class="money price__compare-at--max" data-price-compare-max>
  16910.            $50.98
  16911.          </span>
  16912.        
  16913.      </div>
  16914.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  16915.        <span class="visually-hidden">Original price</span>
  16916.        <span class="money price__compare-at--single" data-price-compare>
  16917.          
  16918.        </span>
  16919.      </div>
  16920.    
  16921.  
  16922.  
  16923.  <div class="price__current price__current--emphasize " data-price-container>
  16924.  
  16925.    
  16926.  
  16927.    
  16928.      
  16929.      
  16930.      <span class="money" data-price>
  16931.        $50.98
  16932.      </span>
  16933.    
  16934.    
  16935.  </div>
  16936.  
  16937.  
  16938.    
  16939.    <div class="price__current--hidden" data-current-price-range-hidden>
  16940.      
  16941.        <span class="money price__current--min" data-price-min>$50.98</span>
  16942.        -
  16943.        <span class="money price__current--max" data-price-max>$50.98</span>
  16944.      
  16945.    </div>
  16946.    <div class="price__current--hidden" data-current-price-hidden>
  16947.      <span class="visually-hidden">Current price</span>
  16948.      <span class="money" data-price>
  16949.        $50.98
  16950.      </span>
  16951.    </div>
  16952.  
  16953.  
  16954.  
  16955.    
  16956.    
  16957.    
  16958.    
  16959.  
  16960.    <div
  16961.      class="
  16962.        productitem__unit-price
  16963.        hidden
  16964.      "
  16965.      data-unit-price
  16966.    >
  16967.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  16968.    </div>
  16969.  
  16970.  
  16971.  
  16972. </div>
  16973.  
  16974.  
  16975.        
  16976.  
  16977.        <h2 class="productitem--title">
  16978.          <a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
  16979.            Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
  16980.          </a>
  16981.        </h2>
  16982.  
  16983.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  16984.        <div class="star_container 1468469608471"></div>
  16985.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  16986.  
  16987.        
  16988.          
  16989.            <span class="productitem--vendor">
  16990.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  16991.            </span>
  16992.          
  16993.        
  16994.  
  16995.        
  16996.  
  16997.        
  16998.          
  16999.            <div class="productitem__stock-level">
  17000.              <!--
  17001.  
  17002.  
  17003.  
  17004.  
  17005.  
  17006.  
  17007.  
  17008. <div class="product-stock-level-wrapper" >
  17009.  
  17010.    <span class="
  17011.  product-stock-level
  17012.  product-stock-level--continue-selling
  17013.  
  17014. ">
  17015.      
  17016.  
  17017.      <span class="product-stock-level__text">
  17018.        
  17019.        <div class="product-stock-level__badge-text">
  17020.          
  17021.  
  17022.    In stock
  17023.  
  17024.  
  17025.        </div>
  17026.      </span>
  17027.    </span>
  17028.  
  17029. </div>
  17030. -->
  17031.              
  17032.  
  17033.  
  17034.    
  17035.      <b style="color:green">In stock</b>
  17036.    
  17037.  
  17038.  
  17039.  
  17040.  
  17041.  
  17042.  
  17043.  
  17044.            </div>
  17045.          
  17046.  
  17047.          
  17048.            
  17049.          
  17050.        
  17051.  
  17052.        
  17053.          <div class="productitem--description">
  17054.            <p>
  17055. Description: New Acer right and left laptop lcd hinge set.
  17056.  
  17057.  
  17058. Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
  17059.  
  17060.            
  17061.              <a
  17062.                href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
  17063.                class="productitem--link"
  17064.                data-product-page-link
  17065.              >
  17066.                View full details
  17067.              </a>
  17068.            
  17069.          </div>
  17070.        
  17071.      </div>
  17072.  
  17073.      
  17074.        
  17075.          
  17076.          
  17077.          
  17078.  
  17079.          
  17080.          
  17081.  
  17082.          
  17083.  
  17084.          
  17085.  
  17086.          <div class="productitem--actions" data-product-actions>
  17087.            <div class="productitem--listview-price">
  17088.              
  17089.  
  17090.  
  17091.  
  17092.  
  17093.  
  17094.  
  17095.  
  17096.  
  17097.  
  17098.  
  17099.  
  17100.  
  17101.  
  17102.  
  17103.  
  17104.  
  17105.  
  17106.  
  17107.  
  17108.  
  17109.  
  17110.  
  17111.  
  17112.  
  17113.  
  17114.  
  17115.  
  17116.  
  17117.  
  17118.  
  17119. <div class="price productitem__price ">
  17120.  
  17121.    <div
  17122.      class="price__compare-at visible"
  17123.      data-price-compare-container
  17124.    >
  17125.  
  17126.      
  17127.        <span class="money price__original" data-price-original></span>
  17128.      
  17129.    </div>
  17130.  
  17131.  
  17132.    
  17133.      
  17134.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17135.        
  17136.          <span class="visually-hidden">Original price</span>
  17137.          <span class="money price__compare-at--min" data-price-compare-min>
  17138.            $50.98
  17139.          </span>
  17140.          -
  17141.          <span class="visually-hidden">Original price</span>
  17142.          <span class="money price__compare-at--max" data-price-compare-max>
  17143.            $50.98
  17144.          </span>
  17145.        
  17146.      </div>
  17147.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17148.        <span class="visually-hidden">Original price</span>
  17149.        <span class="money price__compare-at--single" data-price-compare>
  17150.          
  17151.        </span>
  17152.      </div>
  17153.    
  17154.  
  17155.  
  17156.  <div class="price__current price__current--emphasize " data-price-container>
  17157.  
  17158.    
  17159.  
  17160.    
  17161.      
  17162.      
  17163.      <span class="money" data-price>
  17164.        $50.98
  17165.      </span>
  17166.    
  17167.    
  17168.  </div>
  17169.  
  17170.  
  17171.    
  17172.    <div class="price__current--hidden" data-current-price-range-hidden>
  17173.      
  17174.        <span class="money price__current--min" data-price-min>$50.98</span>
  17175.        -
  17176.        <span class="money price__current--max" data-price-max>$50.98</span>
  17177.      
  17178.    </div>
  17179.    <div class="price__current--hidden" data-current-price-hidden>
  17180.      <span class="visually-hidden">Current price</span>
  17181.      <span class="money" data-price>
  17182.        $50.98
  17183.      </span>
  17184.    </div>
  17185.  
  17186.  
  17187.  
  17188.    
  17189.    
  17190.    
  17191.    
  17192.  
  17193.    <div
  17194.      class="
  17195.        productitem__unit-price
  17196.        hidden
  17197.      "
  17198.      data-unit-price
  17199.    >
  17200.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  17201.    </div>
  17202.  
  17203.  
  17204.  
  17205. </div>
  17206.  
  17207.  
  17208.            </div>
  17209.  
  17210.            <div class="productitem--listview-badge">
  17211.              
  17212.  
  17213.  
  17214.  
  17215.  
  17216.  
  17217.  
  17218.  
  17219.  
  17220.  
  17221.  
  17222.  
  17223.  
  17224.  
  17225.  
  17226.  
  17227.  
  17228.  
  17229.  
  17230.  
  17231.  
  17232.  
  17233.  
  17234.  
  17235.  
  17236.  
  17237.  
  17238.  
  17239.            </div>
  17240.  
  17241.            
  17242.              <div
  17243.                class="
  17244.                  productitem--action
  17245.                  quickshop-button
  17246.                  
  17247.                "
  17248.              >
  17249.                <button
  17250.                  class="productitem--action-trigger button-secondary"
  17251.                  data-quickshop-full
  17252.                  
  17253.                  
  17254.                  type="button"
  17255.                >
  17256.                  Quick shop
  17257.                </button>
  17258.              </div>
  17259.            
  17260.  
  17261.            
  17262.              <div
  17263.                class="
  17264.                  productitem--action
  17265.                  atc--button
  17266.                  
  17267.                "
  17268.              >
  17269.                <button
  17270.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17271.                  type="button"
  17272.                  aria-label="Add to cart"
  17273.                  
  17274.                    data-quick-buy
  17275.                  
  17276.                  data-variant-id="12807718895639"
  17277.                  
  17278.                >
  17279.                  <span class="atc-button--text">
  17280.                    Add to cart
  17281.                  </span>
  17282.                  <span class="atc-button--icon"><svg
  17283.  aria-hidden="true"
  17284.  focusable="false"
  17285.  role="presentation"
  17286.  width="26"
  17287.  height="26"
  17288.  viewBox="0 0 26 26"
  17289.  xmlns="http://www.w3.org/2000/svg"
  17290. >
  17291.  <g fill-rule="nonzero" fill="currentColor">
  17292.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  17293.  </g>
  17294. </svg></span>
  17295.                </button>
  17296.              </div>
  17297.            
  17298.          </div>
  17299.        
  17300.      
  17301.    </div>
  17302.  </div>
  17303.  
  17304.  
  17305.    <script type="application/json" data-quick-buy-settings>
  17306.      {
  17307.        "cart_redirection": true,
  17308.        "money_format": "${{amount}}"
  17309.      }
  17310.    </script>
  17311.  
  17312. </li>
  17313.    
  17314.      
  17315.  
  17316.  
  17317.  
  17318.  
  17319.  
  17320.  
  17321.  
  17322.  
  17323.  
  17324.  
  17325.  
  17326.  
  17327.  
  17328.  
  17329.  
  17330.  
  17331.  
  17332.  
  17333.  
  17334.  
  17335.  
  17336.  
  17337.  
  17338.  
  17339.  
  17340.  
  17341.  
  17342.  
  17343.  
  17344.  
  17345.  
  17346.  
  17347.    
  17348.  
  17349.  
  17350.  
  17351. <li
  17352.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17353.  data-product-item
  17354.  data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17355.  
  17356. >
  17357.  <div class="productitem" data-product-item-content>
  17358.    
  17359.    
  17360.    
  17361.    
  17362.  
  17363.    
  17364.  
  17365.    
  17366.  
  17367.    <div class="productitem__container">
  17368.      
  17369.  
  17370.      <div class="productitem__image-container">
  17371.        <a target="_blank"
  17372.          class="productitem--image-link"
  17373.          href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17374.          aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
  17375.          tabindex="-1"
  17376.          data-product-page-link
  17377.        >
  17378.          <figure
  17379.            class="productitem--image"
  17380.            data-product-item-image
  17381.            
  17382.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17383.            
  17384.          >
  17385.            
  17386.              
  17387.              
  17388.  
  17389.  
  17390.    <noscript data-rimg-noscript>
  17391.      <img loading="lazy"
  17392.        
  17393.          src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17394.        
  17395.  
  17396.        alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17397.        data-rimg="noscript"
  17398.        srcset="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966 1x, //laptopparts.ca/cdn/shop/products/23.apq0n.001_599x599.jpg?v=1715271966 1.17x"
  17399.        class="productitem--image-primary"
  17400.        
  17401.        
  17402.      >
  17403.    </noscript>
  17404.  
  17405.  
  17406.  <img loading="lazy"
  17407.    
  17408.      src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
  17409.    
  17410.    alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
  17411.  
  17412.    
  17413.      data-rimg="lazy"
  17414.      data-rimg-scale="1"
  17415.      data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
  17416.      data-rimg-max="600x600"
  17417.      data-rimg-crop="false"
  17418.      
  17419.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  17420.    
  17421.  
  17422.    class="productitem--image-primary"
  17423.    
  17424.    
  17425.  >
  17426.  
  17427.  
  17428.  
  17429.  <div data-rimg-canvas></div>
  17430.  
  17431.  
  17432.            
  17433.  
  17434.            
  17435.  
  17436.  
  17437.  
  17438.  
  17439.  
  17440.  
  17441.  
  17442.  
  17443.  
  17444.  
  17445.  
  17446.  
  17447.  
  17448.  
  17449.  
  17450.  
  17451.  
  17452.  
  17453.  
  17454.  
  17455.  
  17456.  
  17457.  
  17458.  
  17459.  
  17460.  
  17461.  
  17462.          </figure>
  17463.        </a>
  17464.      </div><div class="productitem--info">
  17465.        
  17466.          
  17467.  
  17468.        
  17469.  
  17470.        
  17471.          
  17472.  
  17473.  
  17474.  
  17475.  
  17476.  
  17477.  
  17478.  
  17479.  
  17480.  
  17481.  
  17482.  
  17483.  
  17484.  
  17485.  
  17486.  
  17487.  
  17488.  
  17489.  
  17490.  
  17491.  
  17492.  
  17493.  
  17494.  
  17495.  
  17496.  
  17497.  
  17498.  
  17499.  
  17500.  
  17501.  
  17502. <div class="price productitem__price ">
  17503.  
  17504.    <div
  17505.      class="price__compare-at visible"
  17506.      data-price-compare-container
  17507.    >
  17508.  
  17509.      
  17510.        <span class="money price__original" data-price-original></span>
  17511.      
  17512.    </div>
  17513.  
  17514.  
  17515.    
  17516.      
  17517.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17518.        
  17519.          <span class="visually-hidden">Original price</span>
  17520.          <span class="money price__compare-at--min" data-price-compare-min>
  17521.            $58.99
  17522.          </span>
  17523.          -
  17524.          <span class="visually-hidden">Original price</span>
  17525.          <span class="money price__compare-at--max" data-price-compare-max>
  17526.            $58.99
  17527.          </span>
  17528.        
  17529.      </div>
  17530.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17531.        <span class="visually-hidden">Original price</span>
  17532.        <span class="money price__compare-at--single" data-price-compare>
  17533.          
  17534.        </span>
  17535.      </div>
  17536.    
  17537.  
  17538.  
  17539.  <div class="price__current price__current--emphasize " data-price-container>
  17540.  
  17541.    
  17542.  
  17543.    
  17544.      
  17545.      
  17546.      <span class="money" data-price>
  17547.        $58.99
  17548.      </span>
  17549.    
  17550.    
  17551.  </div>
  17552.  
  17553.  
  17554.    
  17555.    <div class="price__current--hidden" data-current-price-range-hidden>
  17556.      
  17557.        <span class="money price__current--min" data-price-min>$58.99</span>
  17558.        -
  17559.        <span class="money price__current--max" data-price-max>$58.99</span>
  17560.      
  17561.    </div>
  17562.    <div class="price__current--hidden" data-current-price-hidden>
  17563.      <span class="visually-hidden">Current price</span>
  17564.      <span class="money" data-price>
  17565.        $58.99
  17566.      </span>
  17567.    </div>
  17568.  
  17569.  
  17570.  
  17571.    
  17572.    
  17573.    
  17574.    
  17575.  
  17576.    <div
  17577.      class="
  17578.        productitem__unit-price
  17579.        hidden
  17580.      "
  17581.      data-unit-price
  17582.    >
  17583.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  17584.    </div>
  17585.  
  17586.  
  17587.  
  17588. </div>
  17589.  
  17590.  
  17591.        
  17592.  
  17593.        <h2 class="productitem--title">
  17594.          <a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
  17595.            Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
  17596.          </a>
  17597.        </h2>
  17598.  
  17599.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  17600.        <div class="star_container 4451325446"></div>
  17601.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  17602.  
  17603.        
  17604.          
  17605.            <span class="productitem--vendor">
  17606.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  17607.            </span>
  17608.          
  17609.        
  17610.  
  17611.        
  17612.  
  17613.        
  17614.          
  17615.            <div class="productitem__stock-level">
  17616.              <!--
  17617.  
  17618.  
  17619.  
  17620.  
  17621.  
  17622.  
  17623.  
  17624. <div class="product-stock-level-wrapper" >
  17625.  
  17626.    <span class="
  17627.  product-stock-level
  17628.  product-stock-level--continue-selling
  17629.  
  17630. ">
  17631.      
  17632.  
  17633.      <span class="product-stock-level__text">
  17634.        
  17635.        <div class="product-stock-level__badge-text">
  17636.          
  17637.  
  17638.    In stock
  17639.  
  17640.  
  17641.        </div>
  17642.      </span>
  17643.    </span>
  17644.  
  17645. </div>
  17646. -->
  17647.              
  17648.  
  17649.  
  17650.    
  17651.      <b style="color:green">In stock</b>
  17652.    
  17653.  
  17654.  
  17655.  
  17656.  
  17657.  
  17658.  
  17659.  
  17660.            </div>
  17661.          
  17662.  
  17663.          
  17664.            
  17665.          
  17666.        
  17667.  
  17668.        
  17669.          <div class="productitem--description">
  17670.            <p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
  17671.  
  17672.            
  17673.          </div>
  17674.        
  17675.      </div>
  17676.  
  17677.      
  17678.        
  17679.          
  17680.          
  17681.          
  17682.  
  17683.          
  17684.          
  17685.  
  17686.          
  17687.  
  17688.          
  17689.  
  17690.          <div class="productitem--actions" data-product-actions>
  17691.            <div class="productitem--listview-price">
  17692.              
  17693.  
  17694.  
  17695.  
  17696.  
  17697.  
  17698.  
  17699.  
  17700.  
  17701.  
  17702.  
  17703.  
  17704.  
  17705.  
  17706.  
  17707.  
  17708.  
  17709.  
  17710.  
  17711.  
  17712.  
  17713.  
  17714.  
  17715.  
  17716.  
  17717.  
  17718.  
  17719.  
  17720.  
  17721.  
  17722.  
  17723. <div class="price productitem__price ">
  17724.  
  17725.    <div
  17726.      class="price__compare-at visible"
  17727.      data-price-compare-container
  17728.    >
  17729.  
  17730.      
  17731.        <span class="money price__original" data-price-original></span>
  17732.      
  17733.    </div>
  17734.  
  17735.  
  17736.    
  17737.      
  17738.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  17739.        
  17740.          <span class="visually-hidden">Original price</span>
  17741.          <span class="money price__compare-at--min" data-price-compare-min>
  17742.            $58.99
  17743.          </span>
  17744.          -
  17745.          <span class="visually-hidden">Original price</span>
  17746.          <span class="money price__compare-at--max" data-price-compare-max>
  17747.            $58.99
  17748.          </span>
  17749.        
  17750.      </div>
  17751.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  17752.        <span class="visually-hidden">Original price</span>
  17753.        <span class="money price__compare-at--single" data-price-compare>
  17754.          
  17755.        </span>
  17756.      </div>
  17757.    
  17758.  
  17759.  
  17760.  <div class="price__current price__current--emphasize " data-price-container>
  17761.  
  17762.    
  17763.  
  17764.    
  17765.      
  17766.      
  17767.      <span class="money" data-price>
  17768.        $58.99
  17769.      </span>
  17770.    
  17771.    
  17772.  </div>
  17773.  
  17774.  
  17775.    
  17776.    <div class="price__current--hidden" data-current-price-range-hidden>
  17777.      
  17778.        <span class="money price__current--min" data-price-min>$58.99</span>
  17779.        -
  17780.        <span class="money price__current--max" data-price-max>$58.99</span>
  17781.      
  17782.    </div>
  17783.    <div class="price__current--hidden" data-current-price-hidden>
  17784.      <span class="visually-hidden">Current price</span>
  17785.      <span class="money" data-price>
  17786.        $58.99
  17787.      </span>
  17788.    </div>
  17789.  
  17790.  
  17791.  
  17792.    
  17793.    
  17794.    
  17795.    
  17796.  
  17797.    <div
  17798.      class="
  17799.        productitem__unit-price
  17800.        hidden
  17801.      "
  17802.      data-unit-price
  17803.    >
  17804.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  17805.    </div>
  17806.  
  17807.  
  17808.  
  17809. </div>
  17810.  
  17811.  
  17812.            </div>
  17813.  
  17814.            <div class="productitem--listview-badge">
  17815.              
  17816.  
  17817.  
  17818.  
  17819.  
  17820.  
  17821.  
  17822.  
  17823.  
  17824.  
  17825.  
  17826.  
  17827.  
  17828.  
  17829.  
  17830.  
  17831.  
  17832.  
  17833.  
  17834.  
  17835.  
  17836.  
  17837.  
  17838.  
  17839.  
  17840.  
  17841.  
  17842.  
  17843.            </div>
  17844.  
  17845.            
  17846.              <div
  17847.                class="
  17848.                  productitem--action
  17849.                  quickshop-button
  17850.                  
  17851.                "
  17852.              >
  17853.                <button
  17854.                  class="productitem--action-trigger button-secondary"
  17855.                  data-quickshop-full
  17856.                  
  17857.                  
  17858.                  type="button"
  17859.                >
  17860.                  Quick shop
  17861.                </button>
  17862.              </div>
  17863.            
  17864.  
  17865.            
  17866.              <div
  17867.                class="
  17868.                  productitem--action
  17869.                  atc--button
  17870.                  
  17871.                "
  17872.              >
  17873.                <button
  17874.                  class="productitem--action-trigger productitem--action-atc button-primary"
  17875.                  type="button"
  17876.                  aria-label="Add to cart"
  17877.                  
  17878.                    data-quick-buy
  17879.                  
  17880.                  data-variant-id="39666095259735"
  17881.                  
  17882.                >
  17883.                  <span class="atc-button--text">
  17884.                    Add to cart
  17885.                  </span>
  17886.                  <span class="atc-button--icon"><svg
  17887.  aria-hidden="true"
  17888.  focusable="false"
  17889.  role="presentation"
  17890.  width="26"
  17891.  height="26"
  17892.  viewBox="0 0 26 26"
  17893.  xmlns="http://www.w3.org/2000/svg"
  17894. >
  17895.  <g fill-rule="nonzero" fill="currentColor">
  17896.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  17897.  </g>
  17898. </svg></span>
  17899.                </button>
  17900.              </div>
  17901.            
  17902.          </div>
  17903.        
  17904.      
  17905.    </div>
  17906.  </div>
  17907.  
  17908.  
  17909.    <script type="application/json" data-quick-buy-settings>
  17910.      {
  17911.        "cart_redirection": true,
  17912.        "money_format": "${{amount}}"
  17913.      }
  17914.    </script>
  17915.  
  17916. </li>
  17917.    
  17918.      
  17919.  
  17920.  
  17921.  
  17922.  
  17923.  
  17924.  
  17925.  
  17926.  
  17927.  
  17928.  
  17929.  
  17930.  
  17931.  
  17932.  
  17933.  
  17934.  
  17935.  
  17936.  
  17937.  
  17938.  
  17939.  
  17940.  
  17941.  
  17942.  
  17943.  
  17944.  
  17945.  
  17946.  
  17947.  
  17948.  
  17949.  
  17950.  
  17951.    
  17952.  
  17953.  
  17954.  
  17955. <li
  17956.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  17957.  data-product-item
  17958.  data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17959.  
  17960. >
  17961.  <div class="productitem" data-product-item-content>
  17962.    
  17963.    
  17964.    
  17965.    
  17966.  
  17967.    
  17968.  
  17969.    
  17970.  
  17971.    <div class="productitem__container">
  17972.      
  17973.  
  17974.      <div class="productitem__image-container">
  17975.        <a target="_blank"
  17976.          class="productitem--image-link"
  17977.          href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17978.          aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  17979.          tabindex="-1"
  17980.          data-product-page-link
  17981.        >
  17982.          <figure
  17983.            class="productitem--image"
  17984.            data-product-item-image
  17985.            
  17986.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  17987.            
  17988.          >
  17989.            
  17990.              
  17991.              
  17992.  
  17993.  
  17994.    <noscript data-rimg-noscript>
  17995.      <img loading="lazy"
  17996.        
  17997.          src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  17998.        
  17999.  
  18000.        alt="Acer Aspire 5742Z USB Board 55.R4F02.002 - LaptopParts.ca"
  18001.        data-rimg="noscript"
  18002.        srcset="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258 1x, //laptopparts.ca/cdn/shop/products/55.r4f02.002_599x599.png?v=1697125258 1.17x"
  18003.        class="productitem--image-primary"
  18004.        
  18005.        
  18006.      >
  18007.    </noscript>
  18008.  
  18009.  
  18010.  <img loading="lazy"
  18011.    
  18012.      src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
  18013.    
  18014.    alt="Acer Aspire 5742Z USB Board 55.R4F02.002 - LaptopParts.ca"
  18015.  
  18016.    
  18017.      data-rimg="lazy"
  18018.      data-rimg-scale="1"
  18019.      data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
  18020.      data-rimg-max="603x603"
  18021.      data-rimg-crop="false"
  18022.      
  18023.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  18024.    
  18025.  
  18026.    class="productitem--image-primary"
  18027.    
  18028.    
  18029.  >
  18030.  
  18031.  
  18032.  
  18033.  <div data-rimg-canvas></div>
  18034.  
  18035.  
  18036.            
  18037.  
  18038.            
  18039.  
  18040.  
  18041.  
  18042.  
  18043.  
  18044.  
  18045.  
  18046.  
  18047.  
  18048.  
  18049.  
  18050.  
  18051.  
  18052.  
  18053.  
  18054.  
  18055.  
  18056.  
  18057.  
  18058.  
  18059.  
  18060.  
  18061.  
  18062.  
  18063.  
  18064.  
  18065.  
  18066.          </figure>
  18067.        </a>
  18068.      </div><div class="productitem--info">
  18069.        
  18070.          
  18071.  
  18072.        
  18073.  
  18074.        
  18075.          
  18076.  
  18077.  
  18078.  
  18079.  
  18080.  
  18081.  
  18082.  
  18083.  
  18084.  
  18085.  
  18086.  
  18087.  
  18088.  
  18089.  
  18090.  
  18091.  
  18092.  
  18093.  
  18094.  
  18095.  
  18096.  
  18097.  
  18098.  
  18099.  
  18100.  
  18101.  
  18102.  
  18103.  
  18104.  
  18105.  
  18106. <div class="price productitem__price ">
  18107.  
  18108.    <div
  18109.      class="price__compare-at visible"
  18110.      data-price-compare-container
  18111.    >
  18112.  
  18113.      
  18114.        <span class="money price__original" data-price-original></span>
  18115.      
  18116.    </div>
  18117.  
  18118.  
  18119.    
  18120.      
  18121.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18122.        
  18123.          <span class="visually-hidden">Original price</span>
  18124.          <span class="money price__compare-at--min" data-price-compare-min>
  18125.            $56.99
  18126.          </span>
  18127.          -
  18128.          <span class="visually-hidden">Original price</span>
  18129.          <span class="money price__compare-at--max" data-price-compare-max>
  18130.            $56.99
  18131.          </span>
  18132.        
  18133.      </div>
  18134.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18135.        <span class="visually-hidden">Original price</span>
  18136.        <span class="money price__compare-at--single" data-price-compare>
  18137.          
  18138.        </span>
  18139.      </div>
  18140.    
  18141.  
  18142.  
  18143.  <div class="price__current price__current--emphasize " data-price-container>
  18144.  
  18145.    
  18146.  
  18147.    
  18148.      
  18149.      
  18150.      <span class="money" data-price>
  18151.        $56.99
  18152.      </span>
  18153.    
  18154.    
  18155.  </div>
  18156.  
  18157.  
  18158.    
  18159.    <div class="price__current--hidden" data-current-price-range-hidden>
  18160.      
  18161.        <span class="money price__current--min" data-price-min>$56.99</span>
  18162.        -
  18163.        <span class="money price__current--max" data-price-max>$56.99</span>
  18164.      
  18165.    </div>
  18166.    <div class="price__current--hidden" data-current-price-hidden>
  18167.      <span class="visually-hidden">Current price</span>
  18168.      <span class="money" data-price>
  18169.        $56.99
  18170.      </span>
  18171.    </div>
  18172.  
  18173.  
  18174.  
  18175.    
  18176.    
  18177.    
  18178.    
  18179.  
  18180.    <div
  18181.      class="
  18182.        productitem__unit-price
  18183.        hidden
  18184.      "
  18185.      data-unit-price
  18186.    >
  18187.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  18188.    </div>
  18189.  
  18190.  
  18191.  
  18192. </div>
  18193.  
  18194.  
  18195.        
  18196.  
  18197.        <h2 class="productitem--title">
  18198.          <a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
  18199.            Acer Aspire 5742Z USB Board 55.R4F02.002
  18200.          </a>
  18201.        </h2>
  18202.  
  18203.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18204.        <div class="star_container 4605263622"></div>
  18205.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18206.  
  18207.        
  18208.          
  18209.            <span class="productitem--vendor">
  18210.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18211.            </span>
  18212.          
  18213.        
  18214.  
  18215.        
  18216.  
  18217.        
  18218.          
  18219.            <div class="productitem__stock-level">
  18220.              <!--
  18221.  
  18222.  
  18223.  
  18224.  
  18225.  
  18226.  
  18227.  
  18228. <div class="product-stock-level-wrapper" >
  18229.  
  18230.    <span class="
  18231.  product-stock-level
  18232.  product-stock-level--continue-selling
  18233.  
  18234. ">
  18235.      
  18236.  
  18237.      <span class="product-stock-level__text">
  18238.        
  18239.        <div class="product-stock-level__badge-text">
  18240.          
  18241.  
  18242.    In stock
  18243.  
  18244.  
  18245.        </div>
  18246.      </span>
  18247.    </span>
  18248.  
  18249. </div>
  18250. -->
  18251.              
  18252.  
  18253.  
  18254.    
  18255.      <b style="color:green">In stock</b>
  18256.    
  18257.  
  18258.  
  18259.  
  18260.  
  18261.  
  18262.  
  18263.  
  18264.            </div>
  18265.          
  18266.  
  18267.          
  18268.            
  18269.          
  18270.        
  18271.  
  18272.        
  18273.          <div class="productitem--description">
  18274.            <p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
  18275. Compatible Models:
  18276. Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
  18277. Gateway N...</p>
  18278.  
  18279.            
  18280.              <a
  18281.                href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
  18282.                class="productitem--link"
  18283.                data-product-page-link
  18284.              >
  18285.                View full details
  18286.              </a>
  18287.            
  18288.          </div>
  18289.        
  18290.      </div>
  18291.  
  18292.      
  18293.        
  18294.          
  18295.          
  18296.          
  18297.  
  18298.          
  18299.          
  18300.  
  18301.          
  18302.  
  18303.          
  18304.  
  18305.          <div class="productitem--actions" data-product-actions>
  18306.            <div class="productitem--listview-price">
  18307.              
  18308.  
  18309.  
  18310.  
  18311.  
  18312.  
  18313.  
  18314.  
  18315.  
  18316.  
  18317.  
  18318.  
  18319.  
  18320.  
  18321.  
  18322.  
  18323.  
  18324.  
  18325.  
  18326.  
  18327.  
  18328.  
  18329.  
  18330.  
  18331.  
  18332.  
  18333.  
  18334.  
  18335.  
  18336.  
  18337.  
  18338. <div class="price productitem__price ">
  18339.  
  18340.    <div
  18341.      class="price__compare-at visible"
  18342.      data-price-compare-container
  18343.    >
  18344.  
  18345.      
  18346.        <span class="money price__original" data-price-original></span>
  18347.      
  18348.    </div>
  18349.  
  18350.  
  18351.    
  18352.      
  18353.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18354.        
  18355.          <span class="visually-hidden">Original price</span>
  18356.          <span class="money price__compare-at--min" data-price-compare-min>
  18357.            $56.99
  18358.          </span>
  18359.          -
  18360.          <span class="visually-hidden">Original price</span>
  18361.          <span class="money price__compare-at--max" data-price-compare-max>
  18362.            $56.99
  18363.          </span>
  18364.        
  18365.      </div>
  18366.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18367.        <span class="visually-hidden">Original price</span>
  18368.        <span class="money price__compare-at--single" data-price-compare>
  18369.          
  18370.        </span>
  18371.      </div>
  18372.    
  18373.  
  18374.  
  18375.  <div class="price__current price__current--emphasize " data-price-container>
  18376.  
  18377.    
  18378.  
  18379.    
  18380.      
  18381.      
  18382.      <span class="money" data-price>
  18383.        $56.99
  18384.      </span>
  18385.    
  18386.    
  18387.  </div>
  18388.  
  18389.  
  18390.    
  18391.    <div class="price__current--hidden" data-current-price-range-hidden>
  18392.      
  18393.        <span class="money price__current--min" data-price-min>$56.99</span>
  18394.        -
  18395.        <span class="money price__current--max" data-price-max>$56.99</span>
  18396.      
  18397.    </div>
  18398.    <div class="price__current--hidden" data-current-price-hidden>
  18399.      <span class="visually-hidden">Current price</span>
  18400.      <span class="money" data-price>
  18401.        $56.99
  18402.      </span>
  18403.    </div>
  18404.  
  18405.  
  18406.  
  18407.    
  18408.    
  18409.    
  18410.    
  18411.  
  18412.    <div
  18413.      class="
  18414.        productitem__unit-price
  18415.        hidden
  18416.      "
  18417.      data-unit-price
  18418.    >
  18419.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  18420.    </div>
  18421.  
  18422.  
  18423.  
  18424. </div>
  18425.  
  18426.  
  18427.            </div>
  18428.  
  18429.            <div class="productitem--listview-badge">
  18430.              
  18431.  
  18432.  
  18433.  
  18434.  
  18435.  
  18436.  
  18437.  
  18438.  
  18439.  
  18440.  
  18441.  
  18442.  
  18443.  
  18444.  
  18445.  
  18446.  
  18447.  
  18448.  
  18449.  
  18450.  
  18451.  
  18452.  
  18453.  
  18454.  
  18455.  
  18456.  
  18457.  
  18458.            </div>
  18459.  
  18460.            
  18461.              <div
  18462.                class="
  18463.                  productitem--action
  18464.                  quickshop-button
  18465.                  
  18466.                "
  18467.              >
  18468.                <button
  18469.                  class="productitem--action-trigger button-secondary"
  18470.                  data-quickshop-full
  18471.                  
  18472.                  
  18473.                  type="button"
  18474.                >
  18475.                  Quick shop
  18476.                </button>
  18477.              </div>
  18478.            
  18479.  
  18480.            
  18481.              <div
  18482.                class="
  18483.                  productitem--action
  18484.                  atc--button
  18485.                  
  18486.                "
  18487.              >
  18488.                <button
  18489.                  class="productitem--action-trigger productitem--action-atc button-primary"
  18490.                  type="button"
  18491.                  aria-label="Add to cart"
  18492.                  
  18493.                    data-quick-buy
  18494.                  
  18495.                  data-variant-id="15084894150"
  18496.                  
  18497.                >
  18498.                  <span class="atc-button--text">
  18499.                    Add to cart
  18500.                  </span>
  18501.                  <span class="atc-button--icon"><svg
  18502.  aria-hidden="true"
  18503.  focusable="false"
  18504.  role="presentation"
  18505.  width="26"
  18506.  height="26"
  18507.  viewBox="0 0 26 26"
  18508.  xmlns="http://www.w3.org/2000/svg"
  18509. >
  18510.  <g fill-rule="nonzero" fill="currentColor">
  18511.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  18512.  </g>
  18513. </svg></span>
  18514.                </button>
  18515.              </div>
  18516.            
  18517.          </div>
  18518.        
  18519.      
  18520.    </div>
  18521.  </div>
  18522.  
  18523.  
  18524.    <script type="application/json" data-quick-buy-settings>
  18525.      {
  18526.        "cart_redirection": true,
  18527.        "money_format": "${{amount}}"
  18528.      }
  18529.    </script>
  18530.  
  18531. </li>
  18532.    
  18533.      
  18534.  
  18535.  
  18536.  
  18537.  
  18538.  
  18539.  
  18540.  
  18541.  
  18542.  
  18543.  
  18544.  
  18545.  
  18546.  
  18547.  
  18548.  
  18549.  
  18550.  
  18551.  
  18552.  
  18553.  
  18554.  
  18555.  
  18556.  
  18557.  
  18558.  
  18559.  
  18560.  
  18561.  
  18562.  
  18563.  
  18564.  
  18565.  
  18566.    
  18567.  
  18568.  
  18569.  
  18570. <li
  18571.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  18572.  data-product-item
  18573.  data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18574.  
  18575. >
  18576.  <div class="productitem" data-product-item-content>
  18577.    
  18578.    
  18579.    
  18580.    
  18581.  
  18582.    
  18583.  
  18584.    
  18585.  
  18586.    <div class="productitem__container">
  18587.      
  18588.  
  18589.      <div class="productitem__image-container">
  18590.        <a target="_blank"
  18591.          class="productitem--image-link"
  18592.          href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18593.          aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18594.          tabindex="-1"
  18595.          data-product-page-link
  18596.        >
  18597.          <figure
  18598.            class="productitem--image"
  18599.            data-product-item-image
  18600.            
  18601.              style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
  18602.            
  18603.          >
  18604.            
  18605.              
  18606.              
  18607.  
  18608.  
  18609.    <noscript data-rimg-noscript>
  18610.      <img loading="lazy"
  18611.        
  18612.          src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18613.        
  18614.  
  18615.        alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18616.        data-rimg="noscript"
  18617.        srcset="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531 1x, //laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_1024x768.jpg?v=1729362531 2x, //laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_1495x1121.jpg?v=1729362531 2.92x"
  18618.        class="productitem--image-primary"
  18619.        
  18620.        
  18621.      >
  18622.    </noscript>
  18623.  
  18624.  
  18625.  <img loading="lazy"
  18626.    
  18627.      src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
  18628.    
  18629.    alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
  18630.  
  18631.    
  18632.      data-rimg="lazy"
  18633.      data-rimg-scale="1"
  18634.      data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
  18635.      data-rimg-max="1500x1125"
  18636.      data-rimg-crop="false"
  18637.      
  18638.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
  18639.    
  18640.  
  18641.    class="productitem--image-primary"
  18642.    
  18643.    
  18644.  >
  18645.  
  18646.  
  18647.  
  18648.  <div data-rimg-canvas></div>
  18649.  
  18650.  
  18651.            
  18652.  
  18653.            
  18654.  
  18655.  
  18656.  
  18657.  
  18658.  
  18659.  
  18660.  
  18661.  
  18662.  
  18663.  
  18664.  
  18665.  
  18666.  
  18667.  
  18668.  
  18669.  
  18670.  
  18671.  
  18672.  
  18673.  
  18674.  
  18675.  
  18676.  
  18677.  
  18678.  
  18679.  
  18680.  
  18681.          </figure>
  18682.        </a>
  18683.      </div><div class="productitem--info">
  18684.        
  18685.          
  18686.  
  18687.        
  18688.  
  18689.        
  18690.          
  18691.  
  18692.  
  18693.  
  18694.  
  18695.  
  18696.  
  18697.  
  18698.  
  18699.  
  18700.  
  18701.  
  18702.  
  18703.  
  18704.  
  18705.  
  18706.  
  18707.  
  18708.  
  18709.  
  18710.  
  18711.  
  18712.  
  18713.  
  18714.  
  18715.  
  18716.  
  18717.  
  18718.  
  18719.  
  18720.  
  18721. <div class="price productitem__price ">
  18722.  
  18723.    <div
  18724.      class="price__compare-at visible"
  18725.      data-price-compare-container
  18726.    >
  18727.  
  18728.      
  18729.        <span class="money price__original" data-price-original></span>
  18730.      
  18731.    </div>
  18732.  
  18733.  
  18734.    
  18735.      
  18736.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18737.        
  18738.          <span class="visually-hidden">Original price</span>
  18739.          <span class="money price__compare-at--min" data-price-compare-min>
  18740.            $56.99
  18741.          </span>
  18742.          -
  18743.          <span class="visually-hidden">Original price</span>
  18744.          <span class="money price__compare-at--max" data-price-compare-max>
  18745.            $56.99
  18746.          </span>
  18747.        
  18748.      </div>
  18749.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18750.        <span class="visually-hidden">Original price</span>
  18751.        <span class="money price__compare-at--single" data-price-compare>
  18752.          
  18753.        </span>
  18754.      </div>
  18755.    
  18756.  
  18757.  
  18758.  <div class="price__current price__current--emphasize " data-price-container>
  18759.  
  18760.    
  18761.  
  18762.    
  18763.      
  18764.      
  18765.      <span class="money" data-price>
  18766.        $56.99
  18767.      </span>
  18768.    
  18769.    
  18770.  </div>
  18771.  
  18772.  
  18773.    
  18774.    <div class="price__current--hidden" data-current-price-range-hidden>
  18775.      
  18776.        <span class="money price__current--min" data-price-min>$56.99</span>
  18777.        -
  18778.        <span class="money price__current--max" data-price-max>$56.99</span>
  18779.      
  18780.    </div>
  18781.    <div class="price__current--hidden" data-current-price-hidden>
  18782.      <span class="visually-hidden">Current price</span>
  18783.      <span class="money" data-price>
  18784.        $56.99
  18785.      </span>
  18786.    </div>
  18787.  
  18788.  
  18789.  
  18790.    
  18791.    
  18792.    
  18793.    
  18794.  
  18795.    <div
  18796.      class="
  18797.        productitem__unit-price
  18798.        hidden
  18799.      "
  18800.      data-unit-price
  18801.    >
  18802.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  18803.    </div>
  18804.  
  18805.  
  18806.  
  18807. </div>
  18808.  
  18809.  
  18810.        
  18811.  
  18812.        <h2 class="productitem--title">
  18813.          <a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
  18814.            Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
  18815.          </a>
  18816.        </h2>
  18817.  
  18818.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  18819.        <div class="star_container 3929786187863"></div>
  18820.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  18821.  
  18822.        
  18823.          
  18824.            <span class="productitem--vendor">
  18825.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  18826.            </span>
  18827.          
  18828.        
  18829.  
  18830.        
  18831.  
  18832.        
  18833.          
  18834.            <div class="productitem__stock-level">
  18835.              <!--
  18836.  
  18837.  
  18838.  
  18839.  
  18840.  
  18841.  
  18842.  
  18843. <div class="product-stock-level-wrapper" >
  18844.  
  18845.    <span class="
  18846.  product-stock-level
  18847.  product-stock-level--continue-selling
  18848.  
  18849. ">
  18850.      
  18851.  
  18852.      <span class="product-stock-level__text">
  18853.        
  18854.        <div class="product-stock-level__badge-text">
  18855.          
  18856.  
  18857.    In stock
  18858.  
  18859.  
  18860.        </div>
  18861.      </span>
  18862.    </span>
  18863.  
  18864. </div>
  18865. -->
  18866.              
  18867.  
  18868.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  18869.  
  18870.  
  18871.  
  18872.  
  18873.  
  18874.  
  18875.  
  18876.            </div>
  18877.          
  18878.  
  18879.          
  18880.            
  18881.          
  18882.        
  18883.  
  18884.        
  18885.          <div class="productitem--description">
  18886.            <p>
  18887. Description: New Acer laptop cpu fan.
  18888.  
  18889. Compatible Part #'s: 23.GXBN2.001
  18890.  
  18891. Compatible Models:
  18892. Acer Aspire 7 A715-72, A715-72G
  18893. Acer Aspire 7 A717-7...</p>
  18894.  
  18895.            
  18896.              <a
  18897.                href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
  18898.                class="productitem--link"
  18899.                data-product-page-link
  18900.              >
  18901.                View full details
  18902.              </a>
  18903.            
  18904.          </div>
  18905.        
  18906.      </div>
  18907.  
  18908.      
  18909.        
  18910.          
  18911.          
  18912.          
  18913.  
  18914.          
  18915.          
  18916.  
  18917.          
  18918.  
  18919.          
  18920.  
  18921.          <div class="productitem--actions" data-product-actions>
  18922.            <div class="productitem--listview-price">
  18923.              
  18924.  
  18925.  
  18926.  
  18927.  
  18928.  
  18929.  
  18930.  
  18931.  
  18932.  
  18933.  
  18934.  
  18935.  
  18936.  
  18937.  
  18938.  
  18939.  
  18940.  
  18941.  
  18942.  
  18943.  
  18944.  
  18945.  
  18946.  
  18947.  
  18948.  
  18949.  
  18950.  
  18951.  
  18952.  
  18953.  
  18954. <div class="price productitem__price ">
  18955.  
  18956.    <div
  18957.      class="price__compare-at visible"
  18958.      data-price-compare-container
  18959.    >
  18960.  
  18961.      
  18962.        <span class="money price__original" data-price-original></span>
  18963.      
  18964.    </div>
  18965.  
  18966.  
  18967.    
  18968.      
  18969.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  18970.        
  18971.          <span class="visually-hidden">Original price</span>
  18972.          <span class="money price__compare-at--min" data-price-compare-min>
  18973.            $56.99
  18974.          </span>
  18975.          -
  18976.          <span class="visually-hidden">Original price</span>
  18977.          <span class="money price__compare-at--max" data-price-compare-max>
  18978.            $56.99
  18979.          </span>
  18980.        
  18981.      </div>
  18982.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  18983.        <span class="visually-hidden">Original price</span>
  18984.        <span class="money price__compare-at--single" data-price-compare>
  18985.          
  18986.        </span>
  18987.      </div>
  18988.    
  18989.  
  18990.  
  18991.  <div class="price__current price__current--emphasize " data-price-container>
  18992.  
  18993.    
  18994.  
  18995.    
  18996.      
  18997.      
  18998.      <span class="money" data-price>
  18999.        $56.99
  19000.      </span>
  19001.    
  19002.    
  19003.  </div>
  19004.  
  19005.  
  19006.    
  19007.    <div class="price__current--hidden" data-current-price-range-hidden>
  19008.      
  19009.        <span class="money price__current--min" data-price-min>$56.99</span>
  19010.        -
  19011.        <span class="money price__current--max" data-price-max>$56.99</span>
  19012.      
  19013.    </div>
  19014.    <div class="price__current--hidden" data-current-price-hidden>
  19015.      <span class="visually-hidden">Current price</span>
  19016.      <span class="money" data-price>
  19017.        $56.99
  19018.      </span>
  19019.    </div>
  19020.  
  19021.  
  19022.  
  19023.    
  19024.    
  19025.    
  19026.    
  19027.  
  19028.    <div
  19029.      class="
  19030.        productitem__unit-price
  19031.        hidden
  19032.      "
  19033.      data-unit-price
  19034.    >
  19035.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  19036.    </div>
  19037.  
  19038.  
  19039.  
  19040. </div>
  19041.  
  19042.  
  19043.            </div>
  19044.  
  19045.            <div class="productitem--listview-badge">
  19046.              
  19047.  
  19048.  
  19049.  
  19050.  
  19051.  
  19052.  
  19053.  
  19054.  
  19055.  
  19056.  
  19057.  
  19058.  
  19059.  
  19060.  
  19061.  
  19062.  
  19063.  
  19064.  
  19065.  
  19066.  
  19067.  
  19068.  
  19069.  
  19070.  
  19071.  
  19072.  
  19073.  
  19074.            </div>
  19075.  
  19076.            
  19077.              <div
  19078.                class="
  19079.                  productitem--action
  19080.                  quickshop-button
  19081.                  
  19082.                "
  19083.              >
  19084.                <button
  19085.                  class="productitem--action-trigger button-secondary"
  19086.                  data-quickshop-full
  19087.                  
  19088.                  
  19089.                  type="button"
  19090.                >
  19091.                  Quick shop
  19092.                </button>
  19093.              </div>
  19094.            
  19095.  
  19096.            
  19097.              <div
  19098.                class="
  19099.                  productitem--action
  19100.                  atc--button
  19101.                  
  19102.                "
  19103.              >
  19104.                <button
  19105.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19106.                  type="button"
  19107.                  aria-label="Add to cart"
  19108.                  
  19109.                    data-quick-buy
  19110.                  
  19111.                  data-variant-id="29440907575383"
  19112.                  
  19113.                >
  19114.                  <span class="atc-button--text">
  19115.                    Add to cart
  19116.                  </span>
  19117.                  <span class="atc-button--icon"><svg
  19118.  aria-hidden="true"
  19119.  focusable="false"
  19120.  role="presentation"
  19121.  width="26"
  19122.  height="26"
  19123.  viewBox="0 0 26 26"
  19124.  xmlns="http://www.w3.org/2000/svg"
  19125. >
  19126.  <g fill-rule="nonzero" fill="currentColor">
  19127.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  19128.  </g>
  19129. </svg></span>
  19130.                </button>
  19131.              </div>
  19132.            
  19133.          </div>
  19134.        
  19135.      
  19136.    </div>
  19137.  </div>
  19138.  
  19139.  
  19140.    <script type="application/json" data-quick-buy-settings>
  19141.      {
  19142.        "cart_redirection": true,
  19143.        "money_format": "${{amount}}"
  19144.      }
  19145.    </script>
  19146.  
  19147. </li>
  19148.    
  19149.      
  19150.  
  19151.  
  19152.  
  19153.  
  19154.  
  19155.  
  19156.  
  19157.  
  19158.  
  19159.  
  19160.  
  19161.  
  19162.  
  19163.  
  19164.  
  19165.  
  19166.  
  19167.  
  19168.  
  19169.  
  19170.  
  19171.  
  19172.  
  19173.  
  19174.  
  19175.  
  19176.  
  19177.  
  19178.  
  19179.  
  19180.  
  19181.  
  19182.    
  19183.  
  19184.  
  19185.  
  19186. <li
  19187.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  19188.  data-product-item
  19189.  data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19190.  
  19191. >
  19192.  <div class="productitem" data-product-item-content>
  19193.    
  19194.    
  19195.    
  19196.    
  19197.  
  19198.    
  19199.  
  19200.    
  19201.  
  19202.    <div class="productitem__container">
  19203.      
  19204.  
  19205.      <div class="productitem__image-container">
  19206.        <a target="_blank"
  19207.          class="productitem--image-link"
  19208.          href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19209.          aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19210.          tabindex="-1"
  19211.          data-product-page-link
  19212.        >
  19213.          <figure
  19214.            class="productitem--image"
  19215.            data-product-item-image
  19216.            
  19217.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  19218.            
  19219.          >
  19220.            
  19221.              
  19222.              
  19223.  
  19224.  
  19225.    <noscript data-rimg-noscript>
  19226.      <img loading="lazy"
  19227.        
  19228.          src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19229.        
  19230.  
  19231.        alt="Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001 - LaptopParts.ca"
  19232.        data-rimg="noscript"
  19233.        srcset="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259 1x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_1024x1024.jpg?v=1697125259 2x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_1536x1536.jpg?v=1697125259 3x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_2048x2048.jpg?v=1697125259 4x"
  19234.        class="productitem--image-primary"
  19235.        
  19236.        
  19237.      >
  19238.    </noscript>
  19239.  
  19240.  
  19241.  <img loading="lazy"
  19242.    
  19243.      src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
  19244.    
  19245.    alt="Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001 - LaptopParts.ca"
  19246.  
  19247.    
  19248.      data-rimg="lazy"
  19249.      data-rimg-scale="1"
  19250.      data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
  19251.      data-rimg-max="2048x2048"
  19252.      data-rimg-crop="false"
  19253.      
  19254.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  19255.    
  19256.  
  19257.    class="productitem--image-primary"
  19258.    
  19259.    
  19260.  >
  19261.  
  19262.  
  19263.  
  19264.  <div data-rimg-canvas></div>
  19265.  
  19266.  
  19267.            
  19268.  
  19269.            
  19270.  
  19271.  
  19272.  
  19273.  
  19274.  
  19275.  
  19276.  
  19277.  
  19278.  
  19279.  
  19280.  
  19281.  
  19282.  
  19283.  
  19284.  
  19285.  
  19286.  
  19287.  
  19288.  
  19289.  
  19290.  
  19291.  
  19292.  
  19293.  
  19294.  
  19295.  
  19296.  
  19297.          </figure>
  19298.        </a>
  19299.      </div><div class="productitem--info">
  19300.        
  19301.          
  19302.  
  19303.        
  19304.  
  19305.        
  19306.          
  19307.  
  19308.  
  19309.  
  19310.  
  19311.  
  19312.  
  19313.  
  19314.  
  19315.  
  19316.  
  19317.  
  19318.  
  19319.  
  19320.  
  19321.  
  19322.  
  19323.  
  19324.  
  19325.  
  19326.  
  19327.  
  19328.  
  19329.  
  19330.  
  19331.  
  19332.  
  19333.  
  19334.  
  19335.  
  19336.  
  19337. <div class="price productitem__price ">
  19338.  
  19339.    <div
  19340.      class="price__compare-at visible"
  19341.      data-price-compare-container
  19342.    >
  19343.  
  19344.      
  19345.        <span class="money price__original" data-price-original></span>
  19346.      
  19347.    </div>
  19348.  
  19349.  
  19350.    
  19351.      
  19352.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19353.        
  19354.          <span class="visually-hidden">Original price</span>
  19355.          <span class="money price__compare-at--min" data-price-compare-min>
  19356.            $64.99
  19357.          </span>
  19358.          -
  19359.          <span class="visually-hidden">Original price</span>
  19360.          <span class="money price__compare-at--max" data-price-compare-max>
  19361.            $64.99
  19362.          </span>
  19363.        
  19364.      </div>
  19365.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19366.        <span class="visually-hidden">Original price</span>
  19367.        <span class="money price__compare-at--single" data-price-compare>
  19368.          
  19369.        </span>
  19370.      </div>
  19371.    
  19372.  
  19373.  
  19374.  <div class="price__current price__current--emphasize " data-price-container>
  19375.  
  19376.    
  19377.  
  19378.    
  19379.      
  19380.      
  19381.      <span class="money" data-price>
  19382.        $64.99
  19383.      </span>
  19384.    
  19385.    
  19386.  </div>
  19387.  
  19388.  
  19389.    
  19390.    <div class="price__current--hidden" data-current-price-range-hidden>
  19391.      
  19392.        <span class="money price__current--min" data-price-min>$64.99</span>
  19393.        -
  19394.        <span class="money price__current--max" data-price-max>$64.99</span>
  19395.      
  19396.    </div>
  19397.    <div class="price__current--hidden" data-current-price-hidden>
  19398.      <span class="visually-hidden">Current price</span>
  19399.      <span class="money" data-price>
  19400.        $64.99
  19401.      </span>
  19402.    </div>
  19403.  
  19404.  
  19405.  
  19406.    
  19407.    
  19408.    
  19409.    
  19410.  
  19411.    <div
  19412.      class="
  19413.        productitem__unit-price
  19414.        hidden
  19415.      "
  19416.      data-unit-price
  19417.    >
  19418.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  19419.    </div>
  19420.  
  19421.  
  19422.  
  19423. </div>
  19424.  
  19425.  
  19426.        
  19427.  
  19428.        <h2 class="productitem--title">
  19429.          <a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
  19430.            Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
  19431.          </a>
  19432.        </h2>
  19433.  
  19434.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  19435.        <div class="star_container 3929790414935"></div>
  19436.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  19437.  
  19438.        
  19439.          
  19440.            <span class="productitem--vendor">
  19441.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  19442.            </span>
  19443.          
  19444.        
  19445.  
  19446.        
  19447.  
  19448.        
  19449.          
  19450.            <div class="productitem__stock-level">
  19451.              <!--
  19452.  
  19453.  
  19454.  
  19455.  
  19456.  
  19457.  
  19458.  
  19459. <div class="product-stock-level-wrapper" >
  19460.  
  19461.    <span class="
  19462.  product-stock-level
  19463.  product-stock-level--continue-selling
  19464.  
  19465. ">
  19466.      
  19467.  
  19468.      <span class="product-stock-level__text">
  19469.        
  19470.        <div class="product-stock-level__badge-text">
  19471.          
  19472.  
  19473.    In stock
  19474.  
  19475.  
  19476.        </div>
  19477.      </span>
  19478.    </span>
  19479.  
  19480. </div>
  19481. -->
  19482.              
  19483.  
  19484.    <b style="color:green">Incoming ETA 7 to 10 Days</b>
  19485.  
  19486.  
  19487.  
  19488.  
  19489.  
  19490.  
  19491.  
  19492.            </div>
  19493.          
  19494.  
  19495.          
  19496.            
  19497.          
  19498.        
  19499.  
  19500.        
  19501.          <div class="productitem--description">
  19502.            <p>
  19503. Description: New genuine Acer laptop dc jack cable. 45 watt version.
  19504.  
  19505. Compatible Part #'s: 50.GNSN7.001
  19506.  
  19507. Compatible Models:
  19508. Acer Aspire 1 A114-31
  19509. ...</p>
  19510.  
  19511.            
  19512.              <a
  19513.                href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
  19514.                class="productitem--link"
  19515.                data-product-page-link
  19516.              >
  19517.                View full details
  19518.              </a>
  19519.            
  19520.          </div>
  19521.        
  19522.      </div>
  19523.  
  19524.      
  19525.        
  19526.          
  19527.          
  19528.          
  19529.  
  19530.          
  19531.          
  19532.  
  19533.          
  19534.  
  19535.          
  19536.  
  19537.          <div class="productitem--actions" data-product-actions>
  19538.            <div class="productitem--listview-price">
  19539.              
  19540.  
  19541.  
  19542.  
  19543.  
  19544.  
  19545.  
  19546.  
  19547.  
  19548.  
  19549.  
  19550.  
  19551.  
  19552.  
  19553.  
  19554.  
  19555.  
  19556.  
  19557.  
  19558.  
  19559.  
  19560.  
  19561.  
  19562.  
  19563.  
  19564.  
  19565.  
  19566.  
  19567.  
  19568.  
  19569.  
  19570. <div class="price productitem__price ">
  19571.  
  19572.    <div
  19573.      class="price__compare-at visible"
  19574.      data-price-compare-container
  19575.    >
  19576.  
  19577.      
  19578.        <span class="money price__original" data-price-original></span>
  19579.      
  19580.    </div>
  19581.  
  19582.  
  19583.    
  19584.      
  19585.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  19586.        
  19587.          <span class="visually-hidden">Original price</span>
  19588.          <span class="money price__compare-at--min" data-price-compare-min>
  19589.            $64.99
  19590.          </span>
  19591.          -
  19592.          <span class="visually-hidden">Original price</span>
  19593.          <span class="money price__compare-at--max" data-price-compare-max>
  19594.            $64.99
  19595.          </span>
  19596.        
  19597.      </div>
  19598.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  19599.        <span class="visually-hidden">Original price</span>
  19600.        <span class="money price__compare-at--single" data-price-compare>
  19601.          
  19602.        </span>
  19603.      </div>
  19604.    
  19605.  
  19606.  
  19607.  <div class="price__current price__current--emphasize " data-price-container>
  19608.  
  19609.    
  19610.  
  19611.    
  19612.      
  19613.      
  19614.      <span class="money" data-price>
  19615.        $64.99
  19616.      </span>
  19617.    
  19618.    
  19619.  </div>
  19620.  
  19621.  
  19622.    
  19623.    <div class="price__current--hidden" data-current-price-range-hidden>
  19624.      
  19625.        <span class="money price__current--min" data-price-min>$64.99</span>
  19626.        -
  19627.        <span class="money price__current--max" data-price-max>$64.99</span>
  19628.      
  19629.    </div>
  19630.    <div class="price__current--hidden" data-current-price-hidden>
  19631.      <span class="visually-hidden">Current price</span>
  19632.      <span class="money" data-price>
  19633.        $64.99
  19634.      </span>
  19635.    </div>
  19636.  
  19637.  
  19638.  
  19639.    
  19640.    
  19641.    
  19642.    
  19643.  
  19644.    <div
  19645.      class="
  19646.        productitem__unit-price
  19647.        hidden
  19648.      "
  19649.      data-unit-price
  19650.    >
  19651.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  19652.    </div>
  19653.  
  19654.  
  19655.  
  19656. </div>
  19657.  
  19658.  
  19659.            </div>
  19660.  
  19661.            <div class="productitem--listview-badge">
  19662.              
  19663.  
  19664.  
  19665.  
  19666.  
  19667.  
  19668.  
  19669.  
  19670.  
  19671.  
  19672.  
  19673.  
  19674.  
  19675.  
  19676.  
  19677.  
  19678.  
  19679.  
  19680.  
  19681.  
  19682.  
  19683.  
  19684.  
  19685.  
  19686.  
  19687.  
  19688.  
  19689.  
  19690.            </div>
  19691.  
  19692.            
  19693.              <div
  19694.                class="
  19695.                  productitem--action
  19696.                  quickshop-button
  19697.                  
  19698.                "
  19699.              >
  19700.                <button
  19701.                  class="productitem--action-trigger button-secondary"
  19702.                  data-quickshop-full
  19703.                  
  19704.                  
  19705.                  type="button"
  19706.                >
  19707.                  Quick shop
  19708.                </button>
  19709.              </div>
  19710.            
  19711.  
  19712.            
  19713.              <div
  19714.                class="
  19715.                  productitem--action
  19716.                  atc--button
  19717.                  
  19718.                "
  19719.              >
  19720.                <button
  19721.                  class="productitem--action-trigger productitem--action-atc button-primary"
  19722.                  type="button"
  19723.                  aria-label="Add to cart"
  19724.                  
  19725.                    data-quick-buy
  19726.                  
  19727.                  data-variant-id="29408090816599"
  19728.                  
  19729.                >
  19730.                  <span class="atc-button--text">
  19731.                    Add to cart
  19732.                  </span>
  19733.                  <span class="atc-button--icon"><svg
  19734.  aria-hidden="true"
  19735.  focusable="false"
  19736.  role="presentation"
  19737.  width="26"
  19738.  height="26"
  19739.  viewBox="0 0 26 26"
  19740.  xmlns="http://www.w3.org/2000/svg"
  19741. >
  19742.  <g fill-rule="nonzero" fill="currentColor">
  19743.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  19744.  </g>
  19745. </svg></span>
  19746.                </button>
  19747.              </div>
  19748.            
  19749.          </div>
  19750.        
  19751.      
  19752.    </div>
  19753.  </div>
  19754.  
  19755.  
  19756.    <script type="application/json" data-quick-buy-settings>
  19757.      {
  19758.        "cart_redirection": true,
  19759.        "money_format": "${{amount}}"
  19760.      }
  19761.    </script>
  19762.  
  19763. </li>
  19764.    
  19765.  
  19766.    
  19767.  </ul>
  19768.  
  19769.  
  19770.    
  19771.      <a
  19772.        class="
  19773.          button-primary
  19774.          featured-collection__button
  19775.        "
  19776.        href="/collections/shop-the-best-selling"
  19777.      >
  19778.        View All
  19779.      </a>
  19780.    
  19781.  
  19782. </section>
  19783.  
  19784.  
  19785. <div class="productitem-quickshop" data-product-quickshop>
  19786.  <span class="quickshop-spinner"><svg
  19787.  aria-hidden="true"
  19788.  focusable="false"
  19789.  role="presentation"
  19790.  width="26"
  19791.  height="26"
  19792.  viewBox="0 0 26 26"
  19793.  xmlns="http://www.w3.org/2000/svg"
  19794. >
  19795.  <g fill-rule="nonzero" fill="currentColor">
  19796.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  19797.  </g>
  19798. </svg></span>
  19799. </div>
  19800.  
  19801.  
  19802. </div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
  19803.  
  19804.  
  19805.  
  19806. <script type="application/pxs-animation-mapping+json">
  19807.  {
  19808.    "blocks": [".slideshow-slide"],
  19809.    "elements": [
  19810.      ".slideshow-slide__heading",
  19811.      ".slideshow-slide__subheading",
  19812.      ".slideshow-slide__text",
  19813.      ".slideshow-slide__button"
  19814.    ]
  19815.  }
  19816. </script>
  19817.  
  19818. <style data-shopify>
  19819.  #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
  19820.    --autoplay-interval: 5s;
  19821.  }
  19822.  
  19823.  
  19824.    @media screen and (min-width: 720px) {
  19825.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19826.        height: vw;
  19827.      }
  19828.    }
  19829.  
  19830.  
  19831.  
  19832.    @media screen and (max-width: 719px) {
  19833.      #shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
  19834.        
  19835.          height: vw;
  19836.        
  19837.      }
  19838.    }
  19839.  
  19840. </style>
  19841.  
  19842.  
  19843.  
  19844.  
  19845. <script
  19846.  type="application/json"
  19847.  data-section-type="pxs-slideshow"
  19848.  data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
  19849.  data-section-data
  19850. >
  19851.  {
  19852.    "enable_autoplay": true,
  19853.    "autoplay_interval": 5,
  19854.    "mobile_navigation_adjust": true,
  19855.    "transition_fade": null,
  19856.    "slide_attraction": null,
  19857.    "slide_friction": null,
  19858.    "next_text": "Next slide",
  19859.    "previous_text": "Previous slide"
  19860.  }
  19861. </script>
  19862.  
  19863. <section
  19864.  class="
  19865.    slideshow
  19866.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  19867.  "
  19868.  aria-label="Slideshow"
  19869.  data-autoplay="true"
  19870.  data-autoplay-interval="5"
  19871.  data-banner="false"
  19872.  data-slideshow
  19873. ><div
  19874.    class="slideshow__wrapper "
  19875.    data-slideshow-wrapper
  19876.  ></div><div
  19877.    class="slideshow__current-slide visually-hidden"
  19878.    aria-live="polite"
  19879.    aria-atomic="true"
  19880.    data-slide-counter
  19881.    data-counter-template="Slide {{ count }} of {{ total }}"
  19882.  >
  19883.  </div>
  19884. </section>
  19885.  
  19886.  
  19887.  
  19888. </div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
  19889.  {
  19890.    "blocks": [".logolist--inner"],
  19891.    "elements": [
  19892.      ".logolist--item"
  19893.    ]
  19894.  }
  19895. </script>
  19896.  
  19897. <section class="logolist--container">
  19898.  
  19899.    <h2 class="home-section--title">
  19900.      Search By Brands
  19901.    </h2>
  19902.  
  19903.  
  19904.  <div class="home-section--content logolist--inner">
  19905.    
  19906.      <div class="logolist--item" >
  19907.        
  19908.          <a
  19909.            class="logolist--link"
  19910.            href="/collections/acer-parts-canada"
  19911.            target="_blank"
  19912.          >
  19913.        
  19914.  
  19915.        
  19916.          
  19917.  
  19918.  
  19919.    <noscript data-rimg-noscript>
  19920.      <img loading="lazy"
  19921.        
  19922.          src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19923.        
  19924.  
  19925.        alt=""
  19926.        data-rimg="noscript"
  19927.        srcset="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818 1x, //laptopparts.ca/cdn/shop/files/Acer_320x78.png?v=1698309818 2x, //laptopparts.ca/cdn/shop/files/Acer_480x117.png?v=1698309818 3x, //laptopparts.ca/cdn/shop/files/Acer_640x156.png?v=1698309818 4x"
  19928.        class="logolist--image"
  19929.        style="
  19930.        object-fit:cover;object-position:50.0% 50.0%;
  19931.      
  19932. "
  19933.        
  19934.      >
  19935.    </noscript>
  19936.  
  19937.  
  19938.  <img loading="lazy"
  19939.    
  19940.      src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
  19941.    
  19942.    alt=""
  19943.  
  19944.    
  19945.      data-rimg="lazy"
  19946.      data-rimg-scale="1"
  19947.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
  19948.      data-rimg-max="1024x247"
  19949.      data-rimg-crop="false"
  19950.      
  19951.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
  19952.    
  19953.  
  19954.    class="logolist--image"
  19955.    style="
  19956.        object-fit:cover;object-position:50.0% 50.0%;
  19957.      
  19958. "
  19959.    
  19960.  >
  19961.  
  19962.  
  19963.  
  19964.  <div data-rimg-canvas></div>
  19965.  
  19966.  
  19967.        
  19968.  
  19969.        
  19970.          </a>
  19971.        
  19972.      </div>
  19973.    
  19974.      <div class="logolist--item" >
  19975.        
  19976.          <a
  19977.            class="logolist--link"
  19978.            href="/collections/dell-laptop-batteries"
  19979.            target="_blank"
  19980.          >
  19981.        
  19982.  
  19983.        
  19984.          
  19985.  
  19986.  
  19987.    <noscript data-rimg-noscript>
  19988.      <img loading="lazy"
  19989.        
  19990.          src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  19991.        
  19992.  
  19993.        alt=""
  19994.        data-rimg="noscript"
  19995.        srcset="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835 1x, //laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_320x320.png?v=1698309835 2x, //laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_480x480.png?v=1698309835 3x, //laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_640x640.png?v=1698309835 4x"
  19996.        class="logolist--image"
  19997.        style="
  19998.        object-fit:cover;object-position:50.0% 50.0%;
  19999.      
  20000. "
  20001.        
  20002.      >
  20003.    </noscript>
  20004.  
  20005.  
  20006.  <img loading="lazy"
  20007.    
  20008.      src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
  20009.    
  20010.    alt=""
  20011.  
  20012.    
  20013.      data-rimg="lazy"
  20014.      data-rimg-scale="1"
  20015.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
  20016.      data-rimg-max="2048x2048"
  20017.      data-rimg-crop="false"
  20018.      
  20019.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20020.    
  20021.  
  20022.    class="logolist--image"
  20023.    style="
  20024.        object-fit:cover;object-position:50.0% 50.0%;
  20025.      
  20026. "
  20027.    
  20028.  >
  20029.  
  20030.  
  20031.  
  20032.  <div data-rimg-canvas></div>
  20033.  
  20034.  
  20035.        
  20036.  
  20037.        
  20038.          </a>
  20039.        
  20040.      </div>
  20041.    
  20042.      <div class="logolist--item" >
  20043.        
  20044.          <a
  20045.            class="logolist--link"
  20046.            href="/collections/asus"
  20047.            target="_blank"
  20048.          >
  20049.        
  20050.  
  20051.        
  20052.          
  20053.  
  20054.  
  20055.    <noscript data-rimg-noscript>
  20056.      <img loading="lazy"
  20057.        
  20058.          src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20059.        
  20060.  
  20061.        alt=""
  20062.        data-rimg="noscript"
  20063.        srcset="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865 1x, //laptopparts.ca/cdn/shop/files/Asus_320x64.png?v=1698309865 2x, //laptopparts.ca/cdn/shop/files/Asus_480x96.png?v=1698309865 3x, //laptopparts.ca/cdn/shop/files/Asus_499x100.png?v=1698309865 3.12x"
  20064.        class="logolist--image"
  20065.        style="
  20066.        object-fit:cover;object-position:50.0% 50.0%;
  20067.      
  20068. "
  20069.        
  20070.      >
  20071.    </noscript>
  20072.  
  20073.  
  20074.  <img loading="lazy"
  20075.    
  20076.      src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
  20077.    
  20078.    alt=""
  20079.  
  20080.    
  20081.      data-rimg="lazy"
  20082.      data-rimg-scale="1"
  20083.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
  20084.      data-rimg-max="504x100"
  20085.      data-rimg-crop="false"
  20086.      
  20087.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
  20088.    
  20089.  
  20090.    class="logolist--image"
  20091.    style="
  20092.        object-fit:cover;object-position:50.0% 50.0%;
  20093.      
  20094. "
  20095.    
  20096.  >
  20097.  
  20098.  
  20099.  
  20100.  <div data-rimg-canvas></div>
  20101.  
  20102.  
  20103.        
  20104.  
  20105.        
  20106.          </a>
  20107.        
  20108.      </div>
  20109.    
  20110.      <div class="logolist--item" >
  20111.        
  20112.          <a
  20113.            class="logolist--link"
  20114.            href="/collections/fujitsu"
  20115.            target="_blank"
  20116.          >
  20117.        
  20118.  
  20119.        
  20120.          
  20121.  
  20122.  
  20123.    <noscript data-rimg-noscript>
  20124.      <img loading="lazy"
  20125.        
  20126.          src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20127.        
  20128.  
  20129.        alt=""
  20130.        data-rimg="noscript"
  20131.        srcset="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977 1x, //laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_320x152.png?v=1698309977 2x, //laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_480x228.png?v=1698309977 3x, //laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_640x304.png?v=1698309977 4x"
  20132.        class="logolist--image"
  20133.        style="
  20134.        object-fit:cover;object-position:50.0% 50.0%;
  20135.      
  20136. "
  20137.        
  20138.      >
  20139.    </noscript>
  20140.  
  20141.  
  20142.  <img loading="lazy"
  20143.    
  20144.      src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
  20145.    
  20146.    alt=""
  20147.  
  20148.    
  20149.      data-rimg="lazy"
  20150.      data-rimg-scale="1"
  20151.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
  20152.      data-rimg-max="1280x602"
  20153.      data-rimg-crop="false"
  20154.      
  20155.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
  20156.    
  20157.  
  20158.    class="logolist--image"
  20159.    style="
  20160.        object-fit:cover;object-position:50.0% 50.0%;
  20161.      
  20162. "
  20163.    
  20164.  >
  20165.  
  20166.  
  20167.  
  20168.  <div data-rimg-canvas></div>
  20169.  
  20170.  
  20171.        
  20172.  
  20173.        
  20174.          </a>
  20175.        
  20176.      </div>
  20177.    
  20178.      <div class="logolist--item" >
  20179.        
  20180.          <a
  20181.            class="logolist--link"
  20182.            href="/collections/samsung"
  20183.            target="_blank"
  20184.          >
  20185.        
  20186.  
  20187.        
  20188.          
  20189.  
  20190.  
  20191.    <noscript data-rimg-noscript>
  20192.      <img loading="lazy"
  20193.        
  20194.          src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20195.        
  20196.  
  20197.        alt=""
  20198.        data-rimg="noscript"
  20199.        srcset="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930 1x, //laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_320x50.png?v=1698309930 2x, //laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_480x75.png?v=1698309930 3x, //laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_640x100.png?v=1698309930 4x"
  20200.        class="logolist--image"
  20201.        style="
  20202.        object-fit:cover;object-position:50.0% 50.0%;
  20203.      
  20204. "
  20205.        
  20206.      >
  20207.    </noscript>
  20208.  
  20209.  
  20210.  <img loading="lazy"
  20211.    
  20212.      src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
  20213.    
  20214.    alt=""
  20215.  
  20216.    
  20217.      data-rimg="lazy"
  20218.      data-rimg-scale="1"
  20219.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
  20220.      data-rimg-max="7051x1080"
  20221.      data-rimg-crop="false"
  20222.      
  20223.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20224.    
  20225.  
  20226.    class="logolist--image"
  20227.    style="
  20228.        object-fit:cover;object-position:50.0% 50.0%;
  20229.      
  20230. "
  20231.    
  20232.  >
  20233.  
  20234.  
  20235.  
  20236.  <div data-rimg-canvas></div>
  20237.  
  20238.  
  20239.        
  20240.  
  20241.        
  20242.          </a>
  20243.        
  20244.      </div>
  20245.    
  20246.      <div class="logolist--item" >
  20247.        
  20248.          <a
  20249.            class="logolist--link"
  20250.            href="/collections/apple"
  20251.            target="_blank"
  20252.          >
  20253.        
  20254.  
  20255.        
  20256.          
  20257.  
  20258.  
  20259.    <noscript data-rimg-noscript>
  20260.      <img loading="lazy"
  20261.        
  20262.          src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20263.        
  20264.  
  20265.        alt=""
  20266.        data-rimg="noscript"
  20267.        srcset="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948 1x, //laptopparts.ca/cdn/shop/files/Apple-Logo_320x180.jpg?v=1698309948 2x, //laptopparts.ca/cdn/shop/files/Apple-Logo_480x270.jpg?v=1698309948 3x, //laptopparts.ca/cdn/shop/files/Apple-Logo_640x360.jpg?v=1698309948 4x"
  20268.        class="logolist--image"
  20269.        style="
  20270.        object-fit:cover;object-position:50.0% 50.0%;
  20271.      
  20272. "
  20273.        
  20274.      >
  20275.    </noscript>
  20276.  
  20277.  
  20278.  <img loading="lazy"
  20279.    
  20280.      src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
  20281.    
  20282.    alt=""
  20283.  
  20284.    
  20285.      data-rimg="lazy"
  20286.      data-rimg-scale="1"
  20287.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
  20288.      data-rimg-max="3840x2160"
  20289.      data-rimg-crop="false"
  20290.      
  20291.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
  20292.    
  20293.  
  20294.    class="logolist--image"
  20295.    style="
  20296.        object-fit:cover;object-position:50.0% 50.0%;
  20297.      
  20298. "
  20299.    
  20300.  >
  20301.  
  20302.  
  20303.  
  20304.  <div data-rimg-canvas></div>
  20305.  
  20306.  
  20307.        
  20308.  
  20309.        
  20310.          </a>
  20311.        
  20312.      </div>
  20313.    
  20314.      <div class="logolist--item" >
  20315.        
  20316.          <a
  20317.            class="logolist--link"
  20318.            href="/collections/hp-laptop-battery"
  20319.            target="_blank"
  20320.          >
  20321.        
  20322.  
  20323.        
  20324.          
  20325.  
  20326.  
  20327.    <noscript data-rimg-noscript>
  20328.      <img loading="lazy"
  20329.        
  20330.          src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20331.        
  20332.  
  20333.        alt=""
  20334.        data-rimg="noscript"
  20335.        srcset="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007 1x, //laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_320x320.png?v=1698310007 2x, //laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_480x480.png?v=1698310007 3x, //laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_640x640.png?v=1698310007 4x"
  20336.        class="logolist--image"
  20337.        style="
  20338.        object-fit:cover;object-position:50.0% 50.0%;
  20339.      
  20340. "
  20341.        
  20342.      >
  20343.    </noscript>
  20344.  
  20345.  
  20346.  <img loading="lazy"
  20347.    
  20348.      src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
  20349.    
  20350.    alt=""
  20351.  
  20352.    
  20353.      data-rimg="lazy"
  20354.      data-rimg-scale="1"
  20355.      data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
  20356.      data-rimg-max="2048x2048"
  20357.      data-rimg-crop="false"
  20358.      
  20359.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20360.    
  20361.  
  20362.    class="logolist--image"
  20363.    style="
  20364.        object-fit:cover;object-position:50.0% 50.0%;
  20365.      
  20366. "
  20367.    
  20368.  >
  20369.  
  20370.  
  20371.  
  20372.  <div data-rimg-canvas></div>
  20373.  
  20374.  
  20375.        
  20376.  
  20377.        
  20378.          </a>
  20379.        
  20380.      </div>
  20381.    
  20382.      <div class="logolist--item" >
  20383.        
  20384.          <a
  20385.            class="logolist--link"
  20386.            href="/collections/all"
  20387.            target="_blank"
  20388.          >
  20389.        
  20390.  
  20391.        
  20392.          
  20393.  
  20394.  
  20395.    <noscript data-rimg-noscript>
  20396.      <img loading="lazy"
  20397.        
  20398.          src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20399.        
  20400.  
  20401.        alt=""
  20402.        data-rimg="noscript"
  20403.        srcset="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074 1x, //laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_320x200.png?v=1698310074 2x, //laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_480x300.png?v=1698310074 3x, //laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_640x400.png?v=1698310074 4x"
  20404.        class="logolist--image"
  20405.        style="
  20406.        object-fit:cover;object-position:50.0% 50.0%;
  20407.      
  20408. "
  20409.        
  20410.      >
  20411.    </noscript>
  20412.  
  20413.  
  20414.  <img loading="lazy"
  20415.    
  20416.      src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
  20417.    
  20418.    alt=""
  20419.  
  20420.    
  20421.      data-rimg="lazy"
  20422.      data-rimg-scale="1"
  20423.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
  20424.      data-rimg-max="5000x3125"
  20425.      data-rimg-crop="false"
  20426.      
  20427.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
  20428.    
  20429.  
  20430.    class="logolist--image"
  20431.    style="
  20432.        object-fit:cover;object-position:50.0% 50.0%;
  20433.      
  20434. "
  20435.    
  20436.  >
  20437.  
  20438.  
  20439.  
  20440.  <div data-rimg-canvas></div>
  20441.  
  20442.  
  20443.        
  20444.  
  20445.        
  20446.          </a>
  20447.        
  20448.      </div>
  20449.    
  20450.      <div class="logolist--item" >
  20451.        
  20452.          <a
  20453.            class="logolist--link"
  20454.            href="/collections/all"
  20455.            target="_blank"
  20456.          >
  20457.        
  20458.  
  20459.        
  20460.          
  20461.  
  20462.  
  20463.    <noscript data-rimg-noscript>
  20464.      <img loading="lazy"
  20465.        
  20466.          src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20467.        
  20468.  
  20469.        alt=""
  20470.        data-rimg="noscript"
  20471.        srcset="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052 1x, //laptopparts.ca/cdn/shop/files/Alienware_320x86.png?v=1698310052 2x, //laptopparts.ca/cdn/shop/files/Alienware_480x129.png?v=1698310052 3x, //laptopparts.ca/cdn/shop/files/Alienware_640x172.png?v=1698310052 4x"
  20472.        class="logolist--image"
  20473.        style="
  20474.        object-fit:cover;object-position:50.0% 50.0%;
  20475.      
  20476. "
  20477.        
  20478.      >
  20479.    </noscript>
  20480.  
  20481.  
  20482.  <img loading="lazy"
  20483.    
  20484.      src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
  20485.    
  20486.    alt=""
  20487.  
  20488.    
  20489.      data-rimg="lazy"
  20490.      data-rimg-scale="1"
  20491.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
  20492.      data-rimg-max="860x231"
  20493.      data-rimg-crop="false"
  20494.      
  20495.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
  20496.    
  20497.  
  20498.    class="logolist--image"
  20499.    style="
  20500.        object-fit:cover;object-position:50.0% 50.0%;
  20501.      
  20502. "
  20503.    
  20504.  >
  20505.  
  20506.  
  20507.  
  20508.  <div data-rimg-canvas></div>
  20509.  
  20510.  
  20511.        
  20512.  
  20513.        
  20514.          </a>
  20515.        
  20516.      </div>
  20517.    
  20518.      <div class="logolist--item" >
  20519.        
  20520.          <a
  20521.            class="logolist--link"
  20522.            href="/collections/all"
  20523.            target="_blank"
  20524.          >
  20525.        
  20526.  
  20527.        
  20528.          
  20529.  
  20530.  
  20531.    <noscript data-rimg-noscript>
  20532.      <img loading="lazy"
  20533.        
  20534.          src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20535.        
  20536.  
  20537.        alt=""
  20538.        data-rimg="noscript"
  20539.        srcset="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106 1x, //laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_320x50.png?v=1698310106 2x, //laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_480x75.png?v=1698310106 3x, //laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_640x100.png?v=1698310106 4x"
  20540.        class="logolist--image"
  20541.        style="
  20542.        object-fit:cover;object-position:50.0% 50.0%;
  20543.      
  20544. "
  20545.        
  20546.      >
  20547.    </noscript>
  20548.  
  20549.  
  20550.  <img loading="lazy"
  20551.    
  20552.      src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
  20553.    
  20554.    alt=""
  20555.  
  20556.    
  20557.      data-rimg="lazy"
  20558.      data-rimg-scale="1"
  20559.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
  20560.      data-rimg-max="1200x183"
  20561.      data-rimg-crop="false"
  20562.      
  20563.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
  20564.    
  20565.  
  20566.    class="logolist--image"
  20567.    style="
  20568.        object-fit:cover;object-position:50.0% 50.0%;
  20569.      
  20570. "
  20571.    
  20572.  >
  20573.  
  20574.  
  20575.  
  20576.  <div data-rimg-canvas></div>
  20577.  
  20578.  
  20579.        
  20580.  
  20581.        
  20582.          </a>
  20583.        
  20584.      </div>
  20585.    
  20586.      <div class="logolist--item" >
  20587.        
  20588.          <a
  20589.            class="logolist--link"
  20590.            href="/collections/all"
  20591.            target="_blank"
  20592.          >
  20593.        
  20594.  
  20595.        
  20596.          
  20597.  
  20598.  
  20599.    <noscript data-rimg-noscript>
  20600.      <img loading="lazy"
  20601.        
  20602.          src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20603.        
  20604.  
  20605.        alt=""
  20606.        data-rimg="noscript"
  20607.        srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
  20608.        class="logolist--image"
  20609.        style="
  20610.        object-fit:cover;object-position:50.0% 50.0%;
  20611.      
  20612. "
  20613.        
  20614.      >
  20615.    </noscript>
  20616.  
  20617.  
  20618.  <img loading="lazy"
  20619.    
  20620.      src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
  20621.    
  20622.    alt=""
  20623.  
  20624.    
  20625.      data-rimg="lazy"
  20626.      data-rimg-scale="1"
  20627.      data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
  20628.      data-rimg-max="225x225"
  20629.      data-rimg-crop="false"
  20630.      
  20631.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
  20632.    
  20633.  
  20634.    class="logolist--image"
  20635.    style="
  20636.        object-fit:cover;object-position:50.0% 50.0%;
  20637.      
  20638. "
  20639.    
  20640.  >
  20641.  
  20642.  
  20643.  
  20644.  <div data-rimg-canvas></div>
  20645.  
  20646.  
  20647.        
  20648.  
  20649.        
  20650.          </a>
  20651.        
  20652.      </div>
  20653.    
  20654.      <div class="logolist--item" >
  20655.        
  20656.          <a
  20657.            class="logolist--link"
  20658.            href="/collections/all"
  20659.            target="_blank"
  20660.          >
  20661.        
  20662.  
  20663.        
  20664.          
  20665.  
  20666.  
  20667.    <noscript data-rimg-noscript>
  20668.      <img loading="lazy"
  20669.        
  20670.          src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20671.        
  20672.  
  20673.        alt=""
  20674.        data-rimg="noscript"
  20675.        srcset="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433 1x, //laptopparts.ca/cdn/shop/files/razer-removebg-preview_320x182.png?v=1698310433 2x, //laptopparts.ca/cdn/shop/files/razer-removebg-preview_480x273.png?v=1698310433 3x, //laptopparts.ca/cdn/shop/files/razer-removebg-preview_640x364.png?v=1698310433 4x"
  20676.        class="logolist--image"
  20677.        style="
  20678.        object-fit:cover;object-position:50.0% 50.0%;
  20679.      
  20680. "
  20681.        
  20682.      >
  20683.    </noscript>
  20684.  
  20685.  
  20686.  <img loading="lazy"
  20687.    
  20688.      src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
  20689.    
  20690.    alt=""
  20691.  
  20692.    
  20693.      data-rimg="lazy"
  20694.      data-rimg-scale="1"
  20695.      data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
  20696.      data-rimg-max="666x375"
  20697.      data-rimg-crop="false"
  20698.      
  20699.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
  20700.    
  20701.  
  20702.    class="logolist--image"
  20703.    style="
  20704.        object-fit:cover;object-position:50.0% 50.0%;
  20705.      
  20706. "
  20707.    
  20708.  >
  20709.  
  20710.  
  20711.  
  20712.  <div data-rimg-canvas></div>
  20713.  
  20714.  
  20715.        
  20716.  
  20717.        
  20718.          </a>
  20719.        
  20720.      </div>
  20721.    
  20722.  </div>
  20723. </section>
  20724.  
  20725. </div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
  20726.  
  20727. </div>
  20728.  
  20729.  
  20730. </div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
  20731.  type="application/json"
  20732.  data-section-type="dynamic-highlights-banner"
  20733.  data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
  20734. </script>
  20735.  
  20736. <style>
  20737.  
  20738.  
  20739.    .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
  20740.      background-color: #000000;
  20741.    }
  20742.  
  20743.  
  20744.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
  20745.    background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20746.  }
  20747.  
  20748.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
  20749.    background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
  20750.  }
  20751.  
  20752.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
  20753.    color: #ffffff;
  20754.  }
  20755.  
  20756.  .highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
  20757.    color: #fe0000;
  20758.  }
  20759. </style>
  20760.  
  20761. <script type="application/pxs-animation-mapping+json">
  20762.  {
  20763.    "blocks": [".highlights-banners-block"],
  20764.    "elements": []
  20765.  }
  20766. </script>
  20767.  
  20768. <div class="
  20769.  highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
  20770.  highlights-banner__container
  20771.  highlights-banner__mobile-layout--slider
  20772.  full-width
  20773.  "
  20774. >
  20775.  <div class="highlights-banner__content highlight-banner__count-4"
  20776.   data-highlights-slider
  20777.  >
  20778.    
  20779.      
  20780.        <div
  20781.          class="highlights-banner__block highlights-banner__align-left"
  20782.          
  20783.          data-highlights-block
  20784.        >
  20785.          
  20786.            <div class="highlights-banner__icon">
  20787.              
  20788.                
  20789.  
  20790.  
  20791.                                                                    <svg class="icon-rating-star "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M21.1436 2.88017C21.2093 2.70565 21.3266 2.55529 21.4799 2.44916C21.6332 2.34303 21.8152 2.28617 22.0016 2.28617C22.1881 2.28617 22.3701 2.34303 22.5234 2.44916C22.6767 2.55529 22.794 2.70565 22.8596 2.88017L27.4998 16.0362H40.6045C40.7919 16.0362 40.9748 16.0936 41.1285 16.2007C41.2823 16.3078 41.3995 16.4595 41.4644 16.6353C41.5294 16.811 41.5388 17.0025 41.4916 17.1839C41.4444 17.3652 41.3427 17.5277 41.2003 17.6495L30.2498 26.7282L34.8331 40.4965C34.8944 40.681 34.8955 40.8802 34.8362 41.0653C34.7768 41.2505 34.6602 41.412 34.503 41.5265C34.3459 41.6409 34.1564 41.7025 33.962 41.7022C33.7676 41.702 33.5783 41.6399 33.4215 41.525L21.9998 33.1448L10.5726 41.525C10.4157 41.6377 10.2272 41.6978 10.034 41.697C9.84082 41.6961 9.65285 41.6343 9.49692 41.5202C9.341 41.4062 9.22509 41.2458 9.16574 41.0619C9.1064 40.8781 9.10665 40.6802 9.16647 40.4965L13.7498 26.7282L2.79747 17.6495C2.65505 17.5277 2.55338 17.3652 2.50615 17.1839C2.45892 17.0025 2.46841 16.811 2.53333 16.6353C2.59825 16.4595 2.71549 16.3078 2.86925 16.2007C3.02301 16.0936 3.20591 16.0362 3.3933 16.0362H16.4998L21.1436 2.88017Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                
  20792.  
  20793.              
  20794.            </div>
  20795.          
  20796.  
  20797.          <div class="highlights-banner__text">
  20798.            
  20799.              <span class="highlights-banner__heading">
  20800.                Quality and Saving
  20801.              </span>
  20802.            
  20803.  
  20804.            
  20805.              <p>Comprehensive quality control and affordable prices</p>
  20806.            
  20807.          </div>
  20808.          
  20809.        </div>
  20810.      
  20811.    
  20812.      
  20813.        <div
  20814.          class="highlights-banner__block highlights-banner__align-left"
  20815.          
  20816.          data-highlights-block
  20817.        >
  20818.          
  20819.            <div class="highlights-banner__icon">
  20820.              
  20821.                
  20822.  
  20823.  
  20824.                                  <svg class="icon-delivery-package "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M23.6498 42.7423C23.4202 42.8471 23.1714 42.9032 22.919 42.9073C22.6666 42.9114 22.4161 42.8634 22.1832 42.7662L2.044 34.3768C1.71005 34.2375 1.4248 34.0025 1.22416 33.7014C1.02352 33.4003 0.916474 33.0465 0.916504 32.6847V11.275C0.916331 10.9181 1.02032 10.569 1.21572 10.2703C1.41111 9.9717 1.68942 9.73659 2.0165 9.59384L21.2665 1.22467C21.4978 1.12372 21.7475 1.07162 21.9998 1.07162C22.2522 1.07162 22.5019 1.12372 22.7332 1.22467L41.9832 9.59384C42.3103 9.73659 42.5886 9.9717 42.784 10.2703C42.9794 10.569 43.0833 10.9181 43.0832 11.275V32.725C43.0834 33.0772 42.9822 33.422 42.7917 33.7182C42.6012 34.0143 42.3294 34.2494 42.0088 34.3952L23.6498 42.7423Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M22.9165 19.239V42.9275" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M22.9165 19.239L42.7513 10.2245" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M32.0337 5.269L11.9165 14.531V21.2392" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M22.9167 19.239L1.25586 10.2135" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                  
  20825.  
  20826.              
  20827.            </div>
  20828.          
  20829.  
  20830.          <div class="highlights-banner__text">
  20831.            
  20832.              <span class="highlights-banner__heading">
  20833.                Huge Inventory
  20834.              </span>
  20835.            
  20836.  
  20837.            
  20838.              <p>largest available inventory of parts in Canada</p>
  20839.            
  20840.          </div>
  20841.          
  20842.        </div>
  20843.      
  20844.    
  20845.      
  20846.        <div
  20847.          class="highlights-banner__block highlights-banner__align-left"
  20848.          
  20849.          data-highlights-block
  20850.        >
  20851.          
  20852.            <div class="highlights-banner__icon">
  20853.              
  20854.                
  20855.  
  20856.  
  20857.                            <svg class="icon-delivery "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="54" height="44" viewBox="0 0 54 44" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M5.5 22H18.7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M6.6001 38.5C6.6001 39.667 7.06367 40.7861 7.88883 41.6113C8.71399 42.4364 9.83314 42.9 11.0001 42.9C12.167 42.9 13.2862 42.4364 14.1114 41.6113C14.9365 40.7861 15.4001 39.667 15.4001 38.5C15.4001 37.333 14.9365 36.2139 14.1114 35.3887C13.2862 34.5636 12.167 34.1 11.0001 34.1C9.83314 34.1 8.71399 34.5636 7.88883 35.3887C7.06367 36.2139 6.6001 37.333 6.6001 38.5V38.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M37.3999 38.5C37.3999 39.667 37.8635 40.7861 38.6886 41.6113C39.5138 42.4364 40.6329 42.9 41.7999 42.9C42.9669 42.9 44.086 42.4364 44.9112 41.6113C45.7363 40.7861 46.1999 39.667 46.1999 38.5C46.1999 37.333 45.7363 36.2139 44.9112 35.3887C44.086 34.5636 42.9669 34.1 41.7999 34.1C40.6329 34.1 39.5138 34.5636 38.6886 35.3887C37.8635 36.2139 37.3999 37.333 37.3999 38.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M6.6001 38.5H2.2001C1.90836 38.5 1.62857 38.3841 1.42228 38.1778C1.21599 37.9715 1.1001 37.6917 1.1001 37.4V26.8554C1.10016 26.5642 1.21567 26.285 1.4213 26.0788L5.5001 22L10.3709 13.2308C10.5615 12.888 10.8403 12.6025 11.1784 12.4036C11.5164 12.2048 11.9015 12.1 12.2937 12.1H18.7001V2.20001C18.7001 1.90827 18.816 1.62848 19.0223 1.42219C19.2286 1.2159 19.5084 1.10001 19.8001 1.10001H50.6001C50.8918 1.10001 51.1716 1.2159 51.3779 1.42219C51.5842 1.62848 51.7001 1.90827 51.7001 2.20001V37.4C51.7001 37.6917 51.5842 37.9715 51.3779 38.1778C51.1716 38.3841 50.8918 38.5 50.6001 38.5H46.2001" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M15.3999 38.5H37.3999" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M18.7002 12.1V34.1" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M1.1001 34.1H51.7001" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                        
  20858.  
  20859.              
  20860.            </div>
  20861.          
  20862.  
  20863.          <div class="highlights-banner__text">
  20864.            
  20865.              <span class="highlights-banner__heading">
  20866.                Fast Shipping
  20867.              </span>
  20868.            
  20869.  
  20870.            
  20871.              <p>Fast and convenient door to door delivery</p>
  20872.            
  20873.          </div>
  20874.          
  20875.        </div>
  20876.      
  20877.    
  20878.      
  20879.        <div
  20880.          class="highlights-banner__block highlights-banner__align-left"
  20881.          
  20882.          data-highlights-block
  20883.        >
  20884.          
  20885.            <div class="highlights-banner__icon">
  20886.              
  20887.                
  20888.  
  20889.  
  20890.                          <svg class="icon-credit-card "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">    <path d="M37.4467 14.9787V3.74468C37.4467 2.99982 37.1508 2.28546 36.6241 1.75877C36.0974 1.23207 35.383 0.936172 34.6382 0.936172H3.74455C2.99968 0.936172 2.28533 1.23207 1.75863 1.75877C1.23193 2.28546 0.936035 2.99982 0.936035 3.74468V26.2128C0.936035 26.9576 1.23193 27.672 1.75863 28.1987C2.28533 28.7254 2.99968 29.0213 3.74455 29.0213H20.5956" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    <path d="M0.936035 9.36169H37.4467" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    <path d="M6.55322 16.3774H17.7873" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    <path d="M6.55322 20.161H12.1702" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    <path d="M26.2129 31.0213C26.2129 29.9167 27.1083 29.0213 28.2129 29.0213H41.064C42.1685 29.0213 43.064 29.9167 43.064 31.0213V41.0638C43.064 42.1684 42.1685 43.0638 41.064 43.0638H28.2129C27.1083 43.0638 26.2129 42.1684 26.2129 41.0638V31.0213Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    <path d="M34.6385 20.5957C33.1488 20.5957 31.7201 21.1875 30.6667 22.2409C29.6133 23.2943 29.0215 24.723 29.0215 26.2128V29.0213H40.2555V26.2128C40.2555 24.723 39.6637 23.2943 38.6103 22.2409C37.5569 21.1875 36.1282 20.5957 34.6385 20.5957Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    <path d="M34.6382 35.3947C34.777 35.3947 34.9128 35.4359 35.0282 35.513C35.1437 35.5902 35.2337 35.6999 35.2868 35.8282C35.34 35.9565 35.3539 36.0976 35.3268 36.2338C35.2997 36.37 35.2328 36.4951 35.1346 36.5933C35.0364 36.6915 34.9113 36.7584 34.7751 36.7855C34.6389 36.8126 34.4978 36.7987 34.3695 36.7455C34.2412 36.6924 34.1315 36.6024 34.0544 36.4869C33.9772 36.3715 33.936 36.2357 33.936 36.0968C33.936 35.9106 34.01 35.732 34.1417 35.6004C34.2734 35.4687 34.4519 35.3947 34.6382 35.3947" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                          
  20891.  
  20892.              
  20893.            </div>
  20894.          
  20895.  
  20896.          <div class="highlights-banner__text">
  20897.            
  20898.              <span class="highlights-banner__heading">
  20899.                Payment Security
  20900.              </span>
  20901.            
  20902.  
  20903.            
  20904.              <p>We have secured payment methods</p>
  20905.            
  20906.          </div>
  20907.          
  20908.        </div>
  20909.      
  20910.    
  20911.  </div>
  20912. </div>
  20913.  
  20914. </div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
  20915.  type="application/json"
  20916.  data-section-id="template--15492296147031__dynamic_html_knfnMB"
  20917.  data-section-type="dynamic-html"
  20918. ></script>
  20919.  
  20920. <section class="custom-html--container">
  20921.  
  20922.  <div class="rte" data-rte>
  20923.    <h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
  20924.  </div>
  20925. </section>
  20926.  
  20927. </div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
  20928.  type="application/json"
  20929.  data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
  20930.  data-section-type="dynamic-rich-text"
  20931. ></script>
  20932.  
  20933. <script type="application/pxs-animation-mapping+json">
  20934.  {
  20935.    "blocks": [".rich-text-block"],
  20936.    "elements": []
  20937.  }
  20938. </script>
  20939.  
  20940. <section
  20941.  class="
  20942.    rich-text--container
  20943.    rich-text-full-width
  20944.  "
  20945. >
  20946.    <div
  20947.      class="
  20948.        rich-text-block
  20949.        rich-text-alignment-center
  20950.      "
  20951.      
  20952.    >
  20953.        
  20954.  
  20955.        
  20956.          <div class="rich-text-content rte" data-rte>
  20957.            <p><strong>LaptopParts.ca </strong>is an e-tailer specializing in the distribution and sales of computer, laptop and tablet parts and accessories. We are a premiere source for all major brand parts and accessories, with over 100,000 active products in our database. Through our various distribution agreements across North America and overseas, we have the largest available inventory of parts in Canada. Our inventory is stocked and shipped from Canada. (Alexandria, Ontario)</p><p><a href="/pages/about-us" title="About Us"><strong>Read More</strong></a></p>
  20958.          </div>
  20959.        
  20960.    </div>
  20961. </section>
  20962.  
  20963. </div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
  20964.  type="application/json"
  20965.  data-section-id="template--15492296147031__dynamic_html_fKi4qq"
  20966.  data-section-type="dynamic-html"
  20967. ></script>
  20968.  
  20969. <section class="custom-html--container">
  20970.  
  20971.  <div class="rte" data-rte>
  20972.    <div id="SA_wrapper_d49Jzy96tCVD" class="SA__wrapper"></div><script type="text/javascript">var sa_interval = 5000;function saLoadScript(src) { var js = window.document.createElement('script'); js.src = src; js.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(js); } if (typeof(shopper_first) == 'undefined') saLoadScript('https://www.shopperapproved.com/widgets/40623/merchant/rotating-widget/d49Jzy96tCVD.js?v=2'); </script>
  20973.  </div>
  20974. </section>
  20975.  
  20976. </div>
  20977.    </main>
  20978.  
  20979.    <!-- BEGIN sections: footer-group -->
  20980. <div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
  20981.  type="application/json"
  20982.  data-section-id="sections--15492291100759__footer"
  20983.  data-section-type="static-footer">
  20984. </script>
  20985.  
  20986.  
  20987.  
  20988.  
  20989.  
  20990. <footer role="contentinfo" aria-label="Footer">
  20991.  <section class="site-footer-wrapper">
  20992.    
  20993.      <div class="site-footer-item">
  20994.        <div class="site-footer-blocks column-count-4">
  20995.          <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  20996.  
  20997.  
  20998.      <h2 class="site-footer-block-title" data-accordion-trigger>
  20999.        FURTHER INFO.
  21000.  
  21001.        <span class="site-footer-block-icon accordion--icon">
  21002.          <svg
  21003.  aria-hidden="true"
  21004.  focusable="false"
  21005.  role="presentation"
  21006.  width="14"
  21007.  height="8"
  21008.  viewBox="0 0 14 8"
  21009.  fill="none"
  21010.  xmlns="http://www.w3.org/2000/svg"
  21011. >
  21012.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21013.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21014. </svg>
  21015.  
  21016.        </span>
  21017.      </h2>
  21018.  
  21019.      <div class="site-footer-block-content">
  21020.        
  21021.  
  21022.  
  21023.  
  21024.  
  21025.  
  21026.  
  21027.  
  21028.  
  21029.  
  21030.  
  21031.  
  21032.  
  21033. <ul
  21034.  class="
  21035.    navmenu
  21036.    navmenu-depth-1
  21037.    
  21038.    
  21039.  "
  21040.  data-navmenu
  21041.  data-accordion-content
  21042.  
  21043.  
  21044. >
  21045.  
  21046.    
  21047.  
  21048.    
  21049.    
  21050.  
  21051.    
  21052.    
  21053.  
  21054.    
  21055.  
  21056.    
  21057.      <li
  21058.        class="navmenu-item navmenu-id-home"
  21059.      >
  21060.        <a
  21061.        class="
  21062.          navmenu-link
  21063.          navmenu-link-depth-1
  21064.          navmenu-link-active
  21065.        "
  21066.        href="/"
  21067.        >
  21068.          
  21069.          Home
  21070. </a>
  21071.      </li>
  21072.    
  21073.  
  21074.    
  21075.  
  21076.    
  21077.    
  21078.  
  21079.    
  21080.    
  21081.  
  21082.    
  21083.  
  21084.    
  21085.      <li
  21086.        class="navmenu-item navmenu-id-search"
  21087.      >
  21088.        <a
  21089.        class="
  21090.          navmenu-link
  21091.          navmenu-link-depth-1
  21092.          
  21093.        "
  21094.        href="/search"
  21095.        >
  21096.          
  21097.          Search
  21098. </a>
  21099.      </li>
  21100.    
  21101.  
  21102.    
  21103.  
  21104.    
  21105.    
  21106.  
  21107.    
  21108.    
  21109.  
  21110.    
  21111.  
  21112.    
  21113.      <li
  21114.        class="navmenu-item navmenu-id-about-us"
  21115.      >
  21116.        <a
  21117.        class="
  21118.          navmenu-link
  21119.          navmenu-link-depth-1
  21120.          
  21121.        "
  21122.        href="/pages/about-us"
  21123.        >
  21124.          
  21125.          About Us
  21126. </a>
  21127.      </li>
  21128.    
  21129.  
  21130.    
  21131.  
  21132.    
  21133.    
  21134.  
  21135.    
  21136.    
  21137.  
  21138.    
  21139.  
  21140.    
  21141.      <li
  21142.        class="navmenu-item navmenu-id-parts-request"
  21143.      >
  21144.        <a
  21145.        class="
  21146.          navmenu-link
  21147.          navmenu-link-depth-1
  21148.          
  21149.        "
  21150.        href="/pages/part-request"
  21151.        >
  21152.          
  21153.          Parts Request
  21154. </a>
  21155.      </li>
  21156.    
  21157.  
  21158.    
  21159.  
  21160.    
  21161.    
  21162.  
  21163.    
  21164.    
  21165.  
  21166.    
  21167.  
  21168.    
  21169.      <li
  21170.        class="navmenu-item navmenu-id-repair-centers"
  21171.      >
  21172.        <a
  21173.        class="
  21174.          navmenu-link
  21175.          navmenu-link-depth-1
  21176.          
  21177.        "
  21178.        href="/pages/store-locator"
  21179.        >
  21180.          
  21181.          Repair Centers
  21182. </a>
  21183.      </li>
  21184.    
  21185.  
  21186.    
  21187.  
  21188.    
  21189.    
  21190.  
  21191.    
  21192.    
  21193.  
  21194.    
  21195.  
  21196.    
  21197.      <li
  21198.        class="navmenu-item navmenu-id-francais"
  21199.      >
  21200.        <a
  21201.        class="
  21202.          navmenu-link
  21203.          navmenu-link-depth-1
  21204.          
  21205.        "
  21206.        href="/pages/francais"
  21207.        >
  21208.          
  21209.          Français
  21210. </a>
  21211.      </li>
  21212.    
  21213.  
  21214.    
  21215.  
  21216.    
  21217.    
  21218.  
  21219.    
  21220.    
  21221.  
  21222.    
  21223.  
  21224.    
  21225.      <li
  21226.        class="navmenu-item navmenu-id-reviews"
  21227.      >
  21228.        <a
  21229.        class="
  21230.          navmenu-link
  21231.          navmenu-link-depth-1
  21232.          
  21233.        "
  21234.        href="/pages/reviews"
  21235.        >
  21236.          
  21237.          Reviews
  21238. </a>
  21239.      </li>
  21240.    
  21241.  
  21242. </ul>
  21243.  
  21244.  
  21245.        <!-- TG seal - snippets/footer.liquid -->
  21246.        
  21247.          <div style="margin-top: 2em;">
  21248.            <a href="https://www.shopperapproved.com/reviews/laptopparts.ca/" class="shopperlink new-sa-seals placement-1950"><img src="//www.shopperapproved.com/seal/40623/1950-sa-seal.gif" style="border-radius: 4px;" alt="Customer Reviews" oncontextmenu="var d = new Date(); alert('Copying Prohibited by Law - This image and all included logos are copyrighted by Shopper Approved \251 '+d.getFullYear()+'.'); return false;" /></a><script type="text/javascript"> (function() { var js = window.document.createElement("script"); js.innerHTML = 'function openshopperapproved(o){ var e="Microsoft Internet Explorer"!=navigator.appName?"yes":"no",n=screen.availHeight-90,r=940;return window.innerWidth<1400&&(r=620),window.open(this.href,"shopperapproved","location="+e+",scrollbars=yes,width="+r+",height="+n+",menubar=no,toolbar=no"),o.stopPropagation&&o.stopPropagation(),!1}!function(){for(var o=document.getElementsByClassName("shopperlink"),e=0,n=o.length;e<n;e++)o[e].onclick=openshopperapproved}();'; js.type = "text/javascript"; document.getElementsByTagName("head")[0].appendChild(js);var link = document.createElement('link');link.rel = 'stylesheet';link.type = 'text/css';link.href = "//www.shopperapproved.com/seal/1950.css";document.getElementsByTagName('head')[0].appendChild(link);})();</script>
  21249.            <style type="text/css">@media (max-width: 500px) { .tgfloat img { width:145px; }}</style><div  class="tgbanner " style="display: inline;"><a href="https://app.trustguard.com/certificate/laptopparts.ca" target="_blank"><img alt="Trust Guard Security Scanned" class="tgfloat-inner" src="https://seal.trustguard.com/sites/laptopparts.ca/670ff4366765e205f54dd5ec.svg" style="border: 0; height: 56px; " oncontextmenu="var d = new Date(); alert('Copying Prohibited by Law - This image and all included logos are copyrighted by Trust Guard '+d.getFullYear()+'.'); return false;" /></a></div>
  21250.          </div>
  21251.        
  21252.        <!-- END TG seal - snippets/footer.liquid -->
  21253.      </div>
  21254.  
  21255. </div>
  21256. <div class="site-footer-block-item  site-footer-block-menu  has-accordion" >
  21257.  
  21258.  
  21259.      <h2 class="site-footer-block-title" data-accordion-trigger>
  21260.        CUSTOMER SERVICE
  21261.  
  21262.        <span class="site-footer-block-icon accordion--icon">
  21263.          <svg
  21264.  aria-hidden="true"
  21265.  focusable="false"
  21266.  role="presentation"
  21267.  width="14"
  21268.  height="8"
  21269.  viewBox="0 0 14 8"
  21270.  fill="none"
  21271.  xmlns="http://www.w3.org/2000/svg"
  21272. >
  21273.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21274.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21275. </svg>
  21276.  
  21277.        </span>
  21278.      </h2>
  21279.  
  21280.      <div class="site-footer-block-content">
  21281.        
  21282.  
  21283.  
  21284.  
  21285.  
  21286.  
  21287.  
  21288.  
  21289.  
  21290.  
  21291.  
  21292.  
  21293.  
  21294. <ul
  21295.  class="
  21296.    navmenu
  21297.    navmenu-depth-1
  21298.    
  21299.    
  21300.  "
  21301.  data-navmenu
  21302.  data-accordion-content
  21303.  
  21304.  
  21305. >
  21306.  
  21307.    
  21308.  
  21309.    
  21310.    
  21311.  
  21312.    
  21313.    
  21314.  
  21315.    
  21316.  
  21317.    
  21318.      <li
  21319.        class="navmenu-item navmenu-id-privacy-policy"
  21320.      >
  21321.        <a
  21322.        class="
  21323.          navmenu-link
  21324.          navmenu-link-depth-1
  21325.          
  21326.        "
  21327.        href="/pages/privacy-policy"
  21328.        >
  21329.          
  21330.          Privacy Policy
  21331. </a>
  21332.      </li>
  21333.    
  21334.  
  21335.    
  21336.  
  21337.    
  21338.    
  21339.  
  21340.    
  21341.    
  21342.  
  21343.    
  21344.  
  21345.    
  21346.      <li
  21347.        class="navmenu-item navmenu-id-return-policy"
  21348.      >
  21349.        <a
  21350.        class="
  21351.          navmenu-link
  21352.          navmenu-link-depth-1
  21353.          
  21354.        "
  21355.        href="/pages/returns"
  21356.        >
  21357.          
  21358.          Return Policy
  21359. </a>
  21360.      </li>
  21361.    
  21362.  
  21363.    
  21364.  
  21365.    
  21366.    
  21367.  
  21368.    
  21369.    
  21370.  
  21371.    
  21372.  
  21373.    
  21374.      <li
  21375.        class="navmenu-item navmenu-id-shipping"
  21376.      >
  21377.        <a
  21378.        class="
  21379.          navmenu-link
  21380.          navmenu-link-depth-1
  21381.          
  21382.        "
  21383.        href="/pages/shipping"
  21384.        >
  21385.          
  21386.          Shipping
  21387. </a>
  21388.      </li>
  21389.    
  21390.  
  21391.    
  21392.  
  21393.    
  21394.    
  21395.  
  21396.    
  21397.    
  21398.  
  21399.    
  21400.  
  21401.    
  21402.      <li
  21403.        class="navmenu-item navmenu-id-warranty"
  21404.      >
  21405.        <a
  21406.        class="
  21407.          navmenu-link
  21408.          navmenu-link-depth-1
  21409.          
  21410.        "
  21411.        href="/pages/warranty"
  21412.        >
  21413.          
  21414.          Warranty
  21415. </a>
  21416.      </li>
  21417.    
  21418.  
  21419.    
  21420.  
  21421.    
  21422.    
  21423.  
  21424.    
  21425.    
  21426.  
  21427.    
  21428.  
  21429.    
  21430.      <li
  21431.        class="navmenu-item navmenu-id-blogs"
  21432.      >
  21433.        <a
  21434.        class="
  21435.          navmenu-link
  21436.          navmenu-link-depth-1
  21437.          
  21438.        "
  21439.        href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
  21440.        >
  21441.          
  21442.          Blogs
  21443. </a>
  21444.      </li>
  21445.    
  21446.  
  21447. </ul>
  21448.  
  21449.  
  21450.        <!-- TG seal - snippets/footer.liquid -->
  21451.        
  21452.        <!-- END TG seal - snippets/footer.liquid -->
  21453.      </div>
  21454.  
  21455. </div>
  21456. <div class="site-footer-block-item  site-footer-block-social-accounts  " >
  21457.  
  21458.  
  21459.    
  21460.  
  21461.  
  21462.  
  21463.  
  21464.  
  21465.  
  21466.  
  21467.  
  21468.  
  21469.  
  21470.  
  21471.  
  21472.  
  21473.  
  21474.  
  21475.  
  21476.  
  21477.  
  21478.  
  21479.  
  21480.  
  21481.  
  21482.    
  21483.    
  21484.  
  21485.  
  21486.  
  21487.  
  21488.    <h2 class="site-footer-block-title">
  21489.      Follow us
  21490.    </h2>
  21491.  
  21492.    <div class="site-footer-block-content">
  21493.  
  21494.  
  21495.  <div class="social-icons">
  21496.  
  21497.  
  21498. <a
  21499.  class="social-link"
  21500.  title="Facebook"
  21501.  href="https://web.facebook.com/laptopparts.ca/?_rdc=1&amp;_rdr"
  21502.  target="_blank">
  21503. <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M13.591 6.00441C11.5868 6.11515 9.75158 6.92966 8.34448 8.333C7.44444 9.23064 6.78641 10.2982 6.39238 11.5002C6.01229 12.6596 5.90552 13.9193 6.08439 15.1343C6.18456 15.8146 6.36736 16.4631 6.63981 17.1046C6.71166 17.2738 6.89438 17.6476 6.98704 17.815C7.22995 18.2538 7.52906 18.6904 7.84853 19.0725C8.16302 19.4486 8.56717 19.8479 8.94482 20.1556C9.6776 20.7526 10.5183 21.2186 11.4085 21.5211C11.8412 21.6681 12.259 21.7723 12.7342 21.8517L12.751 21.8545V19.0664V16.2783H11.7348H10.7186V15.1231V13.9678H11.7344H12.7503L12.7531 12.9265C12.756 11.8203 12.7553 11.845 12.7927 11.5862C12.9306 10.6339 13.3874 9.91646 14.1198 9.50212C14.4564 9.31168 14.8782 9.18341 15.331 9.13374C15.791 9.0833 16.55 9.12126 17.351 9.23478C17.4659 9.25105 17.5612 9.26437 17.5629 9.26437C17.5646 9.26437 17.566 9.70662 17.566 10.2472V11.2299L16.9679 11.233C16.3284 11.2363 16.299 11.2379 16.1298 11.2771C15.6926 11.3785 15.4015 11.6608 15.2983 12.0834C15.2566 12.2542 15.256 12.2685 15.256 13.1531V13.9678H16.3622C17.3606 13.9678 17.4685 13.9689 17.4685 13.9795C17.4685 13.9921 17.1263 16.2236 17.1191 16.2578L17.1148 16.2783H16.1854H15.256V19.0647V21.8511L15.2954 21.8459C15.4396 21.8271 15.8337 21.7432 16.0548 21.6844C16.5933 21.5411 17.079 21.3576 17.581 21.1076C19.3154 20.2441 20.6895 18.7615 21.4192 16.9663C21.7498 16.153 21.936 15.3195 21.9915 14.4052C22.0028 14.2197 22.0028 13.7268 21.9916 13.5415C21.9403 12.6947 21.7817 11.9389 21.4942 11.1712C20.8665 9.49533 19.6589 8.05123 18.1135 7.12853C17.7376 6.90413 17.2813 6.68103 16.8985 6.53456C16.1262 6.23908 15.3815 6.07432 14.5323 6.01114C14.3897 6.00053 13.7447 5.99591 13.591 6.00441Z" fill="currentColor"/>    </svg>
  21504.  
  21505.    <span class="visually-hidden">Find us on Facebook</span>
  21506.  
  21507. </a>
  21508.  
  21509.  
  21510.  
  21511.  
  21512. <a
  21513.  class="social-link"
  21514.  title="Twitter"
  21515.  href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
  21516.  target="_blank">
  21517. <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M16.7107 8.01016C16.0674 8.08828 15.4592 8.34677 14.9808 8.74546C14.3619 9.26117 13.9733 9.932 13.8282 10.735C13.7732 11.0393 13.7814 11.5765 13.8457 11.8826C13.8581 11.9415 13.8648 11.9931 13.8606 11.9973C13.8565 12.0014 13.7526 11.9967 13.6299 11.9867C11.6498 11.8255 9.86436 11.0998 8.32993 9.83247C8.08976 9.63411 7.46709 9.0206 7.25993 8.77819C7.17962 8.68424 7.10806 8.60502 7.10087 8.60215C7.07841 8.59318 6.89133 8.99533 6.82319 9.19908C6.5182 10.1109 6.62714 11.0997 7.12305 11.9207C7.35156 12.299 7.6175 12.5843 8.04875 12.914L8.09561 12.9498L7.96283 12.9404C7.56691 12.9125 7.16242 12.8032 6.79124 12.6238C6.70962 12.5844 6.63644 12.5494 6.62862 12.546C6.60958 12.5379 6.62905 12.8651 6.6599 13.0716C6.85098 14.351 7.82335 15.4305 9.06804 15.7452C9.14752 15.7653 9.21253 15.786 9.21253 15.7913C9.21253 15.8015 9.03887 15.8403 8.86887 15.8681C8.81302 15.8773 8.65134 15.8888 8.50958 15.8937C8.27595 15.9018 8.16933 15.8959 7.85692 15.8577L7.77444 15.8476L7.81534 15.9624C7.88056 16.1455 8.04381 16.4672 8.16129 16.6441C8.72962 17.4998 9.64218 18.0285 10.6963 18.1127L10.8288 18.1233L10.7744 18.169C10.6906 18.2393 10.2073 18.5566 10.0342 18.6548C9.24773 19.1015 8.37784 19.377 7.42859 19.4803C7.13755 19.512 6.46302 19.5159 6.19231 19.4876C6.09057 19.4769 6.00412 19.4714 6.0002 19.4753C5.99011 19.4853 6.36772 19.7084 6.62722 19.8458C7.55676 20.3377 8.59674 20.68 9.63431 20.8355C10.3733 20.9463 11.2677 20.9669 12.04 20.8911C14.1558 20.6832 16.0078 19.839 17.4899 18.4067C19.0217 16.9265 20.0398 14.8743 20.31 12.7228C20.3571 12.3475 20.3722 12.092 20.3731 11.6571L20.3739 11.2127L20.4579 11.1524C20.7159 10.9673 21.1178 10.6063 21.3633 10.3394C21.6026 10.0792 22.0329 9.53139 21.998 9.53139C21.9933 9.53139 21.8754 9.5763 21.7362 9.6312C21.4534 9.74268 21.2125 9.81851 20.8927 9.8968C20.6687 9.95158 20.2052 10.0345 20.1763 10.025C20.1672 10.022 20.208 9.98764 20.2669 9.94871C20.7209 9.64839 21.1173 9.20076 21.3654 8.70831C21.4639 8.5128 21.5639 8.2633 21.5495 8.24903C21.5445 8.24406 21.4849 8.27187 21.4169 8.31084C20.9381 8.58539 20.2815 8.83829 19.6928 8.97486L19.4783 9.02465L19.3156 8.87036C18.8586 8.43683 18.259 8.14443 17.5951 8.03122C17.4261 8.0024 16.8815 7.98943 16.7107 8.01016Z" fill="currentColor"/>    </svg>
  21518.  
  21519.    <span class="visually-hidden">Find us on Twitter</span>
  21520.  
  21521. </a>
  21522.  
  21523. </div>
  21524.  
  21525.  
  21526.    </div>
  21527.  
  21528.  
  21529.  
  21530.  
  21531. </div>
  21532. <div class="site-footer-block-item  site-footer-block-rich-text  " >
  21533.  
  21534.  
  21535.    
  21536.      <h2 class="site-footer-block-title">
  21537.        Contact Us
  21538.      </h2>
  21539.    
  21540.  
  21541.    
  21542.      <div class="site-footer-block-content rte">
  21543.        <p>📍 215 Main St N<br/>Alexandria, ON, Canada<br/>K0C 1A0</p><p>📞 Call us at 1-800-934-4202</p><p>🗨️ Text us at 1-613-704-4708</p><p>✉️ Email us at service@laptopparts.ca</p>
  21544.      </div>
  21545.    
  21546.  
  21547.    
  21548.  
  21549. </div>
  21550.  
  21551.        </div>
  21552.      </div>
  21553.    
  21554.  
  21555.    <div class="site-footer-item site-footer-item--information">
  21556.      <div class="site-footer__row site-footer__row--first">
  21557. <div class="site-footer-right ">
  21558.        <div class="shopify-cross-border">
  21559.          
  21560.        
  21561.          
  21562.        </div>
  21563.        
  21564. <ul class="payment-icons">
  21565.          
  21566.            <li class="payment-icons-item">
  21567.              <svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
  21568.  
  21569.            </li>
  21570.          
  21571.            <li class="payment-icons-item">
  21572.              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
  21573.  
  21574.            </li>
  21575.          
  21576.            <li class="payment-icons-item">
  21577.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg>
  21578.            </li>
  21579.          
  21580.            <li class="payment-icons-item">
  21581.              <svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
  21582.            </li>
  21583.          
  21584.            <li class="payment-icons-item">
  21585.              <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
  21586.  
  21587.            </li>
  21588.          
  21589.            <li class="payment-icons-item">
  21590.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
  21591.            </li>
  21592.          
  21593.            <li class="payment-icons-item">
  21594.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>
  21595.            </li>
  21596.          
  21597.            <li class="payment-icons-item">
  21598.              <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
  21599.  
  21600.            </li>
  21601.          
  21602.            <li class="payment-icons-item">
  21603.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
  21604.            </li>
  21605.          
  21606.        </ul></div>
  21607.      </div>
  21608.  
  21609.      <div class="site-footer__row site-footer__row--second">
  21610.        <div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
  21611.            <b>LaptopParts.ca</b>
  21612.          </p>
  21613.  
  21614.          <p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
  21615.          </p>
  21616.        </div>
  21617.  
  21618.        
  21619. <div class="site-footer-right ">
  21620.        <div class="shopify-cross-border">
  21621.          
  21622.        
  21623.          
  21624.        </div>
  21625.        
  21626. <ul class="payment-icons">
  21627.          
  21628.            <li class="payment-icons-item">
  21629.              <svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
  21630.  
  21631.            </li>
  21632.          
  21633.            <li class="payment-icons-item">
  21634.              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
  21635.  
  21636.            </li>
  21637.          
  21638.            <li class="payment-icons-item">
  21639.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg>
  21640.            </li>
  21641.          
  21642.            <li class="payment-icons-item">
  21643.              <svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
  21644.            </li>
  21645.          
  21646.            <li class="payment-icons-item">
  21647.              <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
  21648.  
  21649.            </li>
  21650.          
  21651.            <li class="payment-icons-item">
  21652.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
  21653.            </li>
  21654.          
  21655.            <li class="payment-icons-item">
  21656.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>
  21657.            </li>
  21658.          
  21659.            <li class="payment-icons-item">
  21660.              <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
  21661.  
  21662.            </li>
  21663.          
  21664.            <li class="payment-icons-item">
  21665.              <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
  21666.            </li>
  21667.          
  21668.        </ul></div>
  21669.      </div>
  21670.    </div>
  21671.  </section>
  21672. </footer>
  21673.  
  21674. </div>
  21675. <!-- END sections: footer-group -->
  21676.  
  21677.    
  21678.    <div style="display: none;" aria-hidden="true" data-templates>
  21679.      
  21680.      <div
  21681.        class="message-banner--container"
  21682.        role="alert"
  21683.        data-message-banner
  21684.      >
  21685.        <div class="message-banner--outer">
  21686.          <div class="message-banner--inner" data-message-banner-content></div>
  21687.  
  21688.          <button
  21689.            class="message-banner--close"
  21690.            type="button"
  21691.            aria-label="Close"
  21692.            data-message-banner-close
  21693.          ><svg
  21694.  aria-hidden="true"
  21695.  focusable="false"
  21696.  role="presentation"
  21697.  xmlns="http://www.w3.org/2000/svg"
  21698.  width="13"
  21699.  height="13"
  21700.  viewBox="0 0 13 13"
  21701. >
  21702.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  21703. </svg></button>
  21704.        </div>
  21705.      </div>
  21706.      
  21707.  
  21708.      
  21709.      <section class="atc-banner--container" role="log" data-atc-banner>
  21710.        <div class="atc-banner--outer">
  21711.          <div class="atc-banner--inner">
  21712.            <div class="atc-banner--product">
  21713.              <h2 class="atc-banner--product-title">
  21714.                <span class="atc-banner--product-title--icon">
  21715.                  
  21716.  
  21717.  
  21718.                <svg class="icon-checkmark "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18"  height="13" viewBox="0 0 18 13" xmlns="http://www.w3.org/2000/svg">      <path fill="currentColor" fill-rule="evenodd" d="M6.23 9.1L2.078 5.2 0 7.15 6.23 13 18 1.95 15.923 0z" />    </svg>                                                                                                    
  21719.  
  21720.                </span>
  21721.                Added to your cart:
  21722.              </h2>
  21723.  
  21724.              <div class="atc--product">
  21725.                <div class="atc--product-image" data-atc-banner-product-image>
  21726.                  <svg class="placeholder--image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  21727.                </div>
  21728.                <div class="atc--product-details">
  21729.                  <h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
  21730.                  <span class="atc--product-details--options" data-atc-banner-product-options></span>
  21731.                  <span class="atc--product-details--price">
  21732.                    <span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
  21733.                    <span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
  21734.                    <span
  21735.                      class="atc--product-details--price-discounted money"
  21736.                      data-atc-banner-product-price-discounted
  21737.                    ></span>
  21738.                    <span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
  21739.                      ** total_quantity ** | ** unit_price ** / ** unit_measure **
  21740.                    </span>
  21741.                  </span>
  21742.                  <ul class="discount-list" data-atc-banner-product-discounts>
  21743.                    <li class="discount-list-item">
  21744.                      
  21745.  
  21746.  
  21747.                                                                        <svg class="icon-sale-tag "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="350" height="350" viewBox="0 0 350 350" fill="none">      <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M0 197.826C0 192.95 1.93821 188.275 5.38762 184.83L179.459 10.7587C186.348 3.86966 195.692 -0.000356971 205.435 2.46966e-08H334.782C343.187 2.46966e-08 350 6.81304 350 15.2173V144.565C350 154.308 346.13 163.651 339.241 170.541L165.17 344.612C161.725 348.061 157.049 350 152.174 350C147.299 350 142.624 348.061 139.179 344.612L5.38762 210.821C1.93821 207.376 0 202.701 0 197.826ZM304.348 68.4786C304.348 81.085 294.128 91.3046 281.521 91.3046C268.915 91.3046 258.695 81.085 258.695 68.4786C258.695 55.8721 268.915 45.6525 281.521 45.6525C294.128 45.6525 304.348 55.8721 304.348 68.4786Z" fill="currentColor"/>    </svg>                                            
  21748.  
  21749.                      <span class="discount-title"></span>
  21750.                      (-<span class="money discount-amount"></span>)
  21751.                    </li>
  21752.                  </ul>
  21753.                  <span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
  21754.                </div>
  21755.              </div>
  21756.            </div>
  21757.  
  21758.            <div class="atc-banner--cart">
  21759.              <div class="atc-banner--cart-subtotal">
  21760.                <span class="atc-subtotal--label">
  21761.                  Cart subtotal
  21762.                </span>
  21763.                <span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
  21764.              </div>
  21765.  
  21766.              <footer class="atc-banner--cart-footer">
  21767.                <a
  21768.                  class="button-secondary atc-button--viewcart"
  21769.                  href="/cart"
  21770.                  data-atc-banner-cart-button
  21771.                >
  21772.                  View cart (<span></span>)
  21773.                </a>
  21774.                <form
  21775.                  action="/cart"
  21776.                  method="post"
  21777.                  aria-label="cart checkout"
  21778.                >
  21779.                  <button class="button-primary atc-button--checkout" type="submit" name="checkout">
  21780.                    
  21781.                      <svg
  21782. width="20"
  21783. height="20"
  21784. viewBox="0 0 20 20"
  21785. fill="none"
  21786. xmlns="http://www.w3.org/2000/svg">
  21787. <path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 11.1667C2.5 10.0622 3.39543 9.16675 4.5 9.16675H15.5C16.6046 9.16675 17.5 10.0622 17.5 11.1667V16.3334C17.5 17.438 16.6046 18.3334 15.5 18.3334H4.5C3.39543 18.3334 2.5 17.438 2.5 16.3334V11.1667Z" fill="currentColor"/>
  21788. <path d="M5.83337 9.16675V5.83341C5.83337 3.53223 7.69885 1.66675 10 1.66675C12.3012 1.66675 14.1667 3.53223 14.1667 5.83341V9.16675" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  21789. </svg>
  21790.  
  21791.                    
  21792.                    <span>Checkout</span>
  21793.                  </button>
  21794.                </form>
  21795.              </footer>
  21796.            </div>
  21797.          </div>
  21798.  
  21799.          <button
  21800.            class="atc-banner--close"
  21801.            type="button"
  21802.            aria-label="Close"
  21803.            data-atc-banner-close
  21804.          ><svg
  21805.  aria-hidden="true"
  21806.  focusable="false"
  21807.  role="presentation"
  21808.  xmlns="http://www.w3.org/2000/svg"
  21809.  width="13"
  21810.  height="13"
  21811.  viewBox="0 0 13 13"
  21812. >
  21813.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  21814. </svg></button>
  21815.        </div>
  21816.      </section>
  21817.      
  21818.    </div>
  21819.  
  21820.    
  21821.    
  21822.    <div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
  21823.      <div class="modal-inner" data-modal-inner>
  21824.        <button
  21825.          class="modal-close"
  21826.          type="button"
  21827.          aria-label="Close"
  21828.          data-modal-close
  21829.        >
  21830.          <svg
  21831.  aria-hidden="true"
  21832.  focusable="false"
  21833.  role="presentation"
  21834.  xmlns="http://www.w3.org/2000/svg"
  21835.  width="13"
  21836.  height="13"
  21837.  viewBox="0 0 13 13"
  21838. >
  21839.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  21840. </svg>
  21841.        </button>
  21842.        <div class="modal-content" data-modal-content></div>
  21843.      </div>
  21844.    </div>
  21845.  
  21846.    <div class="modal-1" data-modal-container-1 aria-label="modal window">
  21847.      <div class="modal-inner" data-modal-inner>
  21848.        <button
  21849.          class="modal-close"
  21850.          type="button"
  21851.          aria-label="Close"
  21852.          data-modal-1-close
  21853.        >
  21854.          <svg
  21855.  aria-hidden="true"
  21856.  focusable="false"
  21857.  role="presentation"
  21858.  xmlns="http://www.w3.org/2000/svg"
  21859.  width="13"
  21860.  height="13"
  21861.  viewBox="0 0 13 13"
  21862. >
  21863.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  21864. </svg>
  21865.        </button>
  21866.        <div class="modal-content" data-modal-content></div>
  21867.      </div>
  21868.    </div>
  21869.    
  21870.  
  21871.    
  21872.    
  21873.    
  21874.    <div
  21875.      class="pswp"
  21876.      tabindex="-1"
  21877.      role="dialog"
  21878.      aria-hidden="true"
  21879.      aria-label="Product zoom dialog"
  21880.      data-photoswipe
  21881.    >
  21882.      
  21883.      <div class="pswp__bg"></div>
  21884.  
  21885.      
  21886.      <div class="pswp__scroll-wrap">
  21887.        
  21888.        <div class="pswp__container" aria-hidden="true">
  21889.          <div class="pswp__item"></div>
  21890.          <div class="pswp__item"></div>
  21891.          <div class="pswp__item"></div>
  21892.        </div>
  21893.  
  21894.        
  21895.        <div class="pswp__ui pswp__ui--hidden">
  21896.          <div class="pswp__top-bar">
  21897.            
  21898.            <div class="pswp__counter"></div>
  21899.            <button class="pswp__button pswp__button--close" title="Close">
  21900.              <span tabindex="-1">
  21901.                
  21902.  
  21903.  
  21904.              <svg class="icon-close "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none">      <path d="M17 1L1 17" stroke="currentColor" stroke-width="1.75" stroke-linejoin="round"/>      <path d="M1 1L17 17" stroke="currentColor" stroke-width="1.75" stroke-linejoin="round"/>    </svg>                                                                                                      
  21905.  
  21906.              </span>
  21907.            </button>
  21908.            <button class="pswp__button pswp__button--share" title="Share"></button>
  21909.            <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
  21910.            <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
  21911.  
  21912.            
  21913.            
  21914.            <div class="pswp__preloader">
  21915.              <div class="pswp__preloader__icn">
  21916.                <div class="pswp__preloader__cut">
  21917.                  <div class="pswp__preloader__donut"></div>
  21918.                </div>
  21919.              </div>
  21920.            </div>
  21921.          </div>
  21922.  
  21923.          <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
  21924.            <div class="pswp__share-tooltip"></div>
  21925.          </div>
  21926.  
  21927.          <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
  21928.          <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
  21929.  
  21930.          <div class="pswp__caption">
  21931.            <div class="pswp__caption__center"></div>
  21932.          </div>
  21933.        </div>
  21934.      </div>
  21935.      <div class="product-zoom--thumbnails" data-photoswipe-thumbs>
  21936.        <button
  21937.          class="gallery-navigation--scroll-button scroll-left"
  21938.          aria-label="Scroll thumbnails left"
  21939.          data-gallery-scroll-button
  21940.        >
  21941.          <svg
  21942.  aria-hidden="true"
  21943.  focusable="false"
  21944.  role="presentation"
  21945.  width="14"
  21946.  height="8"
  21947.  viewBox="0 0 14 8"
  21948.  fill="none"
  21949.  xmlns="http://www.w3.org/2000/svg"
  21950. >
  21951.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21952.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21953. </svg>
  21954.  
  21955.        </button>
  21956.        <button
  21957.          class="gallery-navigation--scroll-button scroll-right"
  21958.          aria-label="Scroll thumbnails right"
  21959.          data-gallery-scroll-button
  21960.        >
  21961.          <svg
  21962.  aria-hidden="true"
  21963.  focusable="false"
  21964.  role="presentation"
  21965.  width="14"
  21966.  height="8"
  21967.  viewBox="0 0 14 8"
  21968.  fill="none"
  21969.  xmlns="http://www.w3.org/2000/svg"
  21970. >
  21971.  <path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21972.  <path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
  21973. </svg>
  21974.  
  21975.        </button>
  21976.        <div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
  21977.      </div>
  21978.    </div>
  21979.    
  21980.  
  21981.    
  21982.    
  21983.    
  21984.    
  21985.    
  21986.  
  21987.    
  21988.  
  21989.    
  21990.  
  21991.      <script>
  21992.        (
  21993.          function () {
  21994.            var classes = {
  21995.              block: 'pxu-lia-block',
  21996.              element: 'pxu-lia-element',
  21997.            };
  21998.  
  21999.            document
  22000.              .querySelectorAll('[type="application/pxs-animation-mapping+json"]')
  22001.              .forEach(function (mappingEl) {
  22002.                const section = mappingEl.parentNode;
  22003.                try {
  22004.                  const mapping = JSON.parse(mappingEl.innerHTML);
  22005.                  mapping.elements.forEach(function (elementSelector) {
  22006.                    section
  22007.                      .querySelectorAll(elementSelector)
  22008.                      .forEach(function (element) { element.classList.add(classes.element); });
  22009.                  });
  22010.  
  22011.                  mapping.blocks.forEach(function (blockSelector) {
  22012.                    section
  22013.                      .querySelectorAll(blockSelector)
  22014.                      .forEach(function (block) { block.classList.add(classes.block); });
  22015.                  });
  22016.                } catch (error) {
  22017.                  console.warn('Unable to parse animation mapping', mappingEl, error);
  22018.                }
  22019.            });
  22020.          }
  22021.        )()
  22022.      </script>
  22023.    
  22024.  
  22025.    <script
  22026.      src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=101264981332624388091749821448"
  22027.      data-scripts
  22028.      data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/storefront/assets/themes_support/api.jquery-7ab1a3a4.js"
  22029.      data-shopify-countries="/services/javascripts/countries.js"
  22030.      data-shopify-common="//laptopparts.ca/cdn/shopifycloud/storefront/assets/themes_support/shopify_common-5f594365.js"
  22031.      data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?128410"
  22032.      data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
  22033.    ></script>
  22034.  
  22035.    
  22036.  
  22037.  
  22038.  
  22039.  
  22040.  
  22041.  
  22042.  
  22043.  
  22044.  
  22045.  
  22046.  
  22047.  
  22048.  
  22049.  
  22050. <script type="application/ld+json">
  22051.  {
  22052.    "@context": "http://schema.org",
  22053.    "@type": "WebSite",
  22054.    "name": "LaptopParts.ca",
  22055.    "url": "https://laptopparts.ca"
  22056.  }
  22057. </script>
  22058.  
  22059.  
  22060.    <script>
  22061.      (function () {
  22062.        function handleFirstTab(e) {
  22063.          if (e.keyCode === 9) { // the "I am a keyboard user" key
  22064.            document.body.classList.add('user-is-tabbing');
  22065.            window.removeEventListener('keydown', handleFirstTab);
  22066.          }
  22067.        }
  22068.        window.addEventListener('keydown', handleFirstTab);
  22069.      })();
  22070.    </script>
  22071.  
  22072.    
  22073.      <link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
  22074.    
  22075.  
  22076.    <script
  22077.      src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
  22078.      type="module"
  22079.      defer
  22080.    ></script>
  22081.    <script
  22082.      src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
  22083.      defer
  22084.    ></script>
  22085. <!-- eDesk Shopify widget 9hs3kbe90 --><script>(window._xsq||(function(x,s){window._xsq=[];var d=function(){var c,b,a=document.createElement("iframe");a.src="javascript:false";a.title="";a.role="presentation";(a.frameElement||a).style.cssText="display: none";document.body.appendChild(a);try{b=a.contentWindow.document}catch(g){c=document.domain,a.src="javascript:var d=document.open();d.domain='"+c+"';void(0);",b=a.contentWindow.document}b.open()._l=function(){var a=this.createElement("script");c&&(this.domain=c);a.id="js-iframe-async";a.src="https://"+x+s;this.body.appendChild(a)};b.write('<body onload="document._l();">');b.close()};window.addEventListener?window.addEventListener("load",d,!1):window.attachEvent?window.attachEvent("onload",d):setTimeout(d,2E3);return _xsq})('widgets.xsellco.com','/js/widgets.js')).push(['load','9hs3kbe90',document.scripts[document.scripts.length - 1]]);</script><!-- End eDesk Shopify widget 9hs3kbe90 -->
  22086.     <!-- Shopper Approved - layout/theme.liquid -->  
  22087.    <style>
  22088.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
  22089.        vertical-align: -1px;
  22090.      }
  22091.      #SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
  22092.        vertical-align: -1px;
  22093.      }
  22094.      .star_container{
  22095.        height: 24px;
  22096.        margin-bottom: 5px;
  22097.      }
  22098.      .star_container .ind_cnt {
  22099.            display: inline;
  22100.            padding-left: 8px;
  22101.            font-size: 13px;
  22102.            vertical-align: 3px;
  22103.            text-align: center;
  22104.            width: 100%;
  22105.        }
  22106.      #product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
  22107.        display: inline !important;
  22108.    }
  22109.    #product_just_stars .SA__review_widget_item .SA__total_reviews a{
  22110.        font-size: 13px !important;
  22111.        vertical-align: 0px !important;
  22112.        /*border-right: 1px solid #000;
  22113.  padding-right: 10px;
  22114.  margin-right: 10px;*/
  22115.  text-decoration: underline;
  22116.    }
  22117.    </style>
  22118.    <script type="text/javascript"> function saLoadScript(src) { var js = window.document.createElement('script'); js.src = src; js.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(js); } saLoadScript("https://www.shopperapproved.com/widgets/group2.0/40623.js"); </script>
  22119.    <!-- END Shopper Approved - layout/theme.liquid -->
  22120.      <script type="text/javascript">!function(e,t,n){function a(){var e=t.getElementsByTagName("script")[0],n=t.createElement("script");n.type="text/javascript",n.async=!0,n.src="https://beacon-v2.helpscout.net",e.parentNode.insertBefore(n,e)}if(e.Beacon=n=function(t,n,a){e.Beacon.readyQueue.push({method:t,options:n,data:a})},n.readyQueue=[],"complete"===t.readyState)return a();e.attachEvent?e.attachEvent("onload",a):e.addEventListener("load",a,!1)}(window,document,window.Beacon||function(){});</script>
  22121. <script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
  22122.        <div id="shopify-block-AcThYNTRkUW1SdzMyZ__6610233760104865948" class="shopify-block shopify-app-block"><script>
  22123.  window.pushowlSubdomain = "laptoppartsatp.myshopify.com".split(".")[0]
  22124.  window.isPushowlThemeAppExtentionEnabled = true
  22125.  window.pushowlGUID = "45de1d5a-dcda-4cf8-b91d-1f14c258d2df"
  22126.  window.pushowlEnvironment = "production"
  22127. </script>
  22128.  
  22129.  
  22130.  
  22131.  
  22132. </div><div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
  22133.  
  22134. <input class="OrichiAppEmbed" type="hidden">
  22135. <input
  22136.  class="OrichiCustomerTags"
  22137.  type="hidden"
  22138.  value="" />
  22139. <input
  22140.  class="OrichiCustomerEmail"
  22141.  type="hidden"
  22142.  value="" />
  22143.  
  22144.  
  22145.  
  22146.  
  22147.  
  22148. <script>
  22149.  var orichiDiscount = {
  22150.    productJSPath:
  22151.      'https://cdn.shopify.com/extensions/7a62b6cc-ff28-4e0d-9b08-8c9fc3b8985b/oc-quantity-breaks-limit-695/assets/productpage.min.js'
  22152.    ,
  22153.    cartJSPath:
  22154.      'https://cdn.shopify.com/extensions/7a62b6cc-ff28-4e0d-9b08-8c9fc3b8985b/oc-quantity-breaks-limit-695/assets/cartajax.min.js'
  22155.    ,
  22156.    currencyFormat: "${{amount}}",
  22157.  }
  22158. </script>
  22159.  
  22160.  
  22161.  
  22162.  
  22163.  <script async src="https://cdn.shopify.com/extensions/7a62b6cc-ff28-4e0d-9b08-8c9fc3b8985b/oc-quantity-breaks-limit-695/assets/front.min.js"></script>
  22164.  
  22165.  
  22166. <script>
  22167.  
  22168.    window.orichiDiscountSettingData = {"setting":{"Id":18599,"ShopId":18333,"Active":true,"ShowDescription":true,"ShowDiscountedPrice":false,"ShowDiscountProductPage":true,"LayoutInProductPage":4,"ShowColumnTotal":true,"TextDiscount":"Discount","TextDiscountPrice":"Discount Price","TextQuantityBreaks":"🔥 Buy more, save more! 🔥","TextTotalAmount":"Total Amount","WidthLayout":0.0,"TextQuantity":"Quantity","CustomCssProductPage":".orichiCampaignCustom table{border-collapse: collapse !important;}\n.orichiCampaignCustom  td{padding: .3rem .5rem !important;}\n.orichi-Rule table{width: 50% !important;}","TextPlus":"+","CustomJsProductPage":null,"TextBuy":"Buy","UseAjaxCart":true,"ShowNotiOnCart":true,"UseDiscountCodeOnCart":false,"TextNotiOnCart":"Buy {Quantity} + discount {PercentOrPrice}","DisCountCodePrefix":null,"UseUpdateOnCartPage":false,"CustomCssCart":null,"CustomJsCart":null,"TextEach":"/each","TableFontSizeHeading":"15","TablePadding":"10","TableBorderSize":"1","PlanNumber":1,"StartFreeTrial":1,"TextPrice":"Price","HideBanner":null,"IsEnableAppEmbed":true,"IsClosePopupEnableAppEmbed":false,"StartFreeTrialAdvanced":1,"LimitOrderValueStatus":false,"MinTotalOrderValue":0,"MaxTotalOrderValue":0,"LimitOrderQuantityStatus":false,"MinTotalQuantityValue":0,"MaxTotalQuantityValue":0,"PopupLimitOrderIsNotValid":"Order is not valid","LimitOrderTextButtonOk":"OK","LimitOrderBackgroundColorButtonOk":"#000000","LimitOrderTextColorButtonOk":"#FFFFFF","TextMaxSubTotalValue":"You can only choose maximum of {maximum} for the subtotal value","TextMinSubTotalValue":"You have to choose minimum of {minimum} for the subtotal value","TextMaxProductInTotal":"You can only choose maximum of {maximum} products in total","TextMinProductInTotal":"You have to choose minimum of {minimum} products in total","PopupLitmitOrderTextColor":"#000000","CheckoutLimitOrderIsNotValid":"Order is not valid","LimitOrderBackgroundColorButtonCheckout":"#000000","LimitOrderTextColorButtonCheckout":"#FFFFFF","Currency":"CAD","IsClosedStore":false,"TextMinCollection":"You have to choose minimum of {minimum} for the {collection_name}","TextMaxCollection":"You can only choose maximum of {maximum} for the {collection_name}","TextMaxCollectionTotalPurchased":"You have already bought {total_purchased} of {collection_name} before. You can only buy maximum of {maximum} for the {collection_name}.","ShowLimitTableOnCartPage":false,"ShowDiscountTag":false,"TypeOfTag":0,"TagPosition":0,"TagMessage":"{PercentOrPrice} off","TagSize":"50","TagFontSize":"11","TagBorderSize":"1","TagCornerRadius":"4","TagTextColor":"#000000","TagBackgroundColor":"#F7CA00","TagBorderColor":"#000000","UpSellOnCartColor":"#FF0000","UpSellOnCartBackground":"#FFFFFF","PlanType":1,"ThemeCustomDiscountId":0,"ClassThemeTableDiscount":null,"LastVoteIsClosedDate":"2024-04-11T03:11:38.027","TextPerTotal":"/total","TextLimitPurchaseSeparately":"You can not buy different products from collection {collection_name} at the same time","ShopName":"Jacques Trottier Sr.","ApplyShopifyDiscountCode":0,"LimitCollectionTextSpecificQuantity":"You have to choose {specific_quantity} products of {collection_name}","LimitTypeOrder":0,"SpecificQuantityAllowToChooseOrder":null,"TextSpecificQuantity":"You have to choose {specific_quantity} products in total","IsUninstalled":null,"PricePlan":null,"TextDiscountRange":"From {min_price} to {original_price}","TextColorDiscountRange":null,"StartFreeTrialStarter":0,"UseDiscountCodeOnCheckoutPage":null},"setting2":{"Id":18599,"ShopId":18333,"CheckLimitProPage":true,"CheckLimitCartPage":true,"TextPurchaseLimit":"Purchase limit","TextMinimum":"Minimum","TextMaximum":"Maximum","TextQuantity":"Quantity","TextMinimumLimitText":"You have to choose minimum of {minimum} products","TextMaximumLimitText":"You can only choose maximum of {maximum} products","TextQuantityMaximumLimitText":"You already have {quantity} of this product in your cart. You can only choose maximum of {maximum} products in total. ","UseSettingsForTheme":null,"CartWrapper":null,"CheckoutButton":null,"CartSubtotal":null,"AddToCartFrom":null,"AjaxCart":null,"AjaxCartSubtotal":null,"FormAddToCartSelector":null,"TextOop":"Oops!","TextMinMaxRequired":"{min} or {max} {product_title}","TextPleaseFix":"Please fix these cart errors before checking out","TextDismiss":"Dismiss","TextUpdateCart":"Update Cart","TextBundling":"Bundling","AutoUpSale":false,"TextUpSale":"Buy {quantitymore} more and get {priceorpercent} off","CustomCssAlert":null,"CustomJsAlert":null,"FontSizeDiscountTitle":"16","TextColorDiscountTitle":"#000000","TextColorHeading":"#000000","BackgroundColorHeading":"#F7CA00","CardTheme":0,"FontSizeItemInTable":"14","TextColorItemInTable":"#000000","BackgroundColorItemInTable":"#FFFFFF","TextGet":"get","TextOff":"off","FontSizeCard":"14","TextColorCard":"#000000","BackgroundColorCard":"#F7CA00","TextMinimumProductTitle":"You have to choose minimum of {minimum} {product_title}","TextMaximumProductTitle":"You can only choose maximum of {maximum} {product_title}","TextMinimumCartQuantity":"This discount is applied to the total quantity of products in your cart","TextMinimumSameProductQuantity":"This discount is applied to the total quantity of this product in your cart","TextMinimumSameProductVariantQuantity":"This discount is applied to the total quantity of the same variant of this product in your cart","TextApply":"Apply","TextBaseOn":"Base on","TextDiscountCode":"Discount code","TextDiscountCodeNotAvailable":"Discount code isn’t available","FontSizeTitlePurchaseLimit":"16","TextColorTitlePurchaseLimit":"#000000","FontSizeLimitTable":"14","TextColorLimitTable":"#000000","BackgroundColorLimitTable":"#F7CA00","ShowDiscountedPriceEachCard":false,"TextDiscountedPriceEachCard":"Total: {total_amount} ({price_per_item}/each)","LimitUsageTextMaximumProductsInTotal":"You have already bought {total_purchased} of this product. You can only buy maximum of {maximum} products in total.","LimitUsageTextMaximumProductTitle":"You have already bought {total_purchased} {product_title}. You can only buy maximum of {maximum} {product_title}.","ShowLimitTableOnCartPage":true,"LimitProductTextMultipleProducts":"You have to choose {multiple} products","LimitProductTextMultipleProductTitle":"You have to choose {multiple} {product_title}","DiscountCodeApply":null,"LimitProductTextSpecificQuantity":"You have to choose {specific_quantity} products","LimitProductTextAlertSpecificQuantity":"You have to choose {specific_quantity} {product_title}","CodeLanguage":null},"parameters":[{"Id":1201,"ShopId":18333,"Type":"Pro-DT-M-Selector","Value":".short-description","CreatedDate":"2023-06-15T15:28:36.26","ModifiedDate":"2023-06-15T18:05:20.44"},{"Id":3255,"ShopId":18333,"Type":"Pro-SetVar-FormCart","Value":".product--outer","CreatedDate":"2024-04-11T11:20:43.043","ModifiedDate":"2024-04-11T11:20:43.043"}],"discountTag":{"Id":5429,"ShopId":18333,"ShowDiscountTag":false,"TypeOfTag":1,"TagPosition":0,"TagMessage":"{PercentOrPrice} off","TagSize":"50","TagFontSize":"11","TagBorderSize":"1","TagCornerRadius":"4","TagTextColor":"#000000","TagBackgroundColor":"#F7CA00","TagBorderColor":"#000000","CreatedDate":"2023-06-13T15:10:23.367","LastModifiedDate":"2024-04-12T02:43:29.347"}};
  22169.  
  22170. </script>
  22171.  
  22172. </div><div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
  22173.  
  22174.  
  22175.  
  22176.  
  22177. <link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/df6ecdef-e07e-444e-af79-9414fd74f225/upcart-cart-drawer-177/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  22178.  
  22179.  
  22180.  
  22181.  <script defer type="text/javascript" src="https://cdn.shopify.com/extensions/df6ecdef-e07e-444e-af79-9414fd74f225/upcart-cart-drawer-177/assets/upcart-bundle.js"></script>
  22182.  
  22183.  
  22184. <script>
  22185.  
  22186.  function b64DecodeUnicode(str) {
  22187.    try {
  22188.        return decodeURIComponent(
  22189.        atob(str)
  22190.            .split('')
  22191.            .map(function (c) {
  22192.            return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
  22193.            })
  22194.            .join(''),
  22195.        );
  22196.    } catch {
  22197.        return str;
  22198.    }
  22199.  }
  22200. </script>
  22201.  
  22202.  
  22203. <script>
  22204. (function() {
  22205.    window.upcartSettings = {};
  22206.    window.upcartSettings.upcartSettings = {};
  22207.    window.upcartSettings.upcartEditorSettings = {};
  22208.    window.upcartSettings.stickyCartButtonEditorSettings = {};
  22209.  
  22210.    
  22211.    
  22212.    
  22213.  
  22214.    let val;
  22215.  
  22216.    val = b64DecodeUnicode("cmlnaHQ=");
  22217.    if (val === '') {
  22218.        val = b64DecodeUnicode("cmlnaHQ=");
  22219.    }
  22220.    window.upcartSettings.upcartSettings.cartPosition = val;
  22221.  
  22222.    val = b64DecodeUnicode("ZmFsc2U=");
  22223.    if (val === '') {
  22224.        val = b64DecodeUnicode("ZmFsc2U=");
  22225.    }
  22226.    val = JSON.parse(val);
  22227.    window.upcartSettings.upcartSettings.disableSticky = val;
  22228.  
  22229.    val = b64DecodeUnicode("dHJ1ZQ==");
  22230.    if (val === '') {
  22231.        val = b64DecodeUnicode("dHJ1ZQ==");
  22232.    }
  22233.    val = JSON.parse(val);
  22234.    window.upcartSettings.upcartSettings.openOnAddToCart = val;
  22235.  
  22236.    val = b64DecodeUnicode("ZmFsc2U=");
  22237.    if (val === '') {
  22238.        val = b64DecodeUnicode("ZmFsc2U=");
  22239.    }
  22240.    val = JSON.parse(val);
  22241.    window.upcartSettings.upcartSettings.redirectToCart = val;
  22242.  
  22243.    val = b64DecodeUnicode("dHJ1ZQ==");
  22244.    if (val === '') {
  22245.        val = b64DecodeUnicode("ZmFsc2U=");
  22246.    }
  22247.    val = JSON.parse(val);
  22248.    window.upcartSettings.upcartSettings.enableCartSkeletons = val;
  22249.  
  22250.    val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
  22251.    if (val === '') {
  22252.        val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
  22253.    }
  22254.    val = JSON.parse(val);
  22255.    window.upcartSettings.upcartSettings.translations = val;
  22256.  
  22257.    val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22258.    if (val === '') {
  22259.        val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
  22260.    }
  22261.    val = JSON.parse(val);
  22262.    window.upcartSettings.upcartSettings.htmlFields = val;
  22263.  
  22264.    val = b64DecodeUnicode("dHJ1ZQ==");
  22265.    if (val === '') {
  22266.        val = b64DecodeUnicode("dHJ1ZQ==");
  22267.    }
  22268.    val = JSON.parse(val);
  22269.    window.upcartSettings.upcartSettings.automaticDiscount = val;
  22270.  
  22271.    val = b64DecodeUnicode("ZmFsc2U=");
  22272.    if (val === '') {
  22273.        val = b64DecodeUnicode("ZmFsc2U=");
  22274.    }
  22275.    val = JSON.parse(val);
  22276.    window.upcartSettings.upcartSettings.basePriceForDiscount = val;
  22277.  
  22278.    val = b64DecodeUnicode("dHJ1ZQ==");
  22279.    if (val === '') {
  22280.        val = b64DecodeUnicode("ZmFsc2U=");
  22281.    }
  22282.    val = JSON.parse(val);
  22283.    window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
  22284.  
  22285.    val = b64DecodeUnicode("ZmFsc2U=");
  22286.    if (val === '') {
  22287.        val = b64DecodeUnicode("ZmFsc2U=");
  22288.    }
  22289.    val = JSON.parse(val);
  22290.    window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
  22291.  
  22292.    val = b64DecodeUnicode("ZmFsc2U=");
  22293.    if (val === '') {
  22294.        val = b64DecodeUnicode("ZmFsc2U=");
  22295.    }
  22296.    val = JSON.parse(val);
  22297.    window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
  22298.  
  22299.    val = b64DecodeUnicode("ZmFsc2U=");
  22300.    if (val === '') {
  22301.        val = b64DecodeUnicode("ZmFsc2U=");
  22302.    }
  22303.    val = JSON.parse(val);
  22304.    window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
  22305.  
  22306.    val = b64DecodeUnicode("ZmFsc2U=");
  22307.    if (val === '') {
  22308.        val = b64DecodeUnicode("ZmFsc2U=");
  22309.    }
  22310.    val = JSON.parse(val);
  22311.    window.upcartSettings.upcartSettings.skipGoogleFonts = val;
  22312.  
  22313.    val = b64DecodeUnicode("ZmFsc2U=");
  22314.    if (val === '') {
  22315.        val = b64DecodeUnicode("ZmFsc2U=");
  22316.    }
  22317.    val = JSON.parse(val);
  22318.    window.upcartSettings.upcartSettings.overrideScrollLocking = val;
  22319.  
  22320.    val = b64DecodeUnicode("MTAw");
  22321.    if (val === '') {
  22322.        val = b64DecodeUnicode("MTAw");
  22323.    }
  22324.    window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
  22325.  
  22326.    val = b64DecodeUnicode("dHJ1ZQ==");
  22327.    if (val === '') {
  22328.        val = b64DecodeUnicode("ZmFsc2U=");
  22329.    }
  22330.    val = JSON.parse(val);
  22331.    window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
  22332.  
  22333.    val = b64DecodeUnicode("dHJ1ZQ==");
  22334.    if (val === '') {
  22335.        val = b64DecodeUnicode("ZmFsc2U=");
  22336.    }
  22337.    val = JSON.parse(val);
  22338.    window.upcartSettings.upcartSettings.cartEventTracking = val;
  22339.  
  22340.    val = b64DecodeUnicode("");
  22341.    if (val === '') {
  22342.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22343.    }
  22344.    val = JSON.parse(val);
  22345.    window.upcartSettings.upcartSettings.openCartButtonSelection = val;
  22346.  
  22347.    val = b64DecodeUnicode("");
  22348.    if (val === '') {
  22349.        val = b64DecodeUnicode("eyJvcHRpb24iOiJkZWZhdWx0LXNlbGVjdG9yIiwiY3VzdG9tU2VsZWN0b3IiOiIifQ==");
  22350.    }
  22351.    val = JSON.parse(val);
  22352.    window.upcartSettings.upcartSettings.addToCartButtonSelection = val;
  22353.  
  22354.    val = b64DecodeUnicode("bGluZQ==");
  22355.    if (val === '') {
  22356.        val = b64DecodeUnicode("bGluZQ==");
  22357.    }
  22358.    window.upcartSettings.upcartSettings.updateItemIdentifier = val;
  22359.  
  22360.    val = b64DecodeUnicode("Knt9");
  22361.    if (val === '') {
  22362.        val = b64DecodeUnicode("Knt9");
  22363.    }
  22364.    window.upcartSettings.upcartSettings.customCSS = val;
  22365.  
  22366.    val = b64DecodeUnicode("Knt9");
  22367.    if (val === '') {
  22368.        val = b64DecodeUnicode("Knt9");
  22369.    }
  22370.    window.upcartSettings.upcartSettings.customStickyCartCSS = val;
  22371.  
  22372.    val = b64DecodeUnicode("ZmFsc2U=");
  22373.    if (val === '') {
  22374.        val = b64DecodeUnicode("ZmFsc2U=");
  22375.    }
  22376.    val = JSON.parse(val);
  22377.    window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
  22378.  
  22379.    val = b64DecodeUnicode("ZmFsc2U=");
  22380.    if (val === '') {
  22381.        val = b64DecodeUnicode("ZmFsc2U=");
  22382.    }
  22383.    val = JSON.parse(val);
  22384.    window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
  22385.  
  22386.    val = b64DecodeUnicode("");
  22387.    if (val === '') {
  22388.        val = b64DecodeUnicode("eyJzdGF0dXMiOiJESVNBQkxFRCJ9");
  22389.    }
  22390.    val = JSON.parse(val);
  22391.    window.upcartSettings.upcartSettings.customCartBundleInfo = val;
  22392.  
  22393.    val = b64DecodeUnicode("dHJ1ZQ==");
  22394.    if (val === '') {
  22395.        val = b64DecodeUnicode("dHJ1ZQ==");
  22396.    }
  22397.    val = JSON.parse(val);
  22398.    window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
  22399.  
  22400.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
  22401.    if (val === '') {
  22402.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
  22403.    }
  22404.    val = JSON.parse(val);
  22405.    window.upcartSettings.upcartEditorSettings.settingsModule = val;
  22406.  
  22407.    val = b64DecodeUnicode("");
  22408.    if (val === '') {
  22409.        val = b64DecodeUnicode("IzJlYTgxOA==");
  22410.    }
  22411.    window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
  22412.  
  22413.    val = b64DecodeUnicode("");
  22414.    if (val === '') {
  22415.        val = b64DecodeUnicode("MS4wLjA=");
  22416.    }
  22417.    window.upcartSettings.upcartEditorSettings.headerModuleVersion = val;
  22418.  
  22419.    val = b64DecodeUnicode("");
  22420.    if (val === '') {
  22421.        val = b64DecodeUnicode("MS4wLjA=");
  22422.    }
  22423.    window.upcartSettings.upcartEditorSettings.announcementModuleVersion = val;
  22424.  
  22425.    val = b64DecodeUnicode("");
  22426.    if (val === '') {
  22427.        val = b64DecodeUnicode("MS4wLjA=");
  22428.    }
  22429.    window.upcartSettings.upcartEditorSettings.upsellsModuleVersion = val;
  22430.  
  22431.    val = b64DecodeUnicode("");
  22432.    if (val === '') {
  22433.        val = b64DecodeUnicode("MS4wLjA=");
  22434.    }
  22435.    window.upcartSettings.upcartEditorSettings.recommendationsModuleVersion = val;
  22436.  
  22437.    val = b64DecodeUnicode("");
  22438.    if (val === '') {
  22439.        val = b64DecodeUnicode("MS4wLjA=");
  22440.    }
  22441.    window.upcartSettings.upcartEditorSettings.notesModuleVersion = val;
  22442.  
  22443.    val = b64DecodeUnicode("");
  22444.    if (val === '') {
  22445.        val = b64DecodeUnicode("MS4wLjA=");
  22446.    }
  22447.    window.upcartSettings.upcartEditorSettings.discountCodeModuleVersion = val;
  22448.  
  22449.    val = b64DecodeUnicode("");
  22450.    if (val === '') {
  22451.        val = b64DecodeUnicode("MS4wLjA=");
  22452.    }
  22453.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleVersion = val;
  22454.  
  22455.    val = b64DecodeUnicode("");
  22456.    if (val === '') {
  22457.        val = b64DecodeUnicode("MS4wLjA=");
  22458.    }
  22459.    window.upcartSettings.upcartEditorSettings.rewardsModuleVersion = val;
  22460.  
  22461.    val = b64DecodeUnicode("");
  22462.    if (val === '') {
  22463.        val = b64DecodeUnicode("MS4wLjA=");
  22464.    }
  22465.    window.upcartSettings.upcartEditorSettings.cartItemsModuleVersion = val;
  22466.  
  22467.    val = b64DecodeUnicode("");
  22468.    if (val === '') {
  22469.        val = b64DecodeUnicode("MS4wLjA=");
  22470.    }
  22471.    window.upcartSettings.upcartEditorSettings.addonsModuleVersion = val;
  22472.  
  22473.    val = b64DecodeUnicode("");
  22474.    if (val === '') {
  22475.        val = b64DecodeUnicode("MS4wLjA=");
  22476.    }
  22477.    window.upcartSettings.upcartEditorSettings.expressPayModuleVersion = val;
  22478.  
  22479.    val = b64DecodeUnicode("");
  22480.    if (val === '') {
  22481.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22482.    }
  22483.    val = JSON.parse(val);
  22484.    window.upcartSettings.upcartEditorSettings.headerModuleCustomJsxTemplates = val;
  22485.  
  22486.    val = b64DecodeUnicode("");
  22487.    if (val === '') {
  22488.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22489.    }
  22490.    val = JSON.parse(val);
  22491.    window.upcartSettings.upcartEditorSettings.announcementModuleCustomJsxTemplates = val;
  22492.  
  22493.    val = b64DecodeUnicode("");
  22494.    if (val === '') {
  22495.        val = b64DecodeUnicode("eyJ1cHNlbGxUaWxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22496.    }
  22497.    val = JSON.parse(val);
  22498.    window.upcartSettings.upcartEditorSettings.upsellsModuleCustomJsxTemplates = val;
  22499.  
  22500.    val = b64DecodeUnicode("");
  22501.    if (val === '') {
  22502.        val = b64DecodeUnicode("eyJyZWNvbW1lbmRhdGlvblRpbGUiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwic2tlbGV0b24iOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfX0=");
  22503.    }
  22504.    val = JSON.parse(val);
  22505.    window.upcartSettings.upcartEditorSettings.recommendationsModuleCustomJsxTemplates = val;
  22506.  
  22507.    val = b64DecodeUnicode("");
  22508.    if (val === '') {
  22509.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22510.    }
  22511.    val = JSON.parse(val);
  22512.    window.upcartSettings.upcartEditorSettings.notesModuleCustomJsxTemplates = val;
  22513.  
  22514.    val = b64DecodeUnicode("");
  22515.    if (val === '') {
  22516.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22517.    }
  22518.    val = JSON.parse(val);
  22519.    window.upcartSettings.upcartEditorSettings.discountModuleCustomJsxTemplates = val;
  22520.  
  22521.    val = b64DecodeUnicode("");
  22522.    if (val === '') {
  22523.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22524.    }
  22525.    val = JSON.parse(val);
  22526.    window.upcartSettings.upcartEditorSettings.trustBadgesModuleCustomJsxTemplates = val;
  22527.  
  22528.    val = b64DecodeUnicode("");
  22529.    if (val === '') {
  22530.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22531.    }
  22532.    val = JSON.parse(val);
  22533.    window.upcartSettings.upcartEditorSettings.rewardsModuleCustomJsxTemplates = val;
  22534.  
  22535.    val = b64DecodeUnicode("");
  22536.    if (val === '') {
  22537.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22538.    }
  22539.    val = JSON.parse(val);
  22540.    window.upcartSettings.upcartEditorSettings.triggeredRewardsModuleCustomJsxTemplates = val;
  22541.  
  22542.    val = b64DecodeUnicode("");
  22543.    if (val === '') {
  22544.        val = b64DecodeUnicode("eyJza2VsZXRvbiI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJwcm9kdWN0VGlsZSI6eyJzcmMiOm51bGwsImNvbXBpbGVkIjpudWxsLCJpc0FjdGl2ZSI6ZmFsc2V9LCJ2YXJpYW50Ijp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByb3BlcnRpZXMiOnsic3JjIjpudWxsLCJjb21waWxlZCI6bnVsbCwiaXNBY3RpdmUiOmZhbHNlfSwiYnVuZGxlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInByaWNlIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22545.    }
  22546.    val = JSON.parse(val);
  22547.    window.upcartSettings.upcartEditorSettings.cartItemsModuleCustomJsxTemplates = val;
  22548.  
  22549.    val = b64DecodeUnicode("");
  22550.    if (val === '') {
  22551.        val = b64DecodeUnicode("eyJtYWluIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX0sInNrZWxldG9uIjp7InNyYyI6bnVsbCwiY29tcGlsZWQiOm51bGwsImlzQWN0aXZlIjpmYWxzZX19");
  22552.    }
  22553.    val = JSON.parse(val);
  22554.    window.upcartSettings.upcartEditorSettings.addonsModuleCustomJsxTemplates = val;
  22555.  
  22556.    val = b64DecodeUnicode("");
  22557.    if (val === '') {
  22558.        val = b64DecodeUnicode("YmFzZQ==");
  22559.    }
  22560.    window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
  22561.  
  22562.    val = b64DecodeUnicode("");
  22563.    if (val === '') {
  22564.        val = b64DecodeUnicode("YmFzZQ==");
  22565.    }
  22566.    window.upcartSettings.upcartEditorSettings.headerHeight = val;
  22567.  
  22568.    val = b64DecodeUnicode("");
  22569.    if (val === '') {
  22570.        val = b64DecodeUnicode("I2ZmZmZmZjAw");
  22571.    }
  22572.    window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
  22573.  
  22574.    val = b64DecodeUnicode("");
  22575.    if (val === '') {
  22576.        val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
  22577.    }
  22578.    val = JSON.parse(val);
  22579.    window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
  22580.  
  22581.    val = b64DecodeUnicode("");
  22582.    if (val === '') {
  22583.        val = b64DecodeUnicode("c2lkZQ==");
  22584.    }
  22585.    window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
  22586.  
  22587.    val = b64DecodeUnicode("");
  22588.    if (val === '') {
  22589.        val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
  22590.    }
  22591.    window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
  22592.  
  22593.    val = b64DecodeUnicode("");
  22594.    if (val === '') {
  22595.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
  22596.    }
  22597.    val = JSON.parse(val);
  22598.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
  22599.  
  22600.    val = b64DecodeUnicode("");
  22601.    if (val === '') {
  22602.        val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
  22603.    }
  22604.    val = JSON.parse(val);
  22605.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
  22606.  
  22607.    val = b64DecodeUnicode("");
  22608.    if (val === '') {
  22609.        val = b64DecodeUnicode("c21hbGw=");
  22610.    }
  22611.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
  22612.  
  22613.    val = b64DecodeUnicode("");
  22614.    if (val === '') {
  22615.        val = b64DecodeUnicode("YmFzZQ==");
  22616.    }
  22617.    window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
  22618.  
  22619.    val = b64DecodeUnicode("");
  22620.    if (val === '') {
  22621.        val = b64DecodeUnicode("bm9uZQ==");
  22622.    }
  22623.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
  22624.  
  22625.    val = b64DecodeUnicode("");
  22626.    if (val === '') {
  22627.        val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
  22628.    }
  22629.    val = JSON.parse(val);
  22630.    window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
  22631.  
  22632.    val = b64DecodeUnicode("dHJ1ZQ==");
  22633.    if (val === '') {
  22634.        val = b64DecodeUnicode("ZmFsc2U=");
  22635.    }
  22636.    val = JSON.parse(val);
  22637.    window.upcartSettings.upcartEditorSettings.announcementModule = val;
  22638.  
  22639.    val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
  22640.    if (val === '') {
  22641.        val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
  22642.    }
  22643.    window.upcartSettings.upcartEditorSettings.announcementEditor = val;
  22644.  
  22645.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  22646.    if (val === '') {
  22647.        val = b64DecodeUnicode("I0NERTBFMA==");
  22648.    }
  22649.    window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
  22650.  
  22651.    val = b64DecodeUnicode("dG9w");
  22652.    if (val === '') {
  22653.        val = b64DecodeUnicode("dG9w");
  22654.    }
  22655.    window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
  22656.  
  22657.    val = b64DecodeUnicode("IzEwOWMxYw==");
  22658.    if (val === '') {
  22659.        val = b64DecodeUnicode("I0M1RTZGRA==");
  22660.    }
  22661.    window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
  22662.  
  22663.    val = b64DecodeUnicode("MA==");
  22664.    if (val === '') {
  22665.        val = b64DecodeUnicode("MDA6MDA=");
  22666.    }
  22667.    window.upcartSettings.upcartEditorSettings.announcementTimer = val;
  22668.  
  22669.    val = b64DecodeUnicode("");
  22670.    if (val === '') {
  22671.        val = b64DecodeUnicode("YmFzZQ==");
  22672.    }
  22673.    window.upcartSettings.upcartEditorSettings.announcementHeight = val;
  22674.  
  22675.    val = b64DecodeUnicode("");
  22676.    if (val === '') {
  22677.        val = b64DecodeUnicode("MTU=");
  22678.    }
  22679.    window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
  22680.  
  22681.    val = b64DecodeUnicode("ZmFsc2U=");
  22682.    if (val === '') {
  22683.        val = b64DecodeUnicode("ZmFsc2U=");
  22684.    }
  22685.    val = JSON.parse(val);
  22686.    window.upcartSettings.upcartEditorSettings.rewardsModule = val;
  22687.  
  22688.    val = b64DecodeUnicode("I0UyRTJFMg==");
  22689.    if (val === '') {
  22690.        val = b64DecodeUnicode("I0UyRTJFMg==");
  22691.    }
  22692.    window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
  22693.  
  22694.    val = b64DecodeUnicode("IzkzRDNGRg==");
  22695.    if (val === '') {
  22696.        val = b64DecodeUnicode("IzkzRDNGRg==");
  22697.    }
  22698.    window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
  22699.  
  22700.    val = b64DecodeUnicode("Y2FydFRvdGFs");
  22701.    if (val === '') {
  22702.        val = b64DecodeUnicode("Y2FydFRvdGFs");
  22703.    }
  22704.    window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
  22705.  
  22706.    val = b64DecodeUnicode("ZmFsc2U=");
  22707.    if (val === '') {
  22708.        val = b64DecodeUnicode("ZmFsc2U=");
  22709.    }
  22710.    val = JSON.parse(val);
  22711.    window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
  22712.  
  22713.    val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22714.    if (val === '') {
  22715.        val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
  22716.    }
  22717.    window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
  22718.  
  22719.    val = b64DecodeUnicode("MTI1");
  22720.    if (val === '') {
  22721.        val = b64DecodeUnicode("MTI1");
  22722.    }
  22723.    window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
  22724.  
  22725.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22726.    if (val === '') {
  22727.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
  22728.    }
  22729.    window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
  22730.  
  22731.    val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22732.    if (val === '') {
  22733.        val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
  22734.    }
  22735.    window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
  22736.  
  22737.    val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22738.    if (val === '') {
  22739.        val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
  22740.    }
  22741.    window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
  22742.  
  22743.    val = b64DecodeUnicode("NQ==");
  22744.    if (val === '') {
  22745.        val = b64DecodeUnicode("NQ==");
  22746.    }
  22747.    window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
  22748.  
  22749.    val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22750.    if (val === '') {
  22751.        val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
  22752.    }
  22753.    val = JSON.parse(val);
  22754.    window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
  22755.  
  22756.    val = b64DecodeUnicode("W10=");
  22757.    if (val === '') {
  22758.        val = b64DecodeUnicode("W10=");
  22759.    }
  22760.    val = JSON.parse(val);
  22761.    window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
  22762.  
  22763.    val = b64DecodeUnicode("ZmFsc2U=");
  22764.    if (val === '') {
  22765.        val = b64DecodeUnicode("ZmFsc2U=");
  22766.    }
  22767.    val = JSON.parse(val);
  22768.    window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
  22769.  
  22770.    val = b64DecodeUnicode("dHJ1ZQ==");
  22771.    if (val === '') {
  22772.        val = b64DecodeUnicode("ZmFsc2U=");
  22773.    }
  22774.    val = JSON.parse(val);
  22775.    window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
  22776.  
  22777.    val = b64DecodeUnicode("");
  22778.    if (val === '') {
  22779.        val = b64DecodeUnicode("ZmFsc2U=");
  22780.    }
  22781.    val = JSON.parse(val);
  22782.    window.upcartSettings.upcartEditorSettings.rewardsRemovePreviousProducts = val;
  22783.  
  22784.    val = b64DecodeUnicode("");
  22785.    if (val === '') {
  22786.        val = b64DecodeUnicode("W10=");
  22787.    }
  22788.    val = JSON.parse(val);
  22789.    window.upcartSettings.upcartEditorSettings.rewardsFiltering = val;
  22790.  
  22791.    val = b64DecodeUnicode("");
  22792.    if (val === '') {
  22793.        val = b64DecodeUnicode("W10=");
  22794.    }
  22795.    val = JSON.parse(val);
  22796.    window.upcartSettings.upcartEditorSettings.rewardsTriggeredRules = val;
  22797.  
  22798.    val = b64DecodeUnicode("");
  22799.    if (val === '') {
  22800.        val = b64DecodeUnicode("ZmFsc2U=");
  22801.    }
  22802.    val = JSON.parse(val);
  22803.    window.upcartSettings.upcartEditorSettings.triggeredRewardsModule = val;
  22804.  
  22805.    val = b64DecodeUnicode("ZmFsc2U=");
  22806.    if (val === '') {
  22807.        val = b64DecodeUnicode("ZmFsc2U=");
  22808.    }
  22809.    val = JSON.parse(val);
  22810.    window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
  22811.  
  22812.    val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22813.    if (val === '') {
  22814.        val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
  22815.    }
  22816.    window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
  22817.  
  22818.    val = b64DecodeUnicode("ZmFsc2U=");
  22819.    if (val === '') {
  22820.        val = b64DecodeUnicode("ZmFsc2U=");
  22821.    }
  22822.    val = JSON.parse(val);
  22823.    window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
  22824.  
  22825.    val = b64DecodeUnicode("U2hvcCBOb3c=");
  22826.    if (val === '') {
  22827.        val = b64DecodeUnicode("U2hvcCBOb3c=");
  22828.    }
  22829.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
  22830.  
  22831.    val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22832.    if (val === '') {
  22833.        val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
  22834.    }
  22835.    window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
  22836.  
  22837.    val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22838.    if (val === '') {
  22839.        val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
  22840.    }
  22841.    val = JSON.parse(val);
  22842.    window.upcartSettings.upcartEditorSettings.recommendationItems = val;
  22843.  
  22844.    val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22845.    if (val === '') {
  22846.        val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
  22847.    }
  22848.    window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
  22849.  
  22850.    val = b64DecodeUnicode("Mw==");
  22851.    if (val === '') {
  22852.        val = b64DecodeUnicode("Mw==");
  22853.    }
  22854.    window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
  22855.  
  22856.    val = b64DecodeUnicode("dmVydGljYWw=");
  22857.    if (val === '') {
  22858.        val = b64DecodeUnicode("dmVydGljYWw=");
  22859.    }
  22860.    window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
  22861.  
  22862.    val = b64DecodeUnicode("dHJ1ZQ==");
  22863.    if (val === '') {
  22864.        val = b64DecodeUnicode("ZmFsc2U=");
  22865.    }
  22866.    val = JSON.parse(val);
  22867.    window.upcartSettings.upcartEditorSettings.upsellsModule = val;
  22868.  
  22869.    val = b64DecodeUnicode("dmVydGljYWw=");
  22870.    if (val === '') {
  22871.        val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
  22872.    }
  22873.    window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
  22874.  
  22875.    val = b64DecodeUnicode("PHA+PC9wPgo=");
  22876.    if (val === '') {
  22877.        val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
  22878.    }
  22879.    window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
  22880.  
  22881.    val = b64DecodeUnicode("Mw==");
  22882.    if (val === '') {
  22883.        val = b64DecodeUnicode("MTA=");
  22884.    }
  22885.    window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
  22886.  
  22887.    val = b64DecodeUnicode("dHJ1ZQ==");
  22888.    if (val === '') {
  22889.        val = b64DecodeUnicode("ZmFsc2U=");
  22890.    }
  22891.    val = JSON.parse(val);
  22892.    window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
  22893.  
  22894.    val = b64DecodeUnicode("ZmFsc2U=");
  22895.    if (val === '') {
  22896.        val = b64DecodeUnicode("ZmFsc2U=");
  22897.    }
  22898.    val = JSON.parse(val);
  22899.    window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
  22900.  
  22901.    val = b64DecodeUnicode("ZmFsc2U=");
  22902.    if (val === '') {
  22903.        val = b64DecodeUnicode("ZmFsc2U=");
  22904.    }
  22905.    val = JSON.parse(val);
  22906.    window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
  22907.  
  22908.    val = b64DecodeUnicode("W3siaWQiOiI1MjM2MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczODc4NDc3ODY1ODMiLCJzaG9ydElkIjoiNzM4Nzg0Nzc4NjU4MyIsInZhcmlhbnRzIjpbIjQxNjE0OTYwODg1ODQ3Il0sImhhbmRsZSI6IjEtMTAtMTAwcGNzLXVzYi0yLTAtMmdiLTRnYi04Z2ItMTZnYi0zMmdiLTY0Z2ItMTI4Z2ItdXNiLWZsYXNoLWRyaXZlcy1sb3QiLCJ0aXRsZSI6Ik5ldyAxMjhHQiBVU0IgRmxhc2ggRHJpdmVzIFVTQiAyLjAgQmxhY2sgYW5kIFNpbHZlciAtIExJUVVJREFUSU9OIFNBTEUiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvZmlsZXMvcy1sMTAwMF8yODUxNWNhZC1lMjNlLTRjNWItOGU4YS05OTUxNjY3ZDVjZDgud2VicD92PTE3NDIzMjMyNjYifV19fSx7ImlkIjoiMzQzODMiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC82NTcwNjIxNTk5ODMxIiwic2hvcnRJZCI6IjY1NzA2MjE1OTk4MzEiLCJ2YXJpYW50cyI6WyIzOTMzMzgxODI2OTc4MyJdLCJoYW5kbGUiOiIzbS1zdGlja2VyLWRvdWJsZS1zaWRlZC10YXBlLWFkaGVzaXZlLWZvci1jZWxsLXBob25lLWNvbXB1dGVyLXJlcGFpciIsInRpdGxlIjoiTmV3IEJsYWNrIDNNIFN0aWNrZXIgRG91YmxlIFNpZGVkIFRhcGUgQWRoZXNpdmUgRm9yIENlbGwgUGhvbmUgJiBDb21wdXRlciBSZXBhaXJzIiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL3Byb2R1Y3RzL3RhcGUyLmpwZz92PTE3Mjg5MjMwNzAifV19fSx7ImlkIjoiNTcwOTQiLCJ2IjoyLCJ0cmlnZ2VyIjp7Im9uIjoiYWxsIn0sInVwc2VsbCI6eyJ0eXBlIjoiUHJvZHVjdCIsInByb2R1Y3RzIjpbeyJpZCI6ImdpZDovL3Nob3BpZnkvUHJvZHVjdC83MzIzODg0MDI3OTkxIiwic2hvcnRJZCI6IjczMjM4ODQwMjc5OTEiLCJ2YXJpYW50cyI6WyI0MTM2MDU4MjkzNDYxNSJdLCJoYW5kbGUiOiIxMTUtaW4tMS1tYWduZXRpYy1wcmVjaXNpb24tc2NyZXdkcml2ZXItc2V0LXBjLXBob25lLWVsZWN0cm9uaWNzLXJlcGFpci10b29sLWtpdCIsInRpdGxlIjoiTmV3IExhcHRvcCBSZXBhaXIgVG9vbCBraXQgMTE1IGluIDEgTWFnbmV0aWMgUHJlY2lzaW9uIFNjcmV3ZHJpdmVyIFNldCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9zLWwxMDAwXzUxNmUwMjY0LWRjZjMtNDU3Zi1iNTJiLWI4MDc2ZjE0MDBiMi53ZWJwP3Y9MTczMTQyMDU0OCJ9XX19XQ==");
  22909.    if (val === '') {
  22910.        val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
  22911.    }
  22912.    val = JSON.parse(val);
  22913.    window.upcartSettings.upcartEditorSettings.upsellsItems = val;
  22914.  
  22915.    val = b64DecodeUnicode("Ym90dG9t");
  22916.    if (val === '') {
  22917.        val = b64DecodeUnicode("Ym90dG9t");
  22918.    }
  22919.    window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
  22920.  
  22921.    val = b64DecodeUnicode("ZmFsc2U=");
  22922.    if (val === '') {
  22923.        val = b64DecodeUnicode("ZmFsc2U=");
  22924.    }
  22925.    val = JSON.parse(val);
  22926.    window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
  22927.  
  22928.    val = b64DecodeUnicode("ZmFsc2U=");
  22929.    if (val === '') {
  22930.        val = b64DecodeUnicode("ZmFsc2U=");
  22931.    }
  22932.    val = JSON.parse(val);
  22933.    window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
  22934.  
  22935.    val = b64DecodeUnicode("cmVsYXRlZA==");
  22936.    if (val === '') {
  22937.        val = b64DecodeUnicode("cmVsYXRlZA==");
  22938.    }
  22939.    window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
  22940.  
  22941.    val = b64DecodeUnicode("");
  22942.    if (val === '') {
  22943.        val = b64DecodeUnicode("bm8tcHJvZHVjdHM=");
  22944.    }
  22945.    window.upcartSettings.upcartEditorSettings.upsellProductReviews = val;
  22946.  
  22947.    val = b64DecodeUnicode("");
  22948.    if (val === '') {
  22949.        val = b64DecodeUnicode("KHt7UkVWSUVXX0NPVU5UfX0gcmV2aWV3cyk=");
  22950.    }
  22951.    window.upcartSettings.upcartEditorSettings.upsellProductReviewsTextTemplate = val;
  22952.  
  22953.    val = b64DecodeUnicode("dHJ1ZQ==");
  22954.    if (val === '') {
  22955.        val = b64DecodeUnicode("ZmFsc2U=");
  22956.    }
  22957.    val = JSON.parse(val);
  22958.    window.upcartSettings.upcartEditorSettings.addonsModule = val;
  22959.  
  22960.    val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjYuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo3Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
  22961.    if (val === '') {
  22962.        val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGx9fQ==");
  22963.    }
  22964.    val = JSON.parse(val);
  22965.    window.upcartSettings.upcartEditorSettings.addonsField = val;
  22966.  
  22967.    val = b64DecodeUnicode("dHJ1ZQ==");
  22968.    if (val === '') {
  22969.        val = b64DecodeUnicode("ZmFsc2U=");
  22970.    }
  22971.    val = JSON.parse(val);
  22972.    window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
  22973.  
  22974.    val = b64DecodeUnicode("dHJ1ZQ==");
  22975.    if (val === '') {
  22976.        val = b64DecodeUnicode("ZmFsc2U=");
  22977.    }
  22978.    val = JSON.parse(val);
  22979.    window.upcartSettings.upcartEditorSettings.notesModule = val;
  22980.  
  22981.    val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
  22982.    if (val === '') {
  22983.        val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
  22984.    }
  22985.    window.upcartSettings.upcartEditorSettings.notesTitle = val;
  22986.  
  22987.    val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22988.    if (val === '') {
  22989.        val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
  22990.    }
  22991.    window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
  22992.  
  22993.    val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22994.    if (val === '') {
  22995.        val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
  22996.    }
  22997.    window.upcartSettings.upcartEditorSettings.notesPlacement = val;
  22998.  
  22999.    val = b64DecodeUnicode("dHJ1ZQ==");
  23000.    if (val === '') {
  23001.        val = b64DecodeUnicode("ZmFsc2U=");
  23002.    }
  23003.    val = JSON.parse(val);
  23004.    window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
  23005.  
  23006.    val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzM5ODgzNjUyMjIxLmpwZz92PTE3Mzk4ODM2NjEiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  23007.    if (val === '') {
  23008.        val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
  23009.    }
  23010.    val = JSON.parse(val);
  23011.    window.upcartSettings.upcartEditorSettings.trustBadges = val;
  23012.  
  23013.    val = b64DecodeUnicode("dHJ1ZQ==");
  23014.    if (val === '') {
  23015.        val = b64DecodeUnicode("ZmFsc2U=");
  23016.    }
  23017.    val = JSON.parse(val);
  23018.    window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
  23019.  
  23020.    val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  23021.    if (val === '') {
  23022.        val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
  23023.    }
  23024.    window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
  23025.  
  23026.    val = b64DecodeUnicode("QXBwbHk=");
  23027.    if (val === '') {
  23028.        val = b64DecodeUnicode("QXBwbHk=");
  23029.    }
  23030.    window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
  23031.  
  23032.    val = b64DecodeUnicode("ZmFsc2U=");
  23033.    if (val === '') {
  23034.        val = b64DecodeUnicode("ZmFsc2U=");
  23035.    }
  23036.    val = JSON.parse(val);
  23037.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
  23038.  
  23039.    val = b64DecodeUnicode("ZmFsc2U=");
  23040.    if (val === '') {
  23041.        val = b64DecodeUnicode("ZmFsc2U=");
  23042.    }
  23043.    val = JSON.parse(val);
  23044.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
  23045.  
  23046.    val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  23047.    if (val === '') {
  23048.        val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
  23049.    }
  23050.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
  23051.  
  23052.    val = b64DecodeUnicode("ZmFsc2U=");
  23053.    if (val === '') {
  23054.        val = b64DecodeUnicode("ZmFsc2U=");
  23055.    }
  23056.    val = JSON.parse(val);
  23057.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
  23058.  
  23059.    val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  23060.    if (val === '') {
  23061.        val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
  23062.    }
  23063.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
  23064.  
  23065.    val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23066.    if (val === '') {
  23067.        val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
  23068.    }
  23069.    window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
  23070.  
  23071.    val = b64DecodeUnicode("dHJ1ZQ==");
  23072.    if (val === '') {
  23073.        val = b64DecodeUnicode("ZmFsc2U=");
  23074.    }
  23075.    val = JSON.parse(val);
  23076.    window.upcartSettings.upcartEditorSettings.expressPayModule = val;
  23077.  
  23078.    val = b64DecodeUnicode("W10=");
  23079.    if (val === '') {
  23080.        val = b64DecodeUnicode("W10=");
  23081.    }
  23082.    val = JSON.parse(val);
  23083.    window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
  23084.  
  23085.    val = b64DecodeUnicode("MQ==");
  23086.    if (val === '') {
  23087.        val = b64DecodeUnicode("MQ==");
  23088.    }
  23089.    window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
  23090.  
  23091.    val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23092.    if (val === '') {
  23093.        val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
  23094.    }
  23095.    val = JSON.parse(val);
  23096.    window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
  23097.  
  23098.    val = b64DecodeUnicode("dHJ1ZQ==");
  23099.    if (val === '') {
  23100.        val = b64DecodeUnicode("dHJ1ZQ==");
  23101.    }
  23102.    val = JSON.parse(val);
  23103.    window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
  23104.  
  23105.    val = b64DecodeUnicode("ZmFsc2U=");
  23106.    if (val === '') {
  23107.        val = b64DecodeUnicode("ZmFsc2U=");
  23108.    }
  23109.    val = JSON.parse(val);
  23110.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
  23111.  
  23112.    val = b64DecodeUnicode("IzQzYmUwYQ==");
  23113.    if (val === '') {
  23114.        val = b64DecodeUnicode("IzAwMDAwMA==");
  23115.    }
  23116.    window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
  23117.  
  23118.    val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23119.    if (val === '') {
  23120.        val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
  23121.    }
  23122.    window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
  23123.  
  23124.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23125.    if (val === '') {
  23126.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23127.    }
  23128.    window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
  23129.  
  23130.    val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
  23131.    if (val === '') {
  23132.        val = b64DecodeUnicode("c3F1YXJlQmFn");
  23133.    }
  23134.    window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
  23135.  
  23136.    val = b64DecodeUnicode("I2U0MjYyNg==");
  23137.    if (val === '') {
  23138.        val = b64DecodeUnicode("I2U0MjYyNg==");
  23139.    }
  23140.    window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
  23141.  
  23142.    val = b64DecodeUnicode("I2ZmZmZmZg==");
  23143.    if (val === '') {
  23144.        val = b64DecodeUnicode("I2ZmZmZmZg==");
  23145.    }
  23146.    window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
  23147.  
  23148.    val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
  23149.    if (val === '') {
  23150.        val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
  23151.    }
  23152.    window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
  23153.  
  23154. })();
  23155. </script>
  23156.  
  23157.  
  23158.  
  23159.  
  23160.  <div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
  23161.    
  23162.    <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
  23163.    <div class="upcart-additional-checkout-buttons-svgs">
  23164.  
  23165.      
  23166.  
  23167.      
  23168.  
  23169.      
  23170.  
  23171.      
  23172.  
  23173.      
  23174.  
  23175.      
  23176.    </div>
  23177.  </div>
  23178.  
  23179.  
  23180.  
  23181.  
  23182. <script>
  23183.  window.upcartPreloadedCart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"CAD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0};
  23184.  window.upcartMoneyFormat = "${{amount}}";
  23185.  window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
  23186.  window.upcartClientLocalizationCountry = {
  23187.    isoCode: 'CA',
  23188.    currency: 'CurrencyDrop',
  23189.    name: 'Canada'
  23190.  };
  23191.  window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
  23192. </script>
  23193.  
  23194.  
  23195. <script>
  23196.    window.upcart = window.upcart || {};
  23197.    window.upcart.customer = { isLoggedIn: false };
  23198.  </script><script>
  23199.  window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
  23200.    
  23201.  
  23202.    return line;
  23203.  });
  23204. </script>
  23205.  
  23206. <div id="upCart"></div>
  23207. <div id="upCartStickyButton"></div>
  23208.  
  23209. <style id="upCart-customCSS">
  23210.  *{}
  23211. </style>
  23212.  
  23213.  
  23214. </div></body>
  23215. </html>
  23216.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda